diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
deleted file mode 100644
index 5d6f7ee..0000000
--- a/.github/workflows/nightly.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-name: Nightly data update
-
-on:
-# schedule:
-# - cron: '0 4 * * *'
- workflow_dispatch:
-
-permissions:
- contents: write
- issues: write
- pages: write
- id-token: write
-
-concurrency:
- group: pages
- cancel-in-progress: true
-
-jobs:
- update-data:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: astral-sh/setup-uv@v7
- - run: uv python install 3.13
- - run: uv sync
- - run: uv run preprocess
- - run: uv run postprocess
- - name: Validate data quality
- id: validate
- continue-on-error: true
- run: uv run validate
- - name: Commit and push if changed
- if: steps.validate.outcome == 'success'
- run: |
- git diff --quiet data.json && exit 0
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
- git add data.json validation_report.json validation_report.csv
- git commit -m "chore: nightly data update"
- git push
- - name: Create issue on quality gate failure
- if: steps.validate.outcome == 'failure'
- run: |
- existing=$(gh issue list --label quality-gate --state open --limit 1 --json number -q '.[0].number')
- if [ -n "$existing" ]; then
- gh issue comment "$existing" --body "Quality gate failed again on $(date -u +%Y-%m-%d). See [workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})."
- else
- gh issue create \
- --title "Quality gate failure: nightly data update" \
- --label quality-gate \
- --body "The nightly data update failed the quality gate on $(date -u +%Y-%m-%d).
-
- **Action required:** Review the validation report and fix upstream data issues.
-
- See [workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) for details."
- fi
- env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- - name: Fail workflow on quality gate failure
- if: steps.validate.outcome == 'failure'
- run: exit 1
-
- deploy:
- needs: update-data
- runs-on: ubuntu-latest
- environment:
- name: github-pages
- url: ${{ steps.deployment.outputs.page_url }}
- steps:
- - uses: actions/checkout@v6
- - uses: actions/upload-pages-artifact@v4
- with:
- path: .
- - id: deployment
- uses: actions/deploy-pages@v4
diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml
new file mode 100644
index 0000000..955c886
--- /dev/null
+++ b/.github/workflows/preview.yml
@@ -0,0 +1,26 @@
+name: Deploy preview
+
+on:
+ push:
+ branches: [dev]
+
+jobs:
+ preview:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v6
+
+ - name: Create Cloudflare Pages project (if needed)
+ uses: cloudflare/wrangler-action@v3
+ with:
+ apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
+ accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
+ command: pages project create mxmap-ch-preview --production-branch=dev
+ continue-on-error: true
+
+ - name: Deploy to Cloudflare Pages
+ uses: cloudflare/wrangler-action@v3
+ with:
+ apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
+ accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
+ command: pages deploy . --project-name=mxmap-ch-preview
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..ab5f88f
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,32 @@
+name: Create Release
+
+on:
+ push:
+ branches: [main]
+
+permissions:
+ contents: write
+
+jobs:
+ release:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v6
+ with:
+ fetch-depth: 0
+
+ - name: Determine tag
+ id: tag
+ run: |
+ base="v$(date -u +%Y.%m.%d)"
+ existing=$(git tag -l "${base}*" | wc -l | tr -d ' ')
+ if [ "$existing" -eq 0 ]; then
+ echo "tag=${base}" >> "$GITHUB_OUTPUT"
+ else
+ echo "tag=${base}.${existing}" >> "$GITHUB_OUTPUT"
+ fi
+
+ - name: Create release
+ env:
+ GH_TOKEN: ${{ github.token }}
+ run: gh release create "${{ steps.tag.outputs.tag }}" --generate-notes
diff --git a/CLAUDE.md b/CLAUDE.md
new file mode 100644
index 0000000..c310f31
--- /dev/null
+++ b/CLAUDE.md
@@ -0,0 +1,35 @@
+# CLAUDE.md
+
+MXmap (mxmap.ch) — an automated system that classifies where ~2100 Swiss municipalities host their email by fingerprinting DNS records and network infrastructure. Results are displayed on an interactive Leaflet map.
+
+## Commands
+
+```bash
+# Setup
+uv sync --group dev
+
+# Run pipeline (two stages, in order)
+uv run resolve-domains # Stage 1: resolve municipality domains
+uv run classify-providers # Stage 2: classify email providers
+
+# Test
+uv run pytest --cov --cov-report=term-missing # 90% coverage threshold enforced
+uv run pytest tests/test_probes.py -k test_mx # single test
+uv run pytest tests/test_data_validation.py -v # data validation (requires JSON files)
+
+# Lint & format
+uv run ruff check src tests
+uv run ruff format src tests
+```
+
+### Data Files
+
+- `overrides.json` — manual classification corrections with reasons
+- `municipality_domains.json` — intermediate output from resolve stage
+- `data.json` — final classifications served to the frontend
+
+
+### What not to do
+
+- modify any data files directly without approval (especially `data.json` and `municipality_domains.json`, which are generated by the pipeline)
+- run the pipeline directly since it can time out and hides warnings
\ No newline at end of file
diff --git a/README.md b/README.md
index c438d63..26425a4 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
# MXmap — Email Providers of Swiss Municipalities
[](https://github.com/davidhuser/mxmap/actions/workflows/ci.yml)
-[](https://github.com/davidhuser/mxmap/actions/workflows/nightly.yml)
An interactive map showing where Swiss municipalities host their email — whether with US hyperscalers (Microsoft, Google, AWS) or Swiss providers or other solutions.
@@ -11,66 +10,57 @@ An interactive map showing where Swiss municipalities host their email — wheth
## How it works
-The data pipeline has three steps:
+The data pipeline has two stages:
-1. **Preprocess** -- Fetches all ~2100 Swiss municipalities from Wikidata, performs MX and SPF DNS lookups on their official domains, and classifies each municipality's email provider.
-2. **Postprocess** -- Applies manual overrides for edge cases, retries DNS for unresolved domains, checks SMTP banners of independent MX hosts for hidden providers, then scrapes websites of still-unclassified municipalities for email addresses.
-3. **Validate** -- Cross-validates MX and SPF records, assigns a confidence score (0-100) to each entry, and generates a validation report.
+1. **Resolve domains** — Fetches all ~2100 Swiss municipalities from Wikidata and the BFS (Swiss Statistics) API, applies manual overrides, scrapes municipal websites for email addresses, guesses domains from municipality names, and verifies candidates with MX lookups. Scores source agreement to pick the best domain. Outputs `municipality_domains.json`.
+
+2. **Classify providers** — For each resolved domain, looks up all MX hosts, pattern-matches them, then runs 10 concurrent probes (SPF, DKIM, DMARC, Autodiscover, CNAME chain, SMTP banner, Tenant, ASN, TXT verification, SPF IP). Aggregates weighted evidence, computes confidence scores (0–100). Outputs `data.json` (full) and `data.min.json` (minified for the frontend).
```mermaid
flowchart TD
- trigger["Nightly trigger"] --> wikidata
-
- subgraph pre ["1 · Preprocess"]
- wikidata[/"Wikidata SPARQL"/] --> fetch["Fetch ~2100 municipalities"]
- fetch --> domains["Extract domains + guess candidates"]
- domains --> dns["MX + SPF lookups (3 resolvers)"]
- dns --> spf_resolve["Resolve SPF includes & redirects"]
- spf_resolve --> cname["Follow CNAME chains"]
- cname --> asn["ASN lookups (Team Cymru)"]
- asn --> autodiscover["Autodiscover DNS (CNAME + SRV)"]
- autodiscover --> gateway["Detect gateways (SeppMail, Barracuda, Proofpoint, Sophos ...)"]
- gateway --> classify["Classify providers MX → CNAME → SPF → Autodiscover → SMTP"]
+ subgraph resolve ["1 · Resolve domains"]
+ bfs[/"BFS Statistics API"/] --> merge["Merge ~2100 municipalities"]
+ wikidata[/"Wikidata SPARQL"/] --> merge
+ overrides[/"overrides.json"/] --> per_muni
+ merge --> per_muni["Per municipality"]
+ per_muni --> scrape["Scrape website for email addresses"]
+ per_muni --> guess["Guess domains from name"]
+ scrape --> mx_verify["MX lookup to verify domains"]
+ guess --> mx_verify
+ mx_verify --> score["Score source agreement"]
end
- classify --> overrides
+ score --> domains[("municipality_domains.json")]
+ domains --> classify_in
- subgraph post ["2 · Postprocess"]
- overrides["Apply manual overrides (19 edge cases)"] --> retry["Retry DNS for unknowns"]
- retry --> smtp["SMTP banner check (EHLO on port 25)"]
- smtp --> scrape_urls["Probe municipal websites (/kontakt, /contact, /impressum …)"]
- scrape_urls --> extract["Extract emails + decrypt TYPO3 obfuscation"]
- extract --> scrape_dns["DNS lookup on email domains"]
- scrape_dns --> reclassify["Reclassify resolved entries"]
+ subgraph classify ["2 · Classify providers"]
+ classify_in["Per unique domain"] --> mx_lookup["MX lookup (all hosts)"]
+ mx_lookup --> mx_match["Pattern-match MX + detect gateway"]
+ mx_match --> concurrent["10 concurrent probes SPF · DKIM · DMARC Autodiscover · CNAME chain SMTP · Tenant · ASN TXT verification · SPF IP"]
+ concurrent --> aggregate["Aggregate weighted evidence"]
+ aggregate --> vote["Primary vote + confidence scoring"]
end
- reclassify --> data[("data.json")]
- data --> score
+ vote --> data[("data.json + data.min.json")]
+ data --> frontend["Leaflet map mxmap.ch"]
+```
- subgraph val ["3 · Validate"]
- score["Confidence scoring · 0–100"] --> gwarn["Flag potential unknown gateways"]
- gwarn --> gate{"Quality gate avg ≥ 70 · high-conf ≥ 80%"}
- end
+## Classification system
- gate -- "Pass" --> deploy["Commit & deploy to Pages"]
- gate -- "Fail" --> issue["Open GitHub issue"]
+see [`classifier.py`](src/mail_sovereignty/classifier.py) for the full implementation details, but in summary,
+we use a weighted evidence system where each probe contributes signals of varying strength towards different provider classifications.
- style trigger fill:#e8f4fd,stroke:#4a90d9,color:#1a5276
- style wikidata fill:#e8f4fd,stroke:#4a90d9,color:#1a5276
- style data fill:#d5f5e3,stroke:#27ae60,color:#1e8449
- style deploy fill:#d5f5e3,stroke:#27ae60,color:#1e8449
- style issue fill:#fadbd8,stroke:#e74c3c,color:#922b21
- style gate fill:#fdebd0,stroke:#e67e22,color:#935116
-```
## Quick start
```bash
uv sync
-uv run preprocess
-uv run postprocess
-uv run validate
+# Stage 1: resolve municipality domains
+uv run resolve-domains
+
+# Stage 2: classify email providers
+uv run classify-providers
# Serve the map locally
python -m http.server
@@ -81,20 +71,36 @@ python -m http.server
```bash
uv sync --group dev
-# Run tests with coverage
+# Run tests (90% coverage threshold enforced)
uv run pytest --cov --cov-report=term-missing
-# Lint the codebase
+# Lint & format
uv run ruff check src tests
uv run ruff format src tests
```
+
## Related work
* [hpr4379 :: Mapping Municipalities' Digital Dependencies](https://hackerpublicradio.org/eps/hpr4379/index.html)
-* if you know of other similar projects, please open an issue or submit a PR to add them here!
+* If you know of other similar projects, please open an issue or submit a PR to add them here!
+
+## Forks
+
+* DE https://b42labs.github.io/mxmap/
+* NL https://mxmap.nl/
+* NO https://kommune-epost-norge.netlify.app/
+* BE https://mxmap.be/
+* EU https://livenson.github.io/mxmap/
+* LV: https://securit.lv/mxmap
+* See also the forks of this repository
+
## Contributing
If you spot a misclassification, please open an issue with the BFS number and the correct provider.
-For municipalities where automated detection fails, corrections can be added to the `MANUAL_OVERRIDES` dict in `src/mail_sovereignty/postprocess.py`.
\ No newline at end of file
+For municipalities where automated detection fails, corrections can be added to [`overrides.json`](overrides.json).
+
+## Licence
+
+[MIT](LICENCE)
diff --git a/css/content.css b/css/content.css
new file mode 100644
index 0000000..5995531
--- /dev/null
+++ b/css/content.css
@@ -0,0 +1,25 @@
+/* content.css — content page styles (datenschutz, impressum) */
+body { color: #222; background: #fff; }
+
+main {
+ max-width: 720px; margin: 0 auto; padding: 32px 20px 48px;
+ line-height: 1.7; font-size: 15px;
+}
+h1 { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 24px; }
+h2 { font-size: 17px; font-weight: 600; color: #1a1a2e; margin-top: 28px; margin-bottom: 8px; }
+p { margin-bottom: 12px; }
+ul { margin: 0 0 12px 20px; }
+li { margin-bottom: 4px; }
+a { color: #2563eb; text-decoration: none; }
+a:hover { text-decoration: underline; }
+code {
+ font-family: ui-monospace, monospace; font-size: 13px;
+ background: #f3f4f6; padding: 1px 5px; border-radius: 3px;
+}
+
+footer {
+ max-width: 720px; margin: 0 auto; padding: 24px 20px;
+ border-top: 1px solid #e2e4e8; font-size: 13px; color: #888;
+}
+footer a { color: #888; }
+footer a:hover { color: #555; }
diff --git a/css/map.css b/css/map.css
new file mode 100644
index 0000000..2acb41e
--- /dev/null
+++ b/css/map.css
@@ -0,0 +1,129 @@
+/* map.css — map page layout, info bar, legend, popups */
+body { display: flex; flex-direction: column; height: 100dvh; overflow: hidden; }
+
+.toggle-info {
+ background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
+ color: #ccc; font-size: 13px; font-weight: 500; padding: 5px 14px; border-radius: 4px; cursor: pointer;
+ white-space: nowrap;
+}
+.toggle-info:hover { background: rgba(255,255,255,0.25); color: #fff; }
+
+#info-bar {
+ background: #f0f1f5; border-bottom: 1px solid #d8dae0; overflow: clip; flex-shrink: 0;
+ position: relative; z-index: 1;
+ max-height: 600px; padding: 16px 20px;
+ box-shadow: 0 2px 6px rgba(0,0,0,0.1);
+}
+#info-bar.collapsed { max-height: 0; padding-top: 0; padding-bottom: 0; }
+
+.info-grid {
+ display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
+ gap: 14px;
+}
+.info-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: #1a1a2e; }
+.info-card p { font-size: 13px; color: #444; line-height: 1.5; margin: 0; }
+.info-card a { color: #2563eb; text-decoration: none; }
+.info-card a:hover { text-decoration: underline; }
+#generated { font-size: 11px; color: #999; margin-top: 4px; }
+.info-title { display: none; font-size: 16px; font-weight: 600; color: #1a1a2e; margin-bottom: 12px; }
+
+.legend-toggle {
+ display: none; background: none; border: none; font-size: 13px;
+ font-weight: 600; cursor: pointer; padding: 0; color: #333;
+}
+.legend {
+ background: white; padding: 10px 14px; border-radius: 6px;
+ box-shadow: 0 2px 8px rgba(0,0,0,0.2); font-size: 13px; line-height: 1.8;
+}
+.legend i {
+ width: 14px; height: 14px; display: inline-block; margin-right: 6px;
+ border-radius: 3px; vertical-align: middle;
+}
+.legend-group { margin-top: 8px; }
+.legend-group:first-child { margin-top: 4px; }
+.legend-group-label {
+ font-size: 11px; color: #999; text-transform: uppercase;
+ letter-spacing: 0.3px; font-weight: 600; display: block; margin-bottom: 2px;
+}
+
+#map { flex: 1; position: relative; width: 100%; will-change: transform; }
+
+.info-popup { font-size: 13px; line-height: 1.6; }
+.info-popup strong { font-size: 14px; }
+.info-popup .provider-badge,
+.info-popup .tenant-badge {
+ display: inline-block; padding: 1px 8px; margin-left: 5px; border-radius: 3px;
+ color: #fff; font-size: 12px; font-weight: 600;
+}
+.popup-section { margin-top: 8px; border-top: 1px solid #e5e7eb; padding-top: 6px; }
+.popup-section-hint { font-weight: 400; opacity: 0.7; }
+
+.popup-toggle {
+ font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.5px;
+ font-weight: 600; cursor: pointer; user-select: none;
+ display: flex; align-items: center; gap: 6px; padding: 2px 0;
+}
+.popup-toggle::before {
+ content: '\25B8'; font-size: 10px; display: inline-block; width: 10px; flex-shrink: 0;
+ transition: transform 0.15s ease;
+}
+.popup-toggle-open::before { transform: rotate(90deg); }
+.popup-toggle:hover { color: #666; }
+.popup-section-body { padding-top: 4px; }
+.popup-meta { display: block; font-size: 11px; color: #888; margin-top: 2px; }
+.popup-signal-count {
+ display: inline-block; background: #f3f4f6; color: #6b7280;
+ font-size: 10px; font-weight: 600; padding: 0 5px; border-radius: 8px;
+ line-height: 1.6; text-transform: none; letter-spacing: 0;
+}
+.popup-empty { color: #999; font-size: 12px; }
+
+.dns-table { border-collapse: collapse; }
+.dns-table td { padding: 1px 8px 1px 0; vertical-align: baseline; font-size: 12px; white-space: nowrap; }
+.dns-table .dn { font-weight: 600; }
+.dns-table .host { color: #999; font-size: 11px; font-family: ui-monospace, monospace; max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
+.signal-list { display: flex; flex-direction: column; gap: 1px; }
+.signal-item {
+ display: flex; align-items: baseline; gap: 6px;
+ padding: 2px 0; font-size: 12px; line-height: 1.5; min-width: 0;
+}
+.signal-kind {
+ display: inline-block; background: #f3f4f6; color: #374151;
+ font-size: 10px; font-weight: 600; padding: 0 5px; border-radius: 3px;
+ line-height: 1.6; white-space: nowrap; flex-shrink: 0;
+}
+.signal-text {
+ color: #555; font-size: 11px; font-family: ui-monospace, monospace;
+ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
+}
+.signal-dup { color: #9ca3af; font-size: 10px; flex-shrink: 0; }
+
+.cat-badge {
+ display: inline-block; padding: 0 5px; border-radius: 3px;
+ font-size: 10px; font-weight: 600; line-height: 1.6;
+}
+.cat-badge.hyperscaler { background: #ffe8e6; color: #b33a30; }
+.cat-badge.swiss { background: #e0f5e9; color: #2d7a4f; }
+.cat-badge.foreign { background: #fef3c7; color: #b45309; }
+.cat-badge.unknown { background: #f3f4f6; color: #6b7280; }
+
+.color-toggle {
+ display: block; margin-top: 8px; padding: 3px 8px; border-radius: 3px;
+ font-size: 11px; font-weight: 500; cursor: pointer;
+ background: #f3f4f6; border: 1px solid #d1d5db; color: #374151;
+}
+.color-toggle:hover { background: #e5e7eb; }
+
+@media (max-width: 600px) {
+ .info-title { display: block; }
+ .info-grid { grid-template-columns: 1fr; }
+ .legend-toggle { display: block; }
+ .legend.legend-collapsed .legend-content { display: none; }
+ .legend.legend-collapsed { padding: 8px 12px; }
+ .popup-toggle { padding: 6px 0; min-height: 44px; }
+ .popup-section-body { overflow-x: hidden; }
+ .dns-table .dn { max-width: 72px; overflow: hidden; text-overflow: ellipsis; }
+ .dns-table .host { max-width: 100px; }
+ .signal-text { max-width: 140px; }
+ .signal-item { gap: 4px; padding-left: 4px; }
+}
diff --git a/css/shared.css b/css/shared.css
new file mode 100644
index 0000000..f45c42b
--- /dev/null
+++ b/css/shared.css
@@ -0,0 +1,61 @@
+/* shared.css — reset, header, navigation (all pages) */
+* { margin: 0; padding: 0; box-sizing: border-box; }
+body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
+
+#header {
+ background: #1a1a2e; color: #fff; height: 44px; padding: 0 16px;
+ display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
+ position: relative; z-index: 2000;
+}
+.header-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
+.brand { font-size: 17px; font-weight: 700; white-space: nowrap; margin: 0; }
+.brand a { color: #fff; text-decoration: none; }
+.beta-badge {
+ font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
+ background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
+ color: #f0c040; padding: 1px 6px; border-radius: 3px; vertical-align: middle;
+ cursor: default;
+}
+.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
+
+#nav { display: flex; align-items: center; gap: 8px; position: relative; margin-left: 6px; }
+
+.nav-primary { display: flex; align-items: center; gap: 6px; }
+.nav-primary .header-link {
+ font-size: 13px; padding: 5px 14px; border-radius: 4px; font-weight: 500;
+ border: 1px solid rgba(255,255,255,0.3); color: #ccc; text-decoration: none;
+}
+.nav-primary .header-link:hover {
+ background: rgba(255,255,255,0.15); color: #fff;
+}
+.nav-primary .header-link.active {
+ background: rgba(255,255,255,0.2); color: #fff; font-weight: 600;
+ border-color: rgba(255,255,255,0.5);
+}
+
+.nav-menu-toggle {
+ background: none; border: none; color: #a0a0b0; font-size: 18px;
+ cursor: pointer; padding: 2px 4px; line-height: 1;
+}
+.nav-menu-toggle:hover { color: #fff; }
+.nav-menu {
+ display: none; position: absolute; top: 34px; left: 0;
+ background: #1a1a2e; border-radius: 0 0 6px 6px;
+ box-shadow: 0 4px 12px rgba(0,0,0,0.3); min-width: 160px; z-index: 100;
+}
+.nav-menu.open { display: block; }
+.nav-menu .header-link {
+ display: block; padding: 10px 16px; font-size: 13px; color: #a0a0b0; text-decoration: none;
+ border-bottom: 1px solid rgba(255,255,255,0.08);
+}
+.nav-menu .header-link:hover { color: #fff; }
+.nav-menu .header-link.active { color: #fff; font-weight: 600; }
+.nav-menu .header-link:last-child { border-bottom: none; }
+.nav-menu .nav-menu-mobile { display: none; }
+
+@media (max-width: 600px) {
+ .beta-badge { display: none; }
+ .nav-primary .header-link { font-size: 11px; padding: 2px 8px; }
+ .nav-primary { display: none; }
+ .nav-menu .nav-menu-mobile { display: block; }
+}
diff --git a/data.json b/data.json
index 475006a..f677507 100644
--- a/data.json
+++ b/data.json
@@ -1,91 +1,338 @@
{
- "generated":"2026-03-11T14:59:02Z",
- "total":2115,
+ "generated":"2026-03-24T13:55:14Z",
+ "commit":"61309b3",
+ "total":2110,
"counts":{
- "aws":26,
- "google":4,
- "independent":604,
- "infomaniak":120,
- "microsoft":1108,
- "swiss-isp":251,
- "unknown":2
+ "aws":22,
+ "google":6,
+ "independent":707,
+ "infomaniak":138,
+ "microsoft":1237
},
"municipalities":{
"1":{
"bfs":"1",
"name":"Aeugst am Albis",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"aeugst-albis.ch",
"mx":[
"mailgw01.zii.ch",
"mailgw02.zii.ch"
],
"spf":"v=spf1 include:spf.zii.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.zii.ch -all v=spf1 ip4:195.65.253.130 ip4:83.144.243.194 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 3303,
- 33965
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aeugst-albis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aeugst-albis.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2":{
"bfs":"2",
"name":"Affoltern am Albis",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"stadtaffoltern.ch",
"mx":[
"stadtaffoltern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:rlx7.loginserver.ch a:mail.obt-services.ch mx:hin.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud include:spf.abacuscity.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:rlx7.loginserver.ch a:mail.obt-services.ch mx:hin.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud include:spf.abacuscity.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stadtaffoltern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.stadtaffoltern.ch CNAME → selector1-stadtaffoltern-ch._domainkey.affolterncloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.stadtaffoltern.ch CNAME → selector2-stadtaffoltern-ch._domainkey.affolterncloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stadtaffoltern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadtaffoltern.ch"
+ ],
+ "guess":[
+ "affoltern-am-albis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3":{
"bfs":"3",
- "name":"Bonstetten ZH",
- "canton":"",
+ "name":"Bonstetten",
+ "canton":"Kanton Zürich",
"domain":"bonstetten.ch",
"mx":[
"bonstetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bonstetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bonstetten.ch CNAME → selector1-bonstetten-ch._domainkey.bonstettencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bonstetten.ch CNAME → selector2-bonstetten-ch._domainkey.bonstettencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bonstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bonstetten.ch"
+ ],
+ "guess":[
+ "bonstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4":{
"bfs":"4",
"name":"Hausen am Albis",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"hausen.ch",
"mx":[
"hausen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com redirect=spf.mail.hostpoint.ch",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com redirect=spf.mail.hostpoint.ch v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hausen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hausen.ch CNAME → selector1-hausen-ch._domainkey.gemhausen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hausen.ch CNAME → selector2-hausen-ch._domainkey.gemhausen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hausen.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5":{
"bfs":"5",
"name":"Hedingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"hedingen.ch",
"mx":[
"mail.format-ag.ch",
@@ -94,112 +341,370 @@
"mailbackup.tankred.ch"
],
"spf":"v=spf1 a include:_spf.talus.ch include:spf.protection.outlook.com ip4:193.135.56.6 ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:spf.protection.outlook.com ip4:193.135.56.6 ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hedingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hedingen.ch"
+ ],
+ "guess":[
+ "hedingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6":{
"bfs":"6",
"name":"Kappel am Albis",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"kappel-am-albis.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kappel-am-albis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kappel-am-albis.ch"
+ ],
+ "guess":[
+ "kappel-am-albis.ch",
+ "kappelamalbis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"7":{
"bfs":"7",
"name":"Knonau",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"knonau.ch",
"mx":[
"knonau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.0/24 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.0/24 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX knonau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.knonau.ch CNAME → selector1-knonau-ch._domainkey.gmdknonau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.knonau.ch CNAME → selector2-knonau-ch._domainkey.gmdknonau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "knonau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "knonau.ch"
+ ],
+ "guess":[
+ "gemeinde-knonau.ch",
+ "knonau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"8":{
"bfs":"8",
"name":"Maschwanden",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"maschwanden.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:servers.mcsv.net -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:servers.mcsv.net -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "maschwanden.ch"
+ ],
+ "guess":[
+ "maschwanden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"9":{
"bfs":"9",
"name":"Mettmenstetten",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"mettmenstetten.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mettmenstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mettmenstetten.ch"
+ ],
+ "guess":[
+ "mettmenstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"10":{
"bfs":"10",
"name":"Obfelden",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"obfelden.ch",
"mx":[
"obfelden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.bestview.ch include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.bestview.ch include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:65.109.228.236 include:_spf.smtp.com ip4:212.55.205.0/25 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX obfelden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.obfelden.ch CNAME → selector1-obfelden-ch._domainkey.obfeldencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.obfelden.ch CNAME → selector2-obfelden-ch._domainkey.obfeldencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "obfelden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "obfelden.ch"
+ ],
+ "guess":[
+ "obfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"11":{
"bfs":"11",
"name":"Ottenbach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"ottenbach.ch",
"mx":[
"mailgw01.zii.ch",
@@ -207,19 +712,58 @@
],
"spf":"v=spf1 mx include:spf.zii.ch include:spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.zii.ch include:spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.253.130 ip4:83.144.243.194 include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 3303,
- 33965
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ottenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ottenbach.ch"
+ ],
+ "guess":[
+ "ottenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"12":{
"bfs":"12",
"name":"Rifferswil",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"rifferswil.ch",
"mx":[
"smtagb02.abxsec.com",
@@ -229,16 +773,29 @@
],
"spf":"v=spf1 include:spf.abxsec.com include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.abxsec.com include:_spf.i-web.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "rifferswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rifferswil.ch"
+ ],
+ "guess":[
+ "rifferswil.ch",
+ "rifferswil.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"13":{
"bfs":"13",
"name":"Stallikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"stallikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -246,19 +803,33 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"webmail.stallikon.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "stallikon.ch"
+ ],
+ "guess":[
+ "stallikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"14":{
"bfs":"14",
"name":"Wettswil am Albis",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wettswil.ch",
"mx":[
"mta1.abxsec.com",
@@ -266,16 +837,24 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:egeko.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:egeko.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wettswil.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"22":{
"bfs":"22",
- "name":"Benken",
- "canton":"",
+ "name":"Benken (ZH)",
+ "canton":"Kanton Zürich",
"domain":"benken-zh.ch",
"mx":[
"mta1.abxsec.com",
@@ -283,35 +862,75 @@
],
"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.6 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "benken-zh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "benken-zh.ch"
+ ],
+ "guess":[
+ "benken.ch",
+ "benken.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"23":{
"bfs":"23",
"name":"Berg am Irchel",
- "canton":"",
- "domain":"berg-am-irchel.ch",
+ "canton":"Kanton Zürich",
+ "domain":"bergamirchel.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bergamirchel.ch"
+ ],
+ "redirect":[
+ "bergamirchel.ch"
+ ],
+ "wikidata":[
+ "berg-am-irchel.ch"
+ ],
+ "guess":[
+ "berg-am-irchel.ch",
+ "bergamirchel.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"24":{
"bfs":"24",
"name":"Buch am Irchel",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"buchamirchel.ch",
"mx":[
"mta1.abxsec.com",
@@ -319,37 +938,87 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf1.egeko.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf1.egeko.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.abx-net.net"
- }
+ "sources_detail":{
+ "scrape":[
+ "buchamirchel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchamirchel.ch"
+ ],
+ "guess":[
+ "buchamirchel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"25":{
"bfs":"25",
"name":"Dachsen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"dachsen.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com include:spf.abxsec.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com include:spf.abxsec.com include:_spf.i-web.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dachsen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dachsen.ch"
+ ],
+ "guess":[
+ "dachsen.ch",
+ "dachsen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"26":{
"bfs":"26",
- "name":"Dorf ZH",
- "canton":"",
+ "name":"Dorf",
+ "canton":"Kanton Zürich",
"domain":"dorf.ch",
"mx":[
"mta1.abxsec.com",
@@ -357,86 +1026,319 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "dorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dorf.ch"
+ ],
+ "guess":[
+ "dorf.ch",
+ "dorf.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"27":{
"bfs":"27",
"name":"Feuerthalen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"feuerthalen.ch",
"mx":[
"feuerthalen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX feuerthalen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "feuerthalen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "feuerthalen.ch"
+ ],
+ "guess":[
+ "feuerthalen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"28":{
"bfs":"28",
"name":"Flaach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"flaach.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 mx include:_spf.rzobt.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:_spf.rzobt.ch include:spf.abxsec.com -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "flaach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flaach.ch"
+ ],
+ "guess":[
+ "flaach.ch",
+ "flaach.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"29":{
"bfs":"29",
"name":"Flurlingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"flurlingen.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spfmx.rizag.ch include:spf.abxsec.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spfmx.rizag.ch include:spf.abxsec.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "flurlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flurlingen.ch"
+ ],
+ "guess":[
+ "flurlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"31":{
"bfs":"31",
"name":"Henggart",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"henggart.ch",
"mx":[
"henggart-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:81.62.182.114 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.62.182.114 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX henggart-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "henggart.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "henggart.ch"
+ ],
+ "guess":[
+ "henggart.ch",
+ "henggart.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"33":{
"bfs":"33",
"name":"Kleinandelfingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"kleinandelfingen.ch",
"mx":[
"smtasg01.abxsec.com",
@@ -444,16 +1346,36 @@
],
"spf":"v=spf1 ip4:193.135.56.6 include:spf.abxsec.com include:egeko.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:spf.abxsec.com include:egeko.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "kleinandelfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kleinandelfingen.ch"
+ ],
+ "guess":[
+ "kleinandelfingen.ch",
+ "kleinandelfingen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"34":{
"bfs":"34",
"name":"Laufen-Uhwiesen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"laufen-uhwiesen.ch",
"mx":[
"mta1.abxsec.com",
@@ -461,53 +1383,131 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.abx-net.net"
- }
+ "sources_detail":{
+ "scrape":[
+ "laufen-uhwiesen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "laufen-uhwiesen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"35":{
"bfs":"35",
"name":"Marthalen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"marthalen.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com include:_spf.abxsec.com ~all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "marthalen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "marthalen.ch"
+ ],
+ "guess":[
+ "marthalen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"37":{
"bfs":"37",
"name":"Ossingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"ossingen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.mail.hostpoint.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.mail.hostpoint.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ossingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ossingen.ch"
+ ],
+ "guess":[
+ "ossingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"38":{
"bfs":"38",
"name":"Rheinau",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"rheinau.ch",
"mx":[
"mta1.abxsec.com",
@@ -515,108 +1515,358 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "rheinau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rheinau.ch"
+ ],
+ "guess":[
+ "rheinau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"39":{
"bfs":"39",
"name":"Thalheim an der Thur",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"thalheim.ch",
"mx":[
"thalheim-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:egeko.ch include:spf.protection.outlook.com -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX thalheim-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "thalheim.ch"
+ ],
+ "guess":[
+ "thalheimanderthur.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"40":{
"bfs":"40",
"name":"Trüllikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"truellikon.ch",
"mx":[
"truellikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX truellikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "truellikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "truellikon.ch"
+ ],
+ "guess":[
+ "truellikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"41":{
"bfs":"41",
"name":"Truttikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"truttikon.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "truttikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "truttikon.ch"
+ ],
+ "guess":[
+ "truttikon.ch",
+ "truttikon.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"43":{
"bfs":"43",
"name":"Volken",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"volken.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "volken.ch.incamail.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "volken.ch"
+ ],
+ "guess":[
+ "volken.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"51":{
"bfs":"51",
"name":"Bachenbülach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"bachenbuelach.ch",
"mx":[
"bachenbuelach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.rzobt.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.rzobt.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bachenbuelach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bachenbuelach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bachenbuelach.ch"
+ ],
+ "guess":[
+ "bachenbuelach.ch",
+ "bachenbuelach.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"52":{
"bfs":"52",
"name":"Bassersdorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"bassersdorf.ch",
"mx":[
"mta1.abxsec.com",
@@ -624,16 +1874,36 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com mx:hin.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com mx:hin.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "bassersdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bassersdorf.ch"
+ ],
+ "guess":[
+ "bassersdorf.ch",
+ "bassersdorf.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"53":{
"bfs":"53",
"name":"Bülach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"buelach.ch",
"mx":[
"buelach-ch.mail.protection.outlook.com",
@@ -641,38 +1911,184 @@
],
"spf":"v=spf1 a mx ip4:77.237.208.45 a:mail01.refline.ch a:mail02.refline.ch a:mail.friedaweb.de include:spf.rtp.ch include:spf.sendinblue.com include:spf.protection.outlook.com include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:77.237.208.45 a:mail01.refline.ch a:mail02.refline.ch a:mail.friedaweb.de include:spf.rtp.ch include:spf.sendinblue.com include:spf.protection.outlook.com include:_spf.abxsec.com -all v=spf1 ip4:185.17.70.38 ip6:2a04:503:0:1007::38 ~all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075,
- 15600
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.buelach.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buelach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15600 is Swiss ISP: Quickline"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buelach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buelach.ch"
+ ],
+ "guess":[
+ "blach.ch",
+ "buelach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"54":{
"bfs":"54",
"name":"Dietlikon",
- "canton":"",
- "domain":"dietlikon.ch",
- "mx":[
- "mx1.gib-solutions.ch"
- ],
- "spf":"v=spf1 ip4:212.25.8.128/26 ip4:193.135.56.6 include:spf.hosty.ch include:spf.mail.hostpoint.ch -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.25.8.128/26 ip4:193.135.56.6 include:spf.hosty.ch include:spf.mail.hostpoint.ch -all v=spf1 ip4:194.56.191.99 ip6:2001:1680:101:83a::5b ip4:5.148.177.114 ip4:92.42.187.12 ip4:178.209.42.218 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 8758
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "canton":"Kanton Zürich",
+ "domain":"dietlikon.org",
+ "mx":[
+ "dietlikon-org.mail.protection.outlook.com",
+ "mx1.dietlikon.org",
+ "mx2.dietlikon.org"
+ ],
+ "spf":"v=spf1 mx ip4:194.191.24.23 ip4:194.56.218.154 ip4:193.135.56.6 ip4:212.25.8.138 ip4:147.160.167.0/26 ip4:94.247.216.48/30 ip4:185.193.224.66/29 ip4:81.92.102.96/29 ip4:81.92.106.32/29 include:hin.ch include:spf.protection.outlook.com include:psm.knowbe4.com include:spf.abacuscity.ch include:dietlikon.atlassian.net -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dietlikon-org.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.dietlikon.org CNAME → selector1-dietlikon-org._domainkey.gemdietlikonorg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.dietlikon.org CNAME → selector2-dietlikon-org._domainkey.gemdietlikonorg.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"aws",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 14618 matches aws"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "dietlikon.org"
+ ]
+ },
+ "resolve_flags":[]
},
"55":{
"bfs":"55",
"name":"Eglisau",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"eglisau.ch",
"mx":[
"asgate01.spamcontrol.beltronic.ch",
@@ -682,16 +2098,32 @@
],
"spf":"v=spf1 a mx include:spf.hornetsecurity.com include:spf.crsend.com include:spf.protection.cyon.net include:servers.mcsv.net include:mail.kidesia.com include:_spf.sui-inter.net ip4:80.74.128.0/19 ip4:46.245.188.53 ip4:91.102.199.128/29 +mx:hin.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.hornetsecurity.com include:spf.crsend.com include:spf.protection.cyon.net include:servers.mcsv.net include:mail.kidesia.com include:_spf.sui-inter.net ip4:80.74.128.0/19 ip4:46.245.188.53 ip4:91.102.199.128/29 +mx:hin.ch ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 a mx ip4:185.46.57.237 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 24679,
- 25394
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eglisau.ch"
+ ],
+ "guess":[
+ "eglisau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"56":{
"bfs":"56",
"name":"Embrach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"embrach.ch",
"mx":[
"mta1.abxsec.com",
@@ -699,37 +2131,129 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch include:spf.iway.ch include:spf.protection.outlook.com ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 a:mail.ostendis.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch include:spf.iway.ch include:spf.protection.outlook.com ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 a:mail.ostendis.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"mail.embrach.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "embrach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "embrach.ch"
+ ],
+ "guess":[
+ "embrach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"57":{
"bfs":"57",
"name":"Freienstein-Teufen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"freienstein-teufen.ch",
"mx":[
"freiensteinteufen-ch02i.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.abxsec.com include:egeko.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.abxsec.com include:egeko.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX freiensteinteufen-ch02i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "freienstein-teufen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "freienstein-teufen.ch"
+ ],
+ "guess":[
+ "freienstein-teufen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"58":{
"bfs":"58",
"name":"Glattfelden",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"glattfelden.ch",
"mx":[
"mail100.rizag.ch",
@@ -737,222 +2261,1016 @@
],
"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:194.6.176.74 include:spf.abacuscity.ch include:_spf.abxsec.com mx:hin.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:194.6.176.74 include:spf.abacuscity.ch include:_spf.abxsec.com mx:hin.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "glattfelden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "glattfelden.ch"
+ ],
+ "guess":[
+ "glattfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"59":{
"bfs":"59",
- "name":"Hochfelden ZH",
- "canton":"",
+ "name":"Hochfelden",
+ "canton":"Kanton Zürich",
"domain":"hochfelden.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.sui-inter.net include:_spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.sui-inter.net include:_spf.abxsec.com -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "hochfelden.ch"
+ ],
+ "guess":[
+ "hochfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"60":{
"bfs":"60",
- "name":"Höri ZH",
- "canton":"",
+ "name":"Höri",
+ "canton":"Kanton Zürich",
"domain":"hoeri.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com include:spf1.egeko.ch ip4:193.135.56.6 ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com include:spf1.egeko.ch ip4:193.135.56.6 ~all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hoeri.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hoeri.ch"
+ ],
+ "guess":[
+ "hoeri.ch",
+ "hoeri.zh.ch",
+ "hri.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"61":{
"bfs":"61",
"name":"Hüntwangen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"huentwangen.ch",
"mx":[
"huentwangen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX huentwangen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "huentwangen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "huentwangen.ch"
+ ],
+ "guess":[
+ "huentwangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"62":{
"bfs":"62",
"name":"Kloten",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"kloten.ch",
"mx":[
"kloten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +mx +a a:mail.kloten.ch a:mail3.kloten.ch a:mail.i-web.ch include:spf.umantis.com a:mx3.hin.ch a:mx4.hin.ch include:spf.spotwerbung.ch include:spf.protection.outlook.com +ip4:194.209.49.195 +ip4:212.80.96.0/21 +ip4:217.71.85.32/32 +ip4:194.230.101.242/32 +ip6:2a01:7480:1:100::/64 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +mx +a a:mail.kloten.ch a:mail3.kloten.ch a:mail.i-web.ch include:spf.umantis.com a:mx3.hin.ch a:mx4.hin.ch include:spf.spotwerbung.ch include:spf.protection.outlook.com +ip4:194.209.49.195 +ip4:212.80.96.0/21 +ip4:217.71.85.32/32 +ip4:194.230.101.242/32 +ip6:2a01:7480:1:100::/64 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:213.133.107.213 ip6:2a01:4f8:d0a:2295::2 ip4:213.133.121.85 ip6:2a01:4f8:d0a:1184::2 ip4:78.46.125.17 ip6:2a01:4f8:d0a:409b::2 ip4:78.46.148.201 ip6:2a01:4f8:d0a:50f7::2 ip4:78.46.196.81 ip6:2a01:4f8:d0a:6134::2 ip4:78.46.4.123 ip6:2a01:4f8:d0a:216c::2 ip4:78.47.106.26 ip6:2a01:4f8:d0a:639e::2 ip4:78.46.3.225 ip6:2a01:4f8:d0a:318f::2 ip4:159.69.104.114 ip6:2a01:4f8:c0c:a6d::2 ip4:85.10.212.78 ip6:2a01:4f8:d0a:241e::2 ip4:78.46.166.37 ip6:2a01:4f8:d0a:61c2::2 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kloten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kloten.ch CNAME → selector1-kloten-ch._domainkey.klotench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kloten.ch CNAME → selector2-kloten-ch._domainkey.klotench.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kloten.ch",
+ "kompol.zh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kloten.ch"
+ ],
+ "guess":[
+ "kloten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"63":{
"bfs":"63",
"name":"Lufingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"lufingen.ch",
"mx":[
"lufingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lufingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lufingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lufingen.ch"
+ ],
+ "guess":[
+ "lufingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"64":{
"bfs":"64",
"name":"Nürensdorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"nuerensdorf.ch",
"mx":[
"nuerensdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nuerensdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "nuerensdorf.ch"
+ ],
+ "guess":[
+ "nuerensdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"65":{
"bfs":"65",
"name":"Oberembrach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"oberembrach.ch",
"mx":[
"oberembrach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all ",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberembrach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberembrach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberembrach.ch"
+ ],
+ "guess":[
+ "oberembrach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"66":{
"bfs":"66",
"name":"Opfikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"opfikon.ch",
"mx":[
"opfikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx:hin.ch include:_spf.i-web.ch ip4:217.11.32.170 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.protection.outlook.com ip4:193.5.117.40/29 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx:hin.ch include:_spf.i-web.ch ip4:217.11.32.170 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.protection.outlook.com ip4:193.5.117.40/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX opfikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.opfikon.ch CNAME → selector1-opfikon-ch._domainkey.opfikonch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.opfikon.ch CNAME → selector2-opfikon-ch._domainkey.opfikonch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "opfikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "opfikon.ch"
+ ],
+ "guess":[
+ "opfikon.ch",
+ "opfikon.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"67":{
"bfs":"67",
"name":"Rafz",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"rafz.ch",
"mx":[
"rafz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:smtp.trainingplus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:smtp.trainingplus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rafz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rafz.ch CNAME → selector1-rafz-ch._domainkey.rafzcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rafz.ch CNAME → selector2-rafz-ch._domainkey.rafzcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rafz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rafz.ch"
+ ],
+ "guess":[
+ "rafz.ch",
+ "rafz.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"68":{
"bfs":"68",
"name":"Rorbas",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"rorbas.ch",
"mx":[
"rorbas-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:_spf.sui-inter.net ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:_spf.sui-inter.net ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rorbas-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rorbas.ch CNAME → selector1-rorbas-ch._domainkey.gemeinderorbasch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rorbas.ch CNAME → selector2-rorbas-ch._domainkey.gemeinderorbasch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rorbas.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rorbas.ch"
+ ],
+ "guess":[
+ "rorbas.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"69":{
"bfs":"69",
"name":"Wallisellen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wallisellen.ch",
"mx":[
"wallisellen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.protection.outlook.com include:_spf.psm.knowbe4.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch include:spf.protection.outlook.com include:_spf.psm.knowbe4.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wallisellen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wallisellen.ch CNAME → selector1-wallisellen-ch._domainkey.gemeindewallisellen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wallisellen.ch CNAME → selector2-wallisellen-ch._domainkey.gemeindewallisellen.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wallisellen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wallisellen.ch"
+ ],
+ "guess":[
+ "stadt-wallisellen.ch",
+ "wallisellen.ch",
+ "wallisellen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"70":{
"bfs":"70",
"name":"Wasterkingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wasterkingen.ch",
"mx":[
"wasterkingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:egeko.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wasterkingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wasterkingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wasterkingen.ch"
+ ],
+ "guess":[
+ "wasterkingen.ch",
+ "wasterkingen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"71":{
"bfs":"71",
- "name":"Wil ZH",
- "canton":"",
+ "name":"Wil (ZH)",
+ "canton":"Kanton Zürich",
"domain":"wil-zh.ch",
"mx":[
"mta1.abxsec.com",
@@ -960,19 +3278,60 @@
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wil-zh.ch CNAME → selector1-wilzh-ch0i._domainkey.gmdwilzh.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wil-zh.ch CNAME → selector2-wilzh-ch0i._domainkey.gmdwilzh.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "wil-zh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wil-zh.ch"
+ ],
+ "guess":[
+ "stadt-wil.ch",
+ "wil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"72":{
"bfs":"72",
"name":"Winkel",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"winkel.ch",
"mx":[
"mta1.abxsec.com",
@@ -980,130 +3339,457 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"webmail.abx-net.net"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "winkel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "winkel.ch"
+ ],
+ "guess":[
+ "winkel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"81":{
"bfs":"81",
"name":"Bachs",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"bachs.ch",
"mx":[
"bachs-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bachs-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bachs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bachs.ch"
+ ],
+ "guess":[
+ "bachs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"82":{
"bfs":"82",
"name":"Boppelsen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"boppelsen.ch",
"mx":[
"boppelsen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boppelsen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boppelsen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boppelsen.ch"
+ ],
+ "guess":[
+ "boppelsen.ch",
+ "boppelsen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"83":{
"bfs":"83",
- "name":"Buchs ZH",
- "canton":"",
+ "name":"Buchs (ZH)",
+ "canton":"Kanton Zürich",
"domain":"buchs-zh.ch",
"mx":[
"buchszh-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com ip4:212.80.96.0/21 a:mail.obt-services.ch ip6:2a01:7480:1:100::/64 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com ip4:212.80.96.0/21 a:mail.obt-services.ch ip6:2a01:7480:1:100::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buchszh-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buchs-zh.ch CNAME → selector1-buchszh-ch01c._domainkey.buchscloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buchs-zh.ch CNAME → selector2-buchszh-ch01c._domainkey.buchscloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchs-zh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchs-zh.ch"
+ ],
+ "guess":[
+ "buchs.ch",
+ "buchs.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"84":{
"bfs":"84",
"name":"Dällikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"daellikon.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.rzobt.ch",
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "daellikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "daellikon.ch"
+ ],
+ "guess":[
+ "daellikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"85":{
"bfs":"85",
"name":"Dänikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"daenikon.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch a:communication.backslash.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch a:communication.backslash.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "daenikon.ch"
+ ],
+ "guess":[
+ "daenikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"86":{
"bfs":"86",
"name":"Dielsdorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"dielsdorf.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch a:smtazh01.abxsec.com a:mail.i-web.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:spf.protection.outlook.com mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch a:smtazh01.abxsec.com a:mail.i-web.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:spf.protection.outlook.com mx -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dielsdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dielsdorf.ch"
+ ],
+ "guess":[
+ "dielsdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"87":{
"bfs":"87",
"name":"Hüttikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"huettikon.ch",
"mx":[
"smtagb02.abxsec.com",
@@ -1113,263 +3799,1029 @@
],
"spf":"v=spf1 a mx include:spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "huettikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "huettikon.ch"
+ ],
+ "guess":[
+ "huettikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"88":{
"bfs":"88",
"name":"Neerach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"neerach.ch",
"mx":[
"neerach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:egeko.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:egeko.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neerach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.neerach.ch CNAME → selector1-neerach-ch._domainkey.neerach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.neerach.ch CNAME → selector2-neerach-ch._domainkey.neerach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neerach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neerach.ch"
+ ],
+ "guess":[
+ "neerach.ch",
+ "neerach.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"89":{
"bfs":"89",
- "name":"Niederglatt ZH",
- "canton":"",
- "domain":"niederglatt.zh.ch",
+ "name":"Niederglatt",
+ "canton":"Kanton Zürich",
+ "domain":"niederglatt-zh.ch",
"mx":[
- "mtain01.mailsecurity.swisscom.com",
- "mtain02.mailsecurity.swisscom.com"
+ "mta1.abxsec.com",
+ "mta2.abxsec.com"
],
- "spf":"",
- "provider":"independent"
+ "spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.i-web.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.niederglatt-zh.ch CNAME → selector1-niederglattzh-ch02i._domainkey.gmdniederglatt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.niederglatt-zh.ch CNAME → selector2-niederglattzh-ch02i._domainkey.gmdniederglatt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "gateway":"abxsec",
+ "sources_detail":{
+ "override":[
+ "niederglatt-zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"90":{
"bfs":"90",
"name":"Niederhasli",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"niederhasli.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx ip4:81.62.150.186 include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx ip4:81.62.150.186 include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.niederhasli.ch CNAME → selector1-niederhasli-ch._domainkey.mediothekniederhasli.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.niederhasli.ch CNAME → selector2-niederhasli-ch._domainkey.mediothekniederhasli.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederhasli.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederhasli.ch"
+ ],
+ "guess":[
+ "niederhasli.ch",
+ "niederhasli.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"91":{
"bfs":"91",
"name":"Niederweningen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"niederweningen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 ip4:193.135.56.6 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederweningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederweningen.ch"
+ ],
+ "guess":[
+ "niederweningen.ch",
+ "niederweningen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"92":{
"bfs":"92",
- "name":"Oberglatt ZH",
- "canton":"",
+ "name":"Oberglatt",
+ "canton":"Kanton Zürich",
"domain":"oberglatt.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:_spf.rzobt.ch include:spf1.egeko.ch ip4:52.157.149.216 ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.abxsec.com include:spf.bestview.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:_spf.rzobt.ch include:spf1.egeko.ch ip4:52.157.149.216 ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.abxsec.com include:spf.bestview.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:65.109.228.236 include:_spf.smtp.com ip4:212.55.205.0/25 ~all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberglatt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberglatt.ch"
+ ],
+ "guess":[
+ "oberglatt.ch",
+ "oberglatt.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"93":{
"bfs":"93",
"name":"Oberweningen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"oberweningen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberweningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberweningen.ch"
+ ],
+ "guess":[
+ "oberweningen.ch",
+ "oberweningen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"94":{
"bfs":"94",
"name":"Otelfingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"otelfingen.ch",
"mx":[
"otelfingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 include:_spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX otelfingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "otelfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "otelfingen.ch"
+ ],
+ "guess":[
+ "otelfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"95":{
"bfs":"95",
"name":"Regensberg",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"regensberg.ch",
"mx":[
"regensberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX regensberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "regensberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "regensberg.ch"
+ ],
+ "guess":[
+ "regensberg.ch",
+ "regensberg.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"96":{
"bfs":"96",
"name":"Regensdorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"regensdorf.ch",
"mx":[
"regensdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:81.62.149.138/30 ip4:62.2.156.178/29 include:spf.protection.outlook.com include:_partner.regensdorf.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:81.62.149.138/30 ip4:62.2.156.178/29 include:spf.protection.outlook.com include:_partner.regensdorf.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:mail01.refline.ch a:mail02.refline.ch include:_spf.talus.ch include:_spf.i-web.ch include:spf.flowmailer.net include:mail.zendesk.com include:de1-emailsignatures-cloud.codetwo.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.136.64.128/27 ip4:185.136.65.128/27 ~all v=spf1 ip4:103.151.192.0/23 ip4:185.12.80.0/22 ip4:188.172.128.0/20 ip4:192.161.144.0/20 ip4:216.198.0.0/18 ~all v=spf1 redirect=spf.emailsignatures365.com v=spf1 ip4:20.92.116.22 ip4:40.86.225.121 ip4:13.74.137.176 ip4:40.113.3.253 ip4:20.49.202.3 ip4:52.240.209.173 ip4:13.93.42.39 ip4:104.42.172.251 ip4:20.79.220.33 ip4:20.42.205.31 ip4:52.138.216.130 ip4:20.98.2.159 ip4:20.93.157.195 ip4:40.86.217.129 ip4:23.100.56.64 ip4:20.58.22.103 ip4:23.100.43.194 ip4:20.79.222.204 ip4:13.77.59.28 ip4:40.114.221.220 ip4:20.97.70.227 ip4:40.69.19.60 ip4:52.170.22.60 ip4:13.94.95.171 ip4:51.11.109.172 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX regensdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.regensdorf.ch CNAME → selector1-regensdorf-ch._domainkey.regensdorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.regensdorf.ch CNAME → selector2-regensdorf-ch._domainkey.regensdorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "regensdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "regensdorf.ch"
+ ],
+ "guess":[
+ "regensdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"97":{
"bfs":"97",
"name":"Rümlang",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"ruemlang.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com a:mail.i-web.ch a:vimdzmsp-nwas02.bluewin.ch mx include:spf1.egeko.ch include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com a:mail.i-web.ch a:vimdzmsp-nwas02.bluewin.ch mx include:spf1.egeko.ch include:spf.abxsec.com -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruemlang.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruemlang.ch"
+ ],
+ "guess":[
+ "ruemlang.ch",
+ "ruemlang.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"98":{
"bfs":"98",
"name":"Schleinikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"schleinikon.ch",
"mx":[
"schleinikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schleinikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schleinikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schleinikon.ch"
+ ],
+ "guess":[
+ "schleinikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"99":{
"bfs":"99",
"name":"Schöfflisdorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"schoefflisdorf.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 ip4:217.196.176.0/20 a mx -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoefflisdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoefflisdorf.ch"
+ ],
+ "guess":[
+ "schoefflisdorf.ch",
+ "schoefflisdorf.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"100":{
"bfs":"100",
- "name":"Stadel bei Niederglatt",
- "canton":"",
+ "name":"Stadel",
+ "canton":"Kanton Zürich",
"domain":"stadel.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com mx -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stadel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadel.ch"
+ ],
+ "guess":[
+ "stadel.ch",
+ "stadel.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"101":{
"bfs":"101",
"name":"Steinmaur",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"steinmaur.ch",
"mx":[
- "smtagb02.abxsec.com",
- "smtasg01.abxsec.com",
- "smtazh01.abxsec.com",
- "smtazh02.abxsec.com"
+ "steinmaur-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX steinmaur-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.steinmaur.ch CNAME → selector1-steinmaur-ch._domainkey.steinmaurch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.steinmaur.ch CNAME → selector2-steinmaur-ch._domainkey.steinmaurch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "steinmaur.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "steinmaur.ch"
+ ],
+ "guess":[
+ "steinmaur.ch",
+ "steinmaur.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"102":{
"bfs":"102",
"name":"Weiach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"weiach.ch",
"mx":[
"smtagb02.abxsec.com",
@@ -1379,31 +4831,75 @@
],
"spf":"v=spf1 mx include:_spf.mailsecurity.swisscom.com ip4:193.135.56.0/24 include:spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.mailsecurity.swisscom.com ip4:193.135.56.0/24 include:spf.abxsec.com ~all v=spf1 ip4:193.135.100.0/27 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "weiach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "weiach.ch"
+ ],
+ "guess":[
+ "weiach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"111":{
"bfs":"111",
"name":"Bäretswil",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"baeretswil.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch a:mail.i-web.ch/24 a:smtazh01.abxsec.com mx -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch a:mail.i-web.ch/24 a:smtazh01.abxsec.com mx -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "baeretswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baeretswil.ch"
+ ],
+ "guess":[
+ "baeretswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"112":{
"bfs":"112",
"name":"Bubikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"bubikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -1411,172 +4907,645 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com include:spf.bestview.ch ip4:46.231.200.132 mx ip4:94.126.21.108 include:_spf.i-web.ch include:spf.vtx.ch include:2wire.ch ip4:46.140.146.21 ip4:46.140.146.20 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com include:spf.bestview.ch ip4:46.231.200.132 mx ip4:94.126.21.108 include:_spf.i-web.ch include:spf.vtx.ch include:2wire.ch ip4:46.140.146.21 ip4:46.140.146.20 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:65.109.228.236 include:_spf.smtp.com ip4:212.55.205.0/25 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:194.38.175.0/24 ip4:194.38.166.0/27 ip4:212.40.2.0/25 ip4:212.109.85.192/27 ip4:212.147.10.0/26 ip4:212.147.62.64/26 ip4:212.147.62.128/27 ip4:212.147.99.24/29 ip4:194.148.30.0/24 ip4:195.15.4.240/28 include:_spf-24x.romandie.hosting -all v=spf1 ip4:62.65.128.0/24 ip4:62.65.133.0/24 ip4:62.65.159.0/27 ip4:80.238.248.0/27 ip4:80.238.249.0/27 include:_spf.peaknetworks.net -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all v=spf1 a:catcher-241.romandie.hosting a:catcher-242.romandie.hosting ~all v=spf1 ip4:82.197.187.80/28 ip4:83.175.83.96/28 ip4:83.175.119.80/28 ip4:83.175.126.192/27 ip4:185.49.222.32/28 ip4:185.49.222.192/27 ip4:88.198.40.58/32 ip4:46.4.96.174/32 ip4:185.71.139.0/24 ip4:146.185.92.0/25 ip6:2001:1620:2121::/48 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bubikon.ch CNAME → selector1-bubikon-ch._domainkey.gmdbubikon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bubikon.ch CNAME → selector2-bubikon-ch._domainkey.gmdbubikon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "bubikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bubikon.ch"
+ ],
+ "guess":[
+ "bubikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"113":{
"bfs":"113",
"name":"Dürnten",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"duernten.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com a:communication.backslash.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com a:communication.backslash.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rizag.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "duernten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duernten.ch"
+ ],
+ "guess":[
+ "duernten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"114":{
"bfs":"114",
"name":"Fischenthal",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"fischenthal.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch a:smtazh01.abxsec.com ip4:193.135.56.6 include:spf.abxsec.com include:spf1.egeko.ch include:spf.protection.outlook.com mx -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch a:smtazh01.abxsec.com ip4:193.135.56.6 include:spf.abxsec.com include:spf1.egeko.ch include:spf.protection.outlook.com mx -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fischenthal.ch"
+ ],
+ "guess":[
+ "fischenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"115":{
"bfs":"115",
- "name":"Gossau",
- "canton":"",
+ "name":"Gossau (ZH)",
+ "canton":"Kanton Zürich",
"domain":"gossau-zh.ch",
"mx":[
"gossauzh-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.243.171.69 ip4:164.128.180.173 ip4:164.128.189.226 ip4:46.14.205.122 include:spf.mail.webland.ch include:spf.bestview.ch include:spf.exclaimer.net include:spf.protection.outlook.com include:spf.privasphere.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.243.171.69 ip4:164.128.180.173 ip4:164.128.189.226 ip4:46.14.205.122 include:spf.mail.webland.ch include:spf.bestview.ch include:spf.exclaimer.net include:spf.protection.outlook.com include:spf.privasphere.com -all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all v=spf1 ip4:65.109.228.236 include:_spf.smtp.com ip4:212.55.205.0/25 ~all v=spf1 ip4:104.40.229.156 ip4:52.169.0.179 ip4:191.237.4.149 ip4:104.209.35.28 ip4:104.210.80.79 ip4:13.70.157.244 ip4:51.140.37.132 ip4:51.141.5.228 ip4:52.233.37.155 ip4:52.242.32.10 ip4:20.233.10.24 ip4:20.74.156.16 ip4:20.52.124.58 ip4:20.113.192.118 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gossauzh-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gossau-zh.ch CNAME → selector1-gossauzh-ch01e._domainkey.gossauzuerich.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gossau-zh.ch CNAME → selector2-gossauzh-ch01e._domainkey.gossauzuerich.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gossau-zh.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"116":{
"bfs":"116",
"name":"Grüningen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"grueningen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grueningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grueningen.ch"
+ ],
+ "guess":[
+ "grueningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"117":{
"bfs":"117",
"name":"Hinwil",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"hinwil.ch",
"mx":[
"hinwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:spf.abacuscity.ch include:mailsecurity.swisscom.com include:hsa.obtcloud.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:spf.abacuscity.ch include:mailsecurity.swisscom.com include:hsa.obtcloud.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 include:_spf.mailsecurity.swisscom.com ~all v=spf1 ip4:185.156.11.50/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 ip4:185.156.11.32/32 -all v=spf1 ip4:193.135.100.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hinwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hinwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hinwil.ch"
+ ],
+ "guess":[
+ "gemeinde-hinwil.ch",
+ "hinwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"118":{
"bfs":"118",
- "name":"Rüti",
- "canton":"",
+ "name":"Rüti (ZH)",
+ "canton":"Kanton Zürich",
"domain":"rueti.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:spf.abxsec.com a:cms2-com.backslash.ch a:mail01.refline.ch a:mail02.refline.ch ip4:193.135.56.6 ip4:128.127.50.146 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:spf.abxsec.com a:cms2-com.backslash.ch a:mail01.refline.ch a:mail02.refline.ch ip4:193.135.56.6 ip4:128.127.50.146 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rueti.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rueti.ch"
+ ],
+ "guess":[
+ "r-ti.ch",
+ "rti.ch",
+ "rueti.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"119":{
"bfs":"119",
"name":"Seegräben",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"seegraeben.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seegraeben.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seegraeben.ch"
+ ],
+ "guess":[
+ "seegraeben.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"120":{
"bfs":"120",
- "name":"Wald",
- "canton":"",
- "domain":"wald.zh.ch",
- "mx":[
- "mail1.rzobt.ch",
- "mail2.rzobt.ch"
- ],
- "spf":"",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ]
+ "name":"Wald (ZH)",
+ "canton":"Kanton Zürich",
+ "domain":"wald-zh.ch",
+ "mx":[
+ "waldzh-ch01b.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.outlook.com a:mail01.refline.ch a:mail02.refline.ch a:svce-mail.softec.ch include:spf.entex.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX waldzh-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wald-zh.ch CNAME → selector1-waldzh-ch01b._domainkey.waldzhcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wald-zh.ch CNAME → selector2-waldzh-ch01b._domainkey.waldzhcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "wald-zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"121":{
"bfs":"121",
- "name":"Wetzikon",
- "canton":"",
+ "name":"Wetzikon (ZH)",
+ "canton":"Kanton Zürich",
"domain":"wetzikon.ch",
"mx":[
"wetzikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com mx:hin.ch include:_spf.abxsec.com a:mail.i-web.ch include:_spf.talus.ch include:spf3.wetzikon.ch include:spf4.wetzikon.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com mx:hin.ch include:_spf.abxsec.com a:mail.i-web.ch include:_spf.talus.ch include:spf3.wetzikon.ch include:spf4.wetzikon.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:212.71.124.231 ip4:212.71.124.232 ip4:91.212.95.0/24 ip4:5.230.138.43 ip4:193.246.95.100/31 ip4:193.246.95.120/31 -all v=spf1 ip4:95.128.37.0/26 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wetzikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wetzikon.ch"
+ ],
+ "guess":[
+ "stadt-wetzikon.ch",
+ "wetzikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"131":{
"bfs":"131",
@@ -1588,17 +5557,99 @@
],
"spf":"v=spf1 mx ip4:46.140.221.34/27 ip4:146.4.127.224/27 Include:spf.protection.outlook.com include:_partner.adliswil.ch ip4:128.127.66.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:46.140.221.34/27 ip4:146.4.127.224/27 Include:spf.protection.outlook.com include:_partner.adliswil.ch ip4:128.127.66.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:mail.obt-services.ch include:spf.abacuscity.ch include:_spf.i-web.ch include:_spf.rexx-systems.com include:_spf.psm.knowbe4.com include:_spf.rzobt.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 a:mx01.rexx-systems.de ip6:2001:67c:2050::/48 ip4:92.51.187.64/27 ip4:83.169.51.224/27 ip4:80.237.187.32/28 ip4:91.250.74.128/27 ip4:87.230.74.128/28 ip4:91.250.95.64/26 ip4:85.25.89.0/24 ip4:195.10.208.0/26 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX adliswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.adliswil.ch CNAME → selector1-adliswil-ch._domainkey.adliswilcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.adliswil.ch CNAME → selector2-adliswil-ch._domainkey.adliswilcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "adliswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "adliswil.ch"
+ ],
+ "guess":[
+ "adliswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"135":{
"bfs":"135",
- "name":"Kilchberg",
+ "name":"Kilchberg (ZH)",
"canton":"",
"domain":"kilchberg.ch",
"mx":[
@@ -1607,31 +5658,65 @@
],
"spf":"v=spf1 mx a:mx1.naveum.services a:mx2.naveum.services a:mail01.axc.biz ip4:193.135.56.6 include:spf.abacuscity.ch include:spf.axc-cms.biz -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mx1.naveum.services a:mx2.naveum.services a:mail01.axc.biz ip4:193.135.56.6 include:spf.abacuscity.ch include:spf.axc-cms.biz -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:185.169.85.128/28 ip6:2a04:503:0:1028::/64 -all",
- "mx_asns":[
- 205737
- ],
- "autodiscover":{
- "autodiscover_cname":"mail01.axc.biz"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kilchberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kilchberg.ch"
+ ],
+ "guess":[
+ "kilchberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"136":{
"bfs":"136",
"name":"Langnau am Albis",
"canton":"",
- "domain":"langnau.ch",
+ "domain":"solicom.ch",
"mx":[
- "langnau-ch.mail.protection.outlook.com"
+ "mail.solicom.ch"
],
- "spf":"v=spf1 mx include:spf.protection.outlook.com ~all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "langnau.ch",
+ "solicom.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"137":{
"bfs":"137",
@@ -1644,14 +5729,53 @@
],
"spf":"v=spf1 mx ip4:92.43.216.251 ip4:92.43.216.110 a:msscript1.webland.ch include:spf.protection.outlook.com include:spf.ws-hp-ias.ch include:spf.zii.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:92.43.216.251 ip4:92.43.216.110 a:msscript1.webland.ch include:spf.protection.outlook.com include:spf.ws-hp-ias.ch include:spf.zii.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.mail.hostpoint.ch -all v=spf1 ip4:195.65.253.130 ip4:83.144.243.194 include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 3303,
- 33965
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberrieden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberrieden.ch"
+ ],
+ "guess":[
+ "oberrieden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"138":{
"bfs":"138",
@@ -1663,14 +5787,83 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:mx.grl.activeguard.cloud ip4:194.29.25.62 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:mx.grl.activeguard.cloud ip4:194.29.25.62 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"mail.richterswil.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX richterswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "richterswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "richterswil.ch"
+ ],
+ "guess":[
+ "richterswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"139":{
"bfs":"139",
@@ -1682,13 +5875,77 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com include:spf.umantis.com a:mail.hope.myshare.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com include:spf.umantis.com a:mail.hope.myshare.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rueschlikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rueschlikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rueschlikon.ch"
+ ],
+ "guess":[
+ "rueschlikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"141":{
"bfs":"141",
@@ -1701,37 +5958,153 @@
],
"spf":"v=spf1 include:spf.zii.ch include:_spf.i-web.ch include:spf.abacuscity.ch ip4:195.49.84.165 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.zii.ch include:_spf.i-web.ch include:spf.abacuscity.ch ip4:195.49.84.165 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch -all v=spf1 ip4:195.65.253.130 ip4:83.144.243.194 include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 3303,
- 33965
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thalwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thalwil.ch"
+ ],
+ "guess":[
+ "thalwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"151":{
"bfs":"151",
- "name":"Erlenbach",
- "canton":"",
+ "name":"Erlenbach (ZH)",
+ "canton":"Kanton Zürich",
"domain":"erlenbach.ch",
"mx":[
"erlenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.cyon.net include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.protection.cyon.net include:_spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX erlenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.erlenbach.ch CNAME → selector1-erlenbach-ch._domainkey.gmderlenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.erlenbach.ch CNAME → selector2-erlenbach-ch._domainkey.gmderlenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "erlenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "erlenbach.ch"
+ ],
+ "guess":[
+ "erlenbach.ch",
+ "gemeinde-erlenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"152":{
"bfs":"152",
"name":"Herrliberg",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"herrliberg.ch",
"mx":[
"mx1.naveum.services",
@@ -1739,17 +6112,40 @@
],
"spf":"v=spf1 a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 205737
- ],
- "autodiscover":{
- "autodiscover_cname":"mail01.axc.biz"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "herrliberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herrliberg.ch"
+ ],
+ "guess":[
+ "herrliberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"153":{
"bfs":"153",
"name":"Hombrechtikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"hombrechtikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -1757,19 +6153,35 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"mail.hombrechtikon.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "hombrechtikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hombrechtikon.ch"
+ ],
+ "guess":[
+ "hombrechtikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"154":{
"bfs":"154",
- "name":"Küsnacht",
- "canton":"",
+ "name":"Küsnacht (ZH)",
+ "canton":"Kanton Zürich",
"domain":"kuesnacht.ch",
"mx":[
"mta1.abxsec.com",
@@ -1777,88 +6189,335 @@
],
"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.0/24 ip4:193.135.57.0/24 ip4:193.135.58.0/24 include:servers.mcsv.net ip4:193.246.64.0/19 a:mail01.refline.ch a:mail02.refline.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.0/24 ip4:193.135.57.0/24 ip4:193.135.58.0/24 include:servers.mcsv.net ip4:193.246.64.0/19 a:mail01.refline.ch a:mail02.refline.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"webmail.kuesnacht.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "kuesnacht.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kuesnacht.ch"
+ ],
+ "guess":[
+ "kuesnacht.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"155":{
"bfs":"155",
"name":"Männedorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"maennedorf.ch",
"mx":[
"mail2.maennedorf.ch"
],
"spf":"v=spf1 mx a:mail01.refline.ch a:mail02.refline.ch a:spf1.refline.ch a:spf2.refline.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.i-web.ch include:spf.protection.outlook.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx a:mail01.refline.ch a:mail02.refline.ch a:spf1.refline.ch a:spf2.refline.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maennedorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maennedorf.ch"
+ ],
+ "guess":[
+ "maennedorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"156":{
"bfs":"156",
"name":"Meilen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"meilen.ch",
"mx":[
"meilen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.iway.ch include:spf.bestview.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.iway.ch include:spf.bestview.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:65.109.228.236 include:_spf.smtp.com ip4:212.55.205.0/25 ~all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX meilen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.meilen.ch CNAME → selector1-meilen-ch._domainkey.meilench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.meilen.ch CNAME → selector2-meilen-ch._domainkey.meilench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meilen.ch"
+ ],
+ "guess":[
+ "meilen.ch",
+ "meilen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"157":{
"bfs":"157",
"name":"Oetwil am See",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"oetwil.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spf.psm.knowbe4.com include:_spfmx.rizag.ch include:spf.abxsec.com include:spf.protection.outlook.com mx ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.psm.knowbe4.com include:_spfmx.rizag.ch include:spf.abxsec.com include:spf.protection.outlook.com mx ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oetwil.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"158":{
"bfs":"158",
"name":"Stäfa",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"staefa.ch",
"mx":[
"staefa-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:spf1.refline.ch a:spf2.refline.ch a:mail01.refline.ch a:mail02.refline.ch include:backslash.ch a:mail.obt-services.ch include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:spf1.refline.ch a:spf2.refline.ch a:mail01.refline.ch a:mail02.refline.ch include:backslash.ch a:mail.obt-services.ch include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.protection.outlook.com ip4:193.135.56.0/24 ip4:193.135.57.0/24 ip4:193.135.58.0/24 ip4:89.47.51.12 ip6:2001:1600:13:101::141f include:spf.crsend.com -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX staefa-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.staefa.ch CNAME → selector1-staefa-ch._domainkey.staefacloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.staefa.ch CNAME → selector2-staefa-ch._domainkey.staefacloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "staefa.ch"
+ ],
+ "guess":[
+ "gemeinde-staefa.ch",
+ "staefa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"159":{
"bfs":"159",
"name":"Uetikon am See",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"uetikonamsee.ch",
"mx":[
"smtagb02.abxsec.com",
@@ -1868,19 +6527,59 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:_spf.i-web.ch include:spf.nl2go.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:_spf.i-web.ch include:spf.nl2go.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.uetikonamsee.ch CNAME → selector1-uetikonamsee-ch._domainkey.uetikonamsee.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.uetikonamsee.ch CNAME → selector2-uetikonamsee-ch._domainkey.uetikonamsee.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "uetikonamsee.ch"
+ ],
+ "redirect":[
+ "uetikonamsee.ch"
+ ],
+ "wikidata":[],
+ "guess":[
+ "uetikonamsee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"160":{
"bfs":"160",
"name":"Zumikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"zumikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -1888,16 +6587,35 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ip4:46.182.222.130 ip4:46.182.222.133 ip4:46.182.222.142 ip4:91.192.38.98 ip4:194.41.147.13 ip4:194.41.147.14 ip4:194.88.197.144 ip4:194.88.197.178 ip4:194.41.128.0/17 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ip4:46.182.222.130 ip4:46.182.222.133 ip4:46.182.222.142 ip4:91.192.38.98 ip4:194.41.147.13 ip4:194.41.147.14 ip4:194.88.197.144 ip4:194.88.197.178 ip4:194.41.128.0/17 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "zumikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zumikon.ch"
+ ],
+ "guess":[
+ "zumikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"161":{
"bfs":"161",
"name":"Zollikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"zollikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -1905,37 +6623,154 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com a:daten.zollikon.ch a:victorinus.ch-meta.net ptr:tux149.hoststar.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com a:daten.zollikon.ch a:victorinus.ch-meta.net ptr:tux149.hoststar.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "zollikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zollikon.ch"
+ ],
+ "guess":[
+ "zollikon.ch",
+ "zollikon.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"172":{
"bfs":"172",
"name":"Fehraltorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"fehraltorf.ch",
"mx":[
"fehraltorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.100.16 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.talus.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com ip4:193.135.100.16 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.talus.ch include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fehraltorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.fehraltorf.ch CNAME → selector1-fehraltorf-ch._domainkey.gvfehraltorf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.fehraltorf.ch CNAME → selector2-fehraltorf-ch._domainkey.gvfehraltorf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fehraltorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fehraltorf.ch"
+ ],
+ "guess":[
+ "fehraltorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"173":{
"bfs":"173",
"name":"Hittnau",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"hittnau.ch",
"mx":[
"mta1.abxsec.com",
@@ -1943,211 +6778,702 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com a:web18.bestview.ch include:spf1.egeko.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com a:web18.bestview.ch include:spf1.egeko.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "hittnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hittnau.ch"
+ ],
+ "guess":[
+ "hittnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"176":{
"bfs":"176",
"name":"Lindau",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"lindau.ch",
"mx":[
"mail.glindau.ch"
],
"spf":"v=spf1 +a +mx include:glindau.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx include:glindau.ch ~all v=spf1 +a +mx +a:web.ti-cloud.ch +a:mail.lindau.ch -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"alias.glindau.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lindau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lindau.ch"
+ ],
+ "guess":[
+ "lindau.ch",
+ "lindau.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"177":{
"bfs":"177",
"name":"Pfäffikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"pfaeffikon.ch",
"mx":[
"pfaeffikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_netblocks_v4.pfaeffikon.ch include:_partners.pfaeffikon.ch include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_netblocks_v4.pfaeffikon.ch include:_partners.pfaeffikon.ch include:_spf.abxsec.com -all v=spf1 ip4:193.246.95.96/27 ip4:5.152.185.153 ip4:5.152.185.154 ip4:5.152.185.155 ip4:194.6.175.15 ip4:185.156.11.34 ip4:185.156.11.2 ip4:94.231.81.6 ip4:195.65.10.12 -all v=spf1 include:spf.protection.outlook.com include:spf.mva-n.net include:spf.abacuscity.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip6:2001:67c:1984::/48 ip4:195.65.111.0/24 ip4:194.124.232.0/23 a:mx01.mva.ch a:xchsrv10.xchangeonline.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pfaeffikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.pfaeffikon.ch CNAME → selector1-pfaeffikon-ch._domainkey.pfaeffikonzh.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.pfaeffikon.ch CNAME → selector2-pfaeffikon-ch._domainkey.pfaeffikonzh.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pfaeffikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pfaeffikon.ch"
+ ],
+ "guess":[
+ "pfaeffikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"178":{
"bfs":"178",
"name":"Russikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"russikon.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:212.80.96.0/21 ip4:149.126.4.38 ip6:2a01:7480:1:100::/64 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:212.80.96.0/21 ip4:149.126.4.38 ip6:2a01:7480:1:100::/64 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "russikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "russikon.ch"
+ ],
+ "guess":[
+ "russikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"180":{
"bfs":"180",
"name":"Weisslingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"weisslingen.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch a mx include:_spf.i-web.ch ip4:46.232.179.212 include:spf1.egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch a mx include:_spf.i-web.ch ip4:46.232.179.212 include:spf1.egeko.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rizag.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "weisslingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "weisslingen.ch"
+ ],
+ "guess":[
+ "weisslingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"181":{
"bfs":"181",
"name":"Wila",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wila.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wila.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wila.ch"
+ ],
+ "guess":[
+ "wila.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"182":{
"bfs":"182",
"name":"Wildberg",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wildberg.ch",
"mx":[
"wildberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wildberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wildberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wildberg.ch"
+ ],
+ "guess":[
+ "wildberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"191":{
"bfs":"191",
"name":"Dübendorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"duebendorf.ch",
"mx":[
"stadtduebendorf.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 mx include:speedadmin.dk ip4:80.242.195.146 ip4:80.242.195.157 include:spf.crsend.com include:spf.abxsec.com include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.bestview.ch include:spf.tmes.trendmicro.eu -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:speedadmin.dk ip4:80.242.195.146 ip4:80.242.195.157 include:spf.crsend.com include:spf.abxsec.com include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.bestview.ch include:spf.tmes.trendmicro.eu -all v=spf1 ip4:87.54.30.56 include:spf.protection.outlook.com -all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:65.109.228.236 include:_spf.smtp.com ip4:212.55.205.0/25 ~all v=spf1 ip4:18.185.115.0/25 ip4:18.185.115.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:3.72.196.143 ip4:18.156.0.20 ip4:35.156.245.132 ip4:18.208.22.124 ip4:18.208.22.125 ip4:18.96.32.128/27 ip6:2a05:d014:10e:d900::/60 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"trendmicro",
- "mx_asns":[
- 16509
- ]
+ "sources_detail":{
+ "scrape":[
+ "duebendorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duebendorf.ch"
+ ],
+ "guess":[
+ "duebendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"192":{
"bfs":"192",
"name":"Egg",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"egg.ch",
"mx":[
"egg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf.abacuscity.ch include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf.abacuscity.ch include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX egg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "egg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "egg.ch"
+ ],
+ "guess":[
+ "egg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"193":{
"bfs":"193",
"name":"Fällanden",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"faellanden.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx a:smtazh01.abxsec.com include:_spf.i-web.ch a:mail01.refline.ch a:mail02.refline.ch a:mail.obt-services.ch a:mail1.obtcloud.ch ip4:193.135.100.0/27 include:spf.abacuscity.ch include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx a:smtazh01.abxsec.com include:_spf.i-web.ch a:mail01.refline.ch a:mail02.refline.ch a:mail.obt-services.ch a:mail1.obtcloud.ch ip4:193.135.100.0/27 include:spf.abacuscity.ch include:_spf.rzobt.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rizag.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "faellanden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "faellanden.ch"
+ ],
+ "guess":[
+ "faellanden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"194":{
"bfs":"194",
"name":"Greifensee",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"greifensee.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.i-web.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.i-web.ch include:spf.abxsec.com -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "greifensee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "greifensee.ch"
+ ],
+ "guess":[
+ "greifensee.ch",
+ "greifensee.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"195":{
"bfs":"195",
"name":"Maur",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"maur.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.abxsec.com a:mail.arabachwis.ch a:mail.traberedv.ch a:communication.backslash.ch mx include:spf1.mailchannels.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch include:spf.abxsec.com a:mail.arabachwis.ch a:mail.traberedv.ch a:communication.backslash.ch mx include:spf1.mailchannels.net include:spf.protection.outlook.com -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maur.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maur.ch"
+ ],
+ "guess":[
+ "maur.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"196":{
"bfs":"196",
"name":"Mönchaltorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"moenchaltorf.ch",
"mx":[
"mta1.abxsec.com",
@@ -2155,54 +7481,188 @@
],
"spf":"v=spf1 ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:_spf.google.com include:_spf.i-web.ch -all",
"provider":"google",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:_spf.google.com include:_spf.i-web.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
+ "category":"us-cloud",
+ "classification_confidence":70.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "moenchaltorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moenchaltorf.ch"
+ ],
+ "guess":[
+ "moenchaltorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"197":{
"bfs":"197",
"name":"Schwerzenbach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"schwerzenbach.ch",
"mx":[
"schwerzenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:_spf.abxsec.com ip4:213.158.144.22 ip4:62.12.175.210 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:_spf.abxsec.com ip4:213.158.144.22 ip4:62.12.175.210 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schwerzenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.schwerzenbach.ch CNAME → selector1-schwerzenbach-ch._domainkey.gemeindeschwerzenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.schwerzenbach.ch CNAME → selector2-schwerzenbach-ch._domainkey.gemeindeschwerzenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwerzenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwerzenbach.ch"
+ ],
+ "guess":[
+ "schwerzenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"198":{
"bfs":"198",
"name":"Uster",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"uster.ch",
"mx":[
"mta1.abxsec.com",
"mta2.abxsec.com"
],
- "spf":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 ip6:2a02:c382:0:8007::101 ip6:2a02:c382:0:8007::121 ip4:194.209.75.192/26 ip4:195.65.10.12 ip4:195.65.10.14 ip4:167.89.53.198 ip4:149.72.40.42 ip4:167.89.89.155 ip4:217.26.48.124 ip4:217.26.48.146 ip4:217.26.48.147 ip4:217.26.48.121 ip6:2a00:d70:0:a::e0 ip6:2a00:d70:0:13::100 ip6:2a00:d70:0:14::100 ip6:2a00:d70:0:a::e1 include:_spf.abxsec.com include:spf.umantis.com include:spf.abacuscity.ch include:spf.iway.ch include:spf.protection.outlook.com include:mandrillapp.com include:_spf.atlassian.net -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 ip6:2a02:c382:0:8007::101 ip6:2a02:c382:0:8007::121 ip4:194.209.75.192/26 ip4:195.65.10.12 ip4:195.65.10.14 ip4:167.89.53.198 ip4:149.72.40.42 ip4:167.89.89.155 ip4:217.26.48.124 ip4:217.26.48.146 ip4:217.26.48.147 ip4:217.26.48.121 ip6:2a00:d70:0:a::e0 ip6:2a00:d70:0:13::100 ip6:2a00:d70:0:14::100 ip6:2a00:d70:0:a::e1 include:_spf.abxsec.com include:spf.umantis.com include:spf.abacuscity.ch include:spf.iway.ch include:spf.protection.outlook.com include:mandrillapp.com include:_spf.atlassian.net -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.mandrillapp.com ~all v=spf1 ip4:167.89.0.0/17 ip4:168.245.0.0/17 include:amazonses.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "spf":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 ip6:2a02:c382:0:8007::101 ip6:2a02:c382:0:8007::121 ip4:194.209.75.192/26 ip4:195.65.10.12 ip4:195.65.10.13 ip4:195.65.10.14 ip4:195.65.10.15 ip4:167.89.53.198 ip4:149.72.40.42 ip4:167.89.89.155 ip4:217.26.48.124 ip4:217.26.48.146 ip4:217.26.48.147 ip4:217.26.48.121 ip6:2a00:d70:0:a::e0 ip6:2a00:d70:0:13::100 ip6:2a00:d70:0:14::100 ip6:2a00:d70:0:a::e1 include:_spf.abxsec.com include:spf.umantis.com include:spf.abacuscity.ch include:spf.iway.ch include:spf.protection.outlook.com include:mandrillapp.com include:_spf.atlassian.net -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "uster.ch"
+ ],
+ "guess":[
+ "stadt-uster.ch",
+ "uster.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"199":{
"bfs":"199",
"name":"Volketswil",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"volketswil.ch",
"mx":[
"mx1.naveum.services",
@@ -2210,90 +7670,358 @@
],
"spf":"v=spf1 mx a:mx2.naveum.services a:mx1.naveum.services a:mail01.axc.biz ip4:193.135.56.6 ip4:194.56.218.154 include:spf.umantis.com include:mailomat.cloud -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mx2.naveum.services a:mx1.naveum.services a:mail01.axc.biz ip4:193.135.56.6 ip4:194.56.218.154 include:spf.umantis.com include:mailomat.cloud -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 include:spf.protection.cyon.net include:_spf.mailomat.cloud ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:91.233.182.0/25 ~all",
- "mx_asns":[
- 205737
- ],
- "autodiscover":{
- "autodiscover_cname":"mail01.axc.biz"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "volketswil.ch"
+ ],
+ "guess":[
+ "volketswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"200":{
"bfs":"200",
"name":"Wangen-Brüttisellen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wangen-bruettisellen.ch",
"mx":[
"wangenbruettisellen-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.i-web.ch include:egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.i-web.ch include:egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"ms-ch.securemail.pro"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wangenbruettisellen-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wangen-bruettisellen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wangen-bruettisellen.ch"
+ ],
+ "guess":[
+ "wangen-bruettisellen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"211":{
"bfs":"211",
"name":"Altikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"altikon.ch",
"mx":[
- "altikon-ch.gate.seppmail.cloud"
- ],
- "spf":"v=spf1 include:_spf.abxsec.com ip4:193.135.56.0/24 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.abxsec.com ip4:193.135.56.0/24 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
- ]
+ "altikon-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.0/24 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX altikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "altikon.ch"
+ ],
+ "guess":[
+ "altikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"213":{
"bfs":"213",
"name":"Brütten",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"bruetten.ch",
"mx":[
"bruetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.rzobt.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.rzobt.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bruetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bruetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bruetten.ch"
+ ],
+ "guess":[
+ "bruetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"214":{
"bfs":"214",
"name":"Dägerlen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"daegerlen.ch",
"mx":[
"daegerlen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX daegerlen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "daegerlen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "daegerlen.ch"
+ ],
+ "guess":[
+ "daegerlen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"215":{
"bfs":"215",
"name":"Dättlikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"daettlikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -2301,121 +8029,406 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.mtfweb.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.mtfweb.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 a -all",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "daettlikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "daettlikon.ch"
+ ],
+ "guess":[
+ "daettlikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"216":{
"bfs":"216",
"name":"Dinhard",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"dinhard.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx a:webcms.ruf.ch ip4:193.135.56.6 include:_spf.abxsec.com include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch ip4:193.135.56.6 include:_spf.abxsec.com include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dinhard.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dinhard.ch"
+ ],
+ "guess":[
+ "dinhard.ch",
+ "dinhard.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"218":{
"bfs":"218",
"name":"Ellikon an der Thur",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"ellikonanderthur.ch",
"mx":[
"ellikonanderthur-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.2sic.net include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.6 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.2sic.net include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.6 ~all v=spf1 ip4:194.0.212.0/24 ip6:2001:678:8ec::/48 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ellikonanderthur-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ellikonanderthur.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ellikonanderthur.ch"
+ ],
+ "guess":[
+ "ellikonanderthur.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"219":{
"bfs":"219",
"name":"Elsau",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"elsau.ch",
"mx":[
"elsau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:egeko.ch include:_spf.psm.knowbe4.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:egeko.ch include:_spf.psm.knowbe4.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX elsau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.elsau.ch CNAME → selector1-elsau-ch._domainkey.elsau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.elsau.ch CNAME → selector2-elsau-ch._domainkey.elsau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "elsau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "elsau.ch"
+ ],
+ "guess":[
+ "elsau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"220":{
"bfs":"220",
"name":"Hagenbuch",
- "canton":"",
- "domain":"hagenbuch.zh.ch",
+ "canton":"Kanton Zürich",
+ "domain":"hagenbuch-zh.ch",
"mx":[
- "mtain01.mailsecurity.swisscom.com",
- "mtain02.mailsecurity.swisscom.com"
+ "mta1.abxsec.com",
+ "mta2.abxsec.com"
],
- "spf":"",
- "provider":"independent"
+ "spf":"v=spf1 mx a include:_spf.abxsec.com +include:spf1.egeko.ch ip4:193.135.56.6 ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "gateway":"abxsec",
+ "sources_detail":{
+ "override":[
+ "hagenbuch-zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"221":{
"bfs":"221",
"name":"Hettlingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"hettlingen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 mx include:spf.abxsec.com include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com include:_spf.rzobt.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hettlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hettlingen.ch"
+ ],
+ "guess":[
+ "hettlingen.ch",
+ "hettlingen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"223":{
"bfs":"223",
"name":"Neftenbach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"neftenbach.ch",
"mx":[
- "mail1.rzobt.ch",
- "mail2.rzobt.ch"
- ],
- "spf":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "neftenbach-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neftenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neftenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neftenbach.ch"
+ ],
+ "guess":[
+ "neftenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"224":{
"bfs":"224",
"name":"Pfungen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"pfungen.ch",
"mx":[
"mx1.mtfcloud.ch",
@@ -2424,34 +8437,93 @@
],
"spf":"v=spf1 ip4:217.148.0.25 mx include:_spf.i-web.ch include:spf.mtfweb.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:217.148.0.25 mx include:_spf.i-web.ch include:spf.mtfweb.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 20988
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.pfungen.ch CNAME → selector1-pfungen-ch._domainkey.mtfsc95146.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.pfungen.ch CNAME → selector2-pfungen-ch._domainkey.mtfsc95146.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pfungen.ch",
+ "schulepfungen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pfungen.ch"
+ ],
+ "guess":[
+ "pfungen.ch",
+ "pfungen.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"225":{
"bfs":"225",
- "name":"Rickenbach ZH",
- "canton":"",
- "domain":"rickenbach.zh.ch",
+ "name":"Rickenbach (ZH)",
+ "canton":"Kanton Zürich",
+ "domain":"rickenbach-zh.ch",
"mx":[
- "smtasg01.abxsec.com",
- "smtazh01.abxsec.com"
+ "mail100.rizag.ch"
],
- "spf":"",
- "provider":"independent",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com mx:talus.ch ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "rickenbach-zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"226":{
"bfs":"226",
- "name":"Schlatt",
- "canton":"",
+ "name":"Schlatt (ZH)",
+ "canton":"Kanton Zürich",
"domain":"schlatt-zh.ch",
"mx":[
"mta1.abxsec.com",
@@ -2459,128 +8531,384 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.abx-net.net"
- }
+ "sources_detail":{
+ "scrape":[
+ "schlatt-zh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schlatt-zh.ch"
+ ],
+ "guess":[
+ "schlatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"227":{
"bfs":"227",
"name":"Seuzach",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"seuzach.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:spf.abxsec.com ~all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seuzach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seuzach.ch"
+ ],
+ "guess":[
+ "seuzach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"228":{
"bfs":"228",
"name":"Turbenthal",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"turbenthal.ch",
"mx":[
"turbenthal-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.ch.seppmail.cloud include:egeko.ch include:spf.protection.outlook.com ip4:193.135.56.6 ip4:212.243.171.122 ip4:83.173.240.50 ip4:212.90.205.250 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.ch.seppmail.cloud include:egeko.ch include:spf.protection.outlook.com ip4:193.135.56.6 ip4:212.243.171.122 ip4:83.173.240.50 ip4:212.90.205.250 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "turbenthal.ch"
+ ],
+ "guess":[
+ "turbenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"230":{
"bfs":"230",
"name":"Winterthur",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"win.ch",
"mx":[
"mx01.mailsecurity.swisscom.com",
"mx02.mailsecurity.swisscom.com"
],
"spf":"v=spf1 include:_spf.win.ch include:mailsecurity.swisscom.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.win.ch include:mailsecurity.swisscom.com -all v=spf1 include:_spf.extern.win.ch -all v=spf1 include:_spf.mailsecurity.swisscom.com ~all v=spf1 ip4:193.8.88.224 ip4:195.65.10.12 ip4:184.72.216.93 ip4:194.56.33.11 ip4:91.198.12.38 ip4:23.23.158.88 ip4:23.23.195.124 ip4:193.246.64.0/19 ip4:217.26.49.128/25 include:servers.mcsv.net include:spf.imc-hosting.com -all v=spf1 ip4:193.135.100.0/27 ~all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:4.231.234.136 ip4:4.231.171.210 ip4:52.178.135.21 ip4:20.107.242.47 ip4:4.197.4.76 ip4:85.215.73.51 -all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "win.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "stadt-winterthur.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"231":{
"bfs":"231",
- "name":"Zell ZH",
- "canton":"",
+ "name":"Zell (ZH)",
+ "canton":"Kanton Zürich",
"domain":"zell.ch",
"mx":[
"zell-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf.protection.outlook.com include:_spf.abxsec.com ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf.protection.outlook.com include:_spf.abxsec.com ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 ~all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zell-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zell.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zell.ch"
+ ],
+ "guess":[
+ "zell.ch",
+ "zell.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"241":{
"bfs":"241",
- "name":"Aesch",
- "canton":"",
+ "name":"Aesch (ZH)",
+ "canton":"Kanton Zürich",
"domain":"aesch-zh.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch a:smtp1-1.infra.gtg1.ch.abainfra.net -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch a:smtp1-1.infra.gtg1.ch.abainfra.net -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aesch-zh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aesch-zh.ch"
+ ],
+ "guess":[
+ "aesch.ch",
+ "aesch.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"242":{
"bfs":"242",
- "name":"Birmensdorf",
- "canton":"",
+ "name":"Birmensdorf (ZH)",
+ "canton":"Kanton Zürich",
"domain":"birmensdorf.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:mailsecurity.swisscom.com include:_spf.rzobt.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:mailsecurity.swisscom.com include:_spf.rzobt.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:_spf.mailsecurity.swisscom.com ~all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:193.135.100.0/27 ~all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "birmensdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "birmensdorf.ch"
+ ],
+ "guess":[
+ "birmensdorf.ch",
+ "birmensdorf.zh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"243":{
"bfs":"243",
"name":"Dietikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"dietikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -2588,19 +8916,42 @@
],
"spf":"v=spf1 mx ip4:193.246.68.28 ip4:193.246.68.29 ip4:193.246.80.28 ip4:193.246.80.29 include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:mail01.refline.ch include:mail02.refline.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.246.68.28 ip4:193.246.68.29 ip4:193.246.80.28 ip4:193.246.80.29 include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:mail01.refline.ch include:mail02.refline.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx:refline.ch ip4:212.71.124.231 ip4:212.71.124.232 include:spf.iway.ch ~all v=spf1 mx:refline.ch ip4:212.71.124.231 ip4:212.71.124.232 include:spf.iway.ch ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"mail.dietikon.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "dietikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dietikon.ch"
+ ],
+ "guess":[
+ "dietikon.ch",
+ "stadt-dietikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"244":{
"bfs":"244",
"name":"Geroldswil",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"geroldswil.ch",
"mx":[
"mta1.abxsec.com",
@@ -2608,52 +8959,157 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "geroldswil.ch"
+ ],
+ "guess":[
+ "geroldswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"245":{
"bfs":"245",
"name":"Oberengstringen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"oberengstringen.ch",
"mx":[
"oberengstringen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf1.egeko.ch include:_spf.i-web.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf1.egeko.ch include:_spf.i-web.ch include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberengstringen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberengstringen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberengstringen.ch"
+ ],
+ "guess":[
+ "oberengstringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"246":{
"bfs":"246",
"name":"Oetwil an der Limmat",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"oetwil-limmat.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.abxsec.com mx ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch include:spf.abxsec.com mx ip4:193.135.56.6 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oetwil-limmat.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"247":{
"bfs":"247",
"name":"Schlieren",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"schlieren.ch",
"mx":[
"mta1.abxsec.com",
@@ -2661,124 +9117,449 @@
],
"spf":"v=spf1 a mx ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:_spf.i-web.ch include:spf.umantis.com include:mhs.ch include:spf.protection.outlook.com include:sendgrid.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:_spf.i-web.ch include:spf.umantis.com include:mhs.ch include:spf.protection.outlook.com include:sendgrid.net -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 include:spf.protection.cyon.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"webmail.schlieren.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "schlieren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schlieren.ch"
+ ],
+ "guess":[
+ "schlieren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"248":{
"bfs":"248",
"name":"Uitikon",
- "canton":"",
- "domain":"uitikon.ch",
- "mx":[
- "mx1.gib-solutions.ch"
- ],
- "spf":"v=spf1 ip4:212.25.8.128/26 ip4:157.161.12.0/22 ip4:81.18.31.151 ip4:81.92.96.19 ip4:81.92.102.217 ip6:2001:4060:1:1001::/64 ip4:81.92.102.215 -all",
- "provider":"independent",
- "mx_asns":[
- 8758
- ]
+ "canton":"Kanton Zürich",
+ "domain":"uitikon.org",
+ "mx":[
+ "mx.uitikon.org"
+ ],
+ "spf":"v=spf1 mx ip4:212.27.79.46 include:_spf.i-web.ch include:spf.privasphere.com -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "uitikon.org"
+ ]
+ },
+ "resolve_flags":[]
},
"249":{
"bfs":"249",
"name":"Unterengstringen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"unterengstringen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:servicehoster.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:servicehoster.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "unterengstringen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unterengstringen.ch"
+ ],
+ "guess":[
+ "unterengstringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"250":{
"bfs":"250",
"name":"Urdorf",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"urdorf.ch",
"mx":[
"urdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:spf1.refline.ch a:spf2.refline.ch a:mail.obt-services.ch include:_spf.i-web.ch include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:spf1.refline.ch a:spf2.refline.ch a:mail.obt-services.ch include:_spf.i-web.ch include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX urdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.urdorf.ch CNAME → selector1-urdorf-ch._domainkey.urdorfcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.urdorf.ch CNAME → selector2-urdorf-ch._domainkey.urdorfcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "urdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "urdorf.ch"
+ ],
+ "guess":[
+ "urdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"251":{
"bfs":"251",
- "name":"Weiningen",
- "canton":"",
+ "name":"Weiningen (ZH)",
+ "canton":"Kanton Zürich",
"domain":"weiningen.ch",
"mx":[
"weiningen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX weiningen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.weiningen.ch CNAME → selector1-weiningen-ch._domainkey.weiningencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.weiningen.ch CNAME → selector2-weiningen-ch._domainkey.weiningencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "weiningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "weiningen.ch"
+ ],
+ "guess":[
+ "weiningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"261":{
"bfs":"261",
"name":"Zürich",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"zuerich.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch v=spf1 include:spf.mail.hostpoint.ch ?all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "mx3.stadt-zuerich.ch",
+ "mx4.stadt-zuerich.ch"
+ ],
+ "spf":"v=spf1 ip4:194.56.33.0/26 ip4:185.125.165.24/31 ip4:213.52.186.141 ip4:213.52.186.142 ip4:35.214.208.81 ip4:35.214.213.218 ip4:35.214.183.81 ip4:35.214.212.238 include:spf1.zuerich.ch include:spf2.zuerich.ch ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"google",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15169 matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "zuerich.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"291":{
"bfs":"291",
"name":"Andelfingen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"andelfingen.ch",
"mx":[
- "mta1.abxsec.com",
- "mta2.abxsec.com"
- ],
- "spf":"v=spf1 mx include:spf.abxsec.com include:_spf.i-web.ch ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com include:_spf.i-web.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "andelfingen-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 mx include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX andelfingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "andelfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "andelfingen.ch"
+ ],
+ "guess":[
+ "andelfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"292":{
"bfs":"292",
"name":"Stammheim",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"stammheim.ch",
"mx":[
"mta1.abxsec.com",
@@ -2786,11 +9567,30 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "stammheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stammheim.ch"
+ ],
+ "guess":[
+ "stammheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"293":{
"bfs":"293",
@@ -2802,38 +9602,94 @@
"ironout02.waedenswil.ch"
],
"spf":"v=spf1 a mx a:mail01.refline.ch a:mail02.refline.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx a:mail01.refline.ch a:mail02.refline.ch include:_spf.i-web.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"webext03.i-web.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "waedenswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "waedenswil.ch"
+ ],
+ "guess":[
+ "waedenswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"294":{
"bfs":"294",
"name":"Elgg",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"elgg.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "elgg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "elgg.ch"
+ ],
+ "guess":[
+ "elgg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"295":{
"bfs":"295",
"name":"Horgen",
- "canton":"Kanton Zürich",
+ "canton":"",
"domain":"horgen.ch",
"mx":[
"mailgw01.zii.ch",
@@ -2841,70 +9697,254 @@
],
"spf":"v=spf1 include:spf.zii.ch include:_spf.i-web.ch include:_spf.web-solutions.io include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.rexx-systems.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.zii.ch include:_spf.i-web.ch include:_spf.web-solutions.io include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.rexx-systems.com ip4:193.135.56.6 -all v=spf1 ip4:195.65.253.130 ip4:83.144.243.194 include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 +ip4:185.90.39.55 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:mx01.rexx-systems.de ip6:2001:67c:2050::/48 ip4:92.51.187.64/27 ip4:83.169.51.224/27 ip4:80.237.187.32/28 ip4:91.250.74.128/27 ip4:87.230.74.128/28 ip4:91.250.95.64/26 ip4:85.25.89.0/24 ip4:195.10.208.0/26 -all",
- "mx_asns":[
- 3303,
- 33965
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "horgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "horgen.ch"
+ ],
+ "guess":[
+ "horgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"296":{
"bfs":"296",
"name":"Illnau-Effretikon",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"ilef.ch",
"mx":[
"ilef-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com include:_partner.ilef.ch ip4:212.71.124.231 ip4:212.71.124.232 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com include:_partner.ilef.ch ip4:212.71.124.231 ip4:212.71.124.232 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch include:speedadmin.dk include:_spf.i-web.ch a:mail01.refline.ch a:mail02.refline.ch a:mail.ostendis.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:87.54.30.56 include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ilef-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ilef.ch CNAME → selector1-ilef-ch._domainkey.ilefcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ilef.ch CNAME → selector2-ilef-ch._domainkey.ilefcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ilef.ch"
+ ],
+ "redirect":[
+ "ilef.ch"
+ ],
+ "wikidata":[],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"297":{
"bfs":"297",
"name":"Bauma",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"bauma.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com include:spf.abxsec.com a:smtazh01.abxsec.com mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com include:spf.abxsec.com a:smtazh01.abxsec.com mx -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bauma.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bauma.ch"
+ ],
+ "guess":[
+ "bauma.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"298":{
"bfs":"298",
"name":"Wiesendangen",
- "canton":"",
+ "canton":"Kanton Zürich",
"domain":"wiesendangen.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com include:_spf.i-web.ch ~all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wiesendangen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wiesendangen.ch"
+ ],
+ "guess":[
+ "wiesendangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"301":{
"bfs":"301",
"name":"Aarberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"aarberg.ch",
"mx":[
"mail.format-ag.ch",
@@ -2914,38 +9954,103 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"www.aarberg.ch",
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "aarberg.ch"
+ ],
+ "guess":[
+ "aarberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"302":{
"bfs":"302",
- "name":"Bargen",
- "canton":"",
+ "name":"Bargen (BE)",
+ "canton":"Kanton Bern",
"domain":"bargen-be.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 a mx include:spf.customer.swiss-egov.cloud ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx include:spf.customer.swiss-egov.cloud ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bargen-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bargen-be.ch"
+ ],
+ "guess":[
+ "bargen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"303":{
"bfs":"303",
"name":"Grossaffoltern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"grossaffoltern.ch",
"mx":[
"mail.format-ag.ch",
@@ -2955,18 +10060,32 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grossaffoltern.ch"
+ ],
+ "guess":[
+ "grossaffoltern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"304":{
"bfs":"304",
"name":"Kallnach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kallnach.ch",
"mx":[
"mail.format-ag.ch",
@@ -2976,36 +10095,135 @@
],
"spf":"v=spf1 include:spf.protection.cyon.net ip4:80.74.138.230 ip4:194.88.197.38 include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net ip4:80.74.138.230 ip4:194.88.197.38 include:_spf.talus.ch ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kallnach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kallnach.ch"
+ ],
+ "guess":[
+ "gemeinde-kallnach.ch",
+ "kallnach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"305":{
"bfs":"305",
"name":"Kappelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kappelen.ch",
"mx":[
"kappelen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kappelen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kappelen.ch CNAME → selector1-kappelen-ch._domainkey.gemeindekappelen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kappelen.ch CNAME → selector2-kappelen-ch._domainkey.gemeindekappelen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kappelen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kappelen.ch"
+ ],
+ "guess":[
+ "kappelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"306":{
"bfs":"306",
"name":"Lyss",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lyss.ch",
"mx":[
"mail.format-ag.ch",
@@ -3015,56 +10233,140 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lyss.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lyss.ch"
+ ],
+ "guess":[
+ "lyss.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"307":{
"bfs":"307",
"name":"Meikirch",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"meikirch.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ?all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ?all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meikirch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meikirch.ch"
+ ],
+ "guess":[
+ "meikirch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"309":{
"bfs":"309",
"name":"Radelfingen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"radelfingen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 a MX include:spf.crsend.com include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 a MX include:spf.crsend.com include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "radelfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "radelfingen.ch"
+ ],
+ "guess":[
+ "radelfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"310":{
"bfs":"310",
- "name":"Rapperswil",
- "canton":"",
+ "name":"Rapperswil (BE)",
+ "canton":"Kanton Bern",
"domain":"rapperswil-be.ch",
"mx":[
"mail.format-ag.ch",
@@ -3073,40 +10375,82 @@
"mailbackup.tankred.ch"
],
"spf":"v=spf1 a include:_spf.talus.ch include:spf.protection.outlook.com ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:spf.protection.outlook.com ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rapperswil-be.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"311":{
"bfs":"311",
"name":"Schüpfen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schuepfen.ch",
"mx":[
"mail.format-ag.ch",
- "mail.tankred.ch",
- "mailbackup.format-ag.ch",
- "mailbackup.tankred.ch"
+ "mail.tankred.ch"
],
"spf":"v=spf1 mx a include:_spf.talus.ch include:_spf.sui-inter.net ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a include:_spf.talus.ch include:_spf.sui-inter.net ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "schuepfen.ch"
+ ],
+ "guess":[
+ "schuepfen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"312":{
"bfs":"312",
- "name":"Seedorf",
- "canton":"",
+ "name":"Seedorf (BE)",
+ "canton":"Kanton Bern",
"domain":"seedorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -3114,145 +10458,672 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "seedorf.ch"
+ ],
+ "guess":[
+ "seedorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"321":{
"bfs":"321",
"name":"Aarwangen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"aarwangen.ch",
"mx":[
"aarwangen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:213.221.253.87 include:_spf.ch.seppmail.cloud Include:spf.protection.outlook.com a:mail.i-web.ch a:mail.obt-services.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:213.221.253.87 include:_spf.ch.seppmail.cloud Include:spf.protection.outlook.com a:mail.i-web.ch a:mail.obt-services.ch -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aarwangen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.aarwangen.ch CNAME → selector1-aarwangen-ch._domainkey.aarwangencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.aarwangen.ch CNAME → selector2-aarwangen-ch._domainkey.aarwangencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aarwangen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aarwangen.ch"
+ ],
+ "guess":[
+ "aarwangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"322":{
"bfs":"322",
"name":"Auswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"auswil.ch",
"mx":[
"auswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX auswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "auswil.ch"
+ ],
+ "guess":[
+ "auswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"323":{
"bfs":"323",
"name":"Bannwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bannwil.ch",
"mx":[
"bannwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.tophost.ch include:relay.mailchannels.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.tophost.ch include:relay.mailchannels.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bannwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bannwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bannwil.ch"
+ ],
+ "guess":[
+ "bannwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"324":{
"bfs":"324",
"name":"Bleienbach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bleienbach.ch",
"mx":[
"bleienbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com +include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com +include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bleienbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bleienbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bleienbach.ch"
+ ],
+ "guess":[
+ "bleienbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"325":{
"bfs":"325",
"name":"Busswil bei Melchnau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"busswil-bm.ch",
"mx":[
"busswilbm-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com +include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com +include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX busswilbm-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.busswil-bm.ch CNAME → selector1-busswilbm-ch01i._domainkey.gemeindebusswilmelchnauch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.busswil-bm.ch CNAME → selector2-busswilbm-ch01i._domainkey.gemeindebusswilmelchnauch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "busswil-bm.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "busswil-bm.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"326":{
"bfs":"326",
"name":"Gondiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gondiswil.ch",
"mx":[
"gondiswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:mail.tcnet.ch a:oa.ip-cloud.ch a:ip-mail01.asp.infopro.ch ip4:213.221.218.169 ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mail.tcnet.ch a:oa.ip-cloud.ch a:ip-mail01.asp.infopro.ch ip4:213.221.218.169 ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gondiswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gondiswil.ch"
+ ],
+ "guess":[
+ "gondiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"329":{
"bfs":"329",
"name":"Langenthal",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"langenthal.ch",
"mx":[
"langenthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.rzobt.ch include:_spf.ch.seppmail.cloud include:mx.dvbern.ch include:_spf.psm.knowbe4.com a:mail01.refline.ch a:mail02.refline.ch a:satadm.langenthal.ch ip4:213.221.253.82 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.rzobt.ch include:_spf.ch.seppmail.cloud include:mx.dvbern.ch include:_spf.psm.knowbe4.com a:mail01.refline.ch a:mail02.refline.ch a:satadm.langenthal.ch ip4:213.221.253.82 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:185.125.165.24/31 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX langenthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.langenthal.ch CNAME → selector1-langenthal-ch._domainkey.stadtverwaltunglangenthal.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.langenthal.ch CNAME → selector2-langenthal-ch._domainkey.stadtverwaltunglangenthal.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "langenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "langenthal.ch"
+ ],
+ "guess":[
+ "langenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"331":{
"bfs":"331",
"name":"Lotzwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lotzwil.ch",
"mx":[
"mail.format-ag.ch",
@@ -3262,18 +11133,38 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lotzwil.ch"
+ ],
+ "guess":[
+ "lotzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"332":{
"bfs":"332",
"name":"Madiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"madiswil.ch",
"mx":[
"mail.format-ag.ch",
@@ -3283,91 +11174,340 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "madiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "madiswil.ch"
+ ],
+ "guess":[
+ "madiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"333":{
"bfs":"333",
"name":"Melchnau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"melchnau.ch",
"mx":[
"melchnau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX melchnau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "melchnau.ch"
+ ],
+ "guess":[
+ "melchnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"335":{
"bfs":"335",
"name":"Oeschenbach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oeschenbach.ch",
"mx":[
"oeschenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:oeschenbach.ch mx include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:oeschenbach.ch mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oeschenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oeschenbach.ch CNAME → selector1-oeschenbach-ch._domainkey.gemoesch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oeschenbach.ch CNAME → selector2-oeschenbach-ch._domainkey.gemoesch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oeschenbach.ch"
+ ],
+ "guess":[
+ "oeschenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"336":{
"bfs":"336",
"name":"Reisiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"reisiswil.ch",
"mx":[
"reisiswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX reisiswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "reisiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reisiswil.ch"
+ ],
+ "guess":[
+ "reisiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"337":{
"bfs":"337",
- "name":"Roggwil",
- "canton":"",
+ "name":"Roggwil (BE)",
+ "canton":"Kanton Bern",
"domain":"roggwil.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a a:remote.roggwil.ch include:mx.dvbern.ch include:spf.mail.balzcloud.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a a:remote.roggwil.ch include:mx.dvbern.ch include:spf.mail.balzcloud.ch ~all v=spf1 ip4:185.125.165.24/31 -all v=spf1 ip4:46.247.34.140 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"remote.roggwil.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roggwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roggwil.ch"
+ ],
+ "guess":[
+ "roggwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"338":{
"bfs":"338",
"name":"Rohrbach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"rohrbach-be.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -3377,136 +11517,591 @@
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:_spf.hex.pcetera.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:_spf.hex.pcetera.ch -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 25091
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"owa2.oneaccess.ch"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "rohrbach-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rohrbach-be.ch"
+ ],
+ "guess":[
+ "gemeinde-rohrbach.ch",
+ "rohrbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"339":{
"bfs":"339",
"name":"Rohrbachgraben",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"rohrbachgraben.ch",
"mx":[
"rohrbachgraben-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf.gilomen.org -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf.gilomen.org -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:mailgw1.gilomen.org",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rohrbachgraben-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rohrbachgraben.ch"
+ ],
+ "guess":[
+ "rohrbachgraben.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"340":{
"bfs":"340",
"name":"Rütschelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ruetschelen.ch",
"mx":[
"ruetschelen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:195.48.58.75 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.48.58.75 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ruetschelen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruetschelen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruetschelen.ch"
+ ],
+ "guess":[
+ "ruetschelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"341":{
"bfs":"341",
"name":"Schwarzhäusern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schwarzhaeusern.ch",
"mx":[
"schwarzhaeusern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schwarzhaeusern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwarzhaeusern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwarzhaeusern.ch"
+ ],
+ "guess":[
+ "schwarzhaeusern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"342":{
"bfs":"342",
"name":"Thunstetten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"thunstetten.ch",
"mx":[
"thunstetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:194.56.218.155 ip4:194.56.218.156 include:_spf.i-web.ch include:mx.dvbern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:194.56.218.155 ip4:194.56.218.156 include:_spf.i-web.ch include:mx.dvbern.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX thunstetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.thunstetten.ch CNAME → selector1-thunstetten-ch._domainkey.ewgthunstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.thunstetten.ch CNAME → selector2-thunstetten-ch._domainkey.ewgthunstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thunstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thunstetten.ch"
+ ],
+ "guess":[
+ "thunstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"344":{
"bfs":"344",
"name":"Ursenbach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ursenbach.ch",
"mx":[
"ursenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ursenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ursenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ursenbach.ch"
+ ],
+ "guess":[
+ "ursenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"345":{
"bfs":"345",
"name":"Wynau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wynau.ch",
"mx":[
"mail.wynau.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a ip4:213.221.240.202 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a ip4:213.221.240.202 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wynau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wynau.ch"
+ ],
+ "guess":[
+ "wynau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"351":{
"bfs":"351",
"name":"Bern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bern.ch",
"mx":[
"bern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:193.247.33.1/32 ip4:193.247.33.3/32 ip4:193.247.35.27/32 ip4:92.42.184.212/32 ip4:92.42.184.216/32 ip4:138.188.166.160/27 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:193.247.33.1/32 ip4:193.247.33.3/32 ip4:193.247.35.27/32 ip4:92.42.184.212/32 ip4:92.42.184.216/32 ip4:138.188.166.160/27 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bern.ch CNAME → selector1-bern-ch._domainkey.bernch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bern.ch CNAME → selector2-bern-ch._domainkey.bernch.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bern.ch"
+ ],
+ "guess":[
+ "bern.ch",
+ "stadt-bern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"352":{
"bfs":"352",
"name":"Bolligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bolligen.ch",
"mx":[
"mail.format-ag.ch",
@@ -3514,107 +12109,347 @@
],
"spf":"v=spf1 a mx ip4:212.243.26.162 include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:212.243.26.162 include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bolligen.ch"
+ ],
+ "guess":[
+ "bolligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"353":{
"bfs":"353",
"name":"Bremgarten bei Bern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"3047.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 a:smtp.iz-net.ch ip4:80.74.142.120 include:spf.protection.outlook.com include:_spf.talus.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:smtp.iz-net.ch ip4:80.74.142.120 include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_cname":"www.3047.ch",
- "autodiscover_srv":"exchange.iz-region-bern.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "3047.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "3047.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[
+ "website_mismatch"
+ ]
},
"354":{
"bfs":"354",
"name":"Kirchlindach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kirchlindach.ch",
"mx":[
"kirchlindach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kirchlindach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kirchlindach.ch CNAME → selector1-kirchlindach-ch._domainkey.gemeindekirchlindach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kirchlindach.ch CNAME → selector2-kirchlindach-ch._domainkey.gemeindekirchlindach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kirchlindach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kirchlindach.ch"
+ ],
+ "guess":[
+ "kirchlindach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"355":{
"bfs":"355",
"name":"Köniz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"koeniz.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 a:smtp.trainingplus.ch mx ip4:194.56.218.181 ip4:194.56.218.131 ip4:193.135.56.6 include:spf.mail.weloveyou.systems include:spf.imc-hosting.com include:spf.abxsec.com include:_spf.tophost.ch include:spf.iz-net.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:smtp.trainingplus.ch mx ip4:194.56.218.181 ip4:194.56.218.131 ip4:193.135.56.6 include:spf.mail.weloveyou.systems include:spf.imc-hosting.com include:spf.abxsec.com include:_spf.tophost.ch include:spf.iz-net.ch -all v=spf1 ip4:116.203.100.62 ip4:159.69.40.100 ?all v=spf1 ip4:4.231.234.136 ip4:4.231.171.210 ip4:52.178.135.21 ip4:20.107.242.47 ip4:4.197.4.76 ip4:85.215.73.51 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:217.11.219.137 ip4:212.103.81.254 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.iz-region-bern.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "koeniz.ch"
+ ],
+ "guess":[
+ "koeniz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"356":{
"bfs":"356",
"name":"Muri bei Bern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"muri-guemligen.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 a:smtp.iz-net.ch ip4:193.135.56.6 include:spf.protection.outlook.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:smtp.iz-net.ch ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.iz-region-bern.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muri-guemligen.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"357":{
"bfs":"357",
"name":"Oberbalm",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberbalm.ch",
"mx":[
"mail.format-ag.ch",
"mail.tankred.ch"
],
"spf":"v=spf1 a:mrmuensingen01.muensingen.ch include:spf.protection.outlook.com include:_spf.talus.ch include:_spf.i-web.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 a:mrmuensingen01.muensingen.ch include:spf.protection.outlook.com include:_spf.talus.ch include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberbalm.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberbalm.ch"
+ ],
+ "guess":[
+ "oberbalm.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"358":{
"bfs":"358",
"name":"Stettlen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"stettlen.ch",
"mx":[
"mail.format-ag.ch",
@@ -3623,18 +12458,34 @@
],
"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch. include:_spf.talus.ch. include:_spf.i-web.ch. -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mrmuensingen01.muensingen.ch. include:_spf.talus.ch. include:_spf.i-web.ch. -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stettlen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stettlen.ch"
+ ],
+ "guess":[
+ "stettlen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"359":{
"bfs":"359",
"name":"Vechigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"vechigen.ch",
"mx":[
"mail.format-ag.ch",
@@ -3642,17 +12493,45 @@
"mail.vechigen.ch"
],
"spf":"v=spf1 mx ip4:212.243.26.162 a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:212.243.26.162 a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 3303,
- 202035
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vechigen.ch"
+ ],
+ "guess":[
+ "vechigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"360":{
"bfs":"360",
"name":"Wohlen bei Bern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wohlen-be.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -3660,87 +12539,403 @@
],
"spf":"v=spf1 a mx ip4:62.2.105.192/29 ip4:178.174.41.248/30 include:_spf_eucentral1.prod.hydra.sophos.com include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:62.2.105.192/29 ip4:178.174.41.248/30 include:_spf_eucentral1.prod.hydra.sophos.com include:_spf.talus.ch -all v=spf1 ip4:94.140.18.0/24 ip4:35.159.27.8/30 ip4:35.159.27.28/30 ip4:35.159.27.32/30 ip4:35.159.27.48/29 ip4:35.159.27.160/28 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "gateway":"sophos",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"utm198.wohlen-be.ch",
- "autodiscover_srv":"owa.wohlen-be.ch"
- }
+ "gateway":"sophos",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wohlen-be.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"361":{
"bfs":"361",
"name":"Zollikofen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"zollikofen.ch",
"mx":[
"zollikofen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:62.2.84.176/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ip4:62.2.84.176/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zollikofen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zollikofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zollikofen.ch"
+ ],
+ "guess":[
+ "zollikofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"362":{
"bfs":"362",
"name":"Ittigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ittigen.ch",
"mx":[
"mail.ittigen.ch"
],
"spf":"v=spf1 mx mx:hin.ch ip4:194.209.116.36 include:_spf.i-web.ch include:spf.umantis.com include:_spf.psm.knowbe4.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx mx:hin.ch ip4:194.209.116.36 include:_spf.i-web.ch include:spf.umantis.com include:_spf.psm.knowbe4.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 3303
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ittigen.ch CNAME → selector1-ittigen-ch._domainkey.ittigench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ittigen.ch CNAME → selector2-ittigen-ch._domainkey.ittigench.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ittigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ittigen.ch"
+ ],
+ "guess":[
+ "ittigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"363":{
"bfs":"363",
"name":"Ostermundigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ostermundigen.ch",
"mx":[
"ostermundigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:212.243.176.142 include:spf.abacuscity.ch mx:talus.ch a:mail.codx.ch include:spf.protection.outlook.com include:spf.psm.knowbe4.com ip4:193.135.144.129 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:212.243.176.142 include:spf.abacuscity.ch mx:talus.ch a:mail.codx.ch include:spf.protection.outlook.com include:spf.psm.knowbe4.com ip4:193.135.144.129 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ostermundigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ostermundigen.ch"
+ ],
+ "guess":[
+ "ostermundigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"371":{
"bfs":"371",
"name":"Biel/Bienne",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"biel-bienne.ch",
"mx":[
"mx1.biel-bienne.ch",
"mx2.biel-bienne.ch"
],
- "spf":"v=spf1 mx ip4:194.209.196.58 ip4:194.209.196.59 include:spf.umantis.com include:spf1.ne.ch include:spf.protection.outlook.com a:softec-12.interconnect.ch a:mail.quorumsoftware.ch a:smtp.mailomat.cloud ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:194.209.196.58 ip4:194.209.196.59 include:spf.umantis.com include:spf1.ne.ch include:spf.protection.outlook.com a:softec-12.interconnect.ch a:mail.quorumsoftware.ch a:smtp.mailomat.cloud ~all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 3303
- ]
+ "spf":"v=spf1 mx ip4:194.209.196.58 ip4:194.209.196.59 include:spf.umantis.com include:spf1.ne.ch include:spf.protection.outlook.com a:mail.quorumsoftware.ch ~all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.biel-bienne.ch CNAME → selector1-bielbienne-ch01b._domainkey.bielbienne.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.biel-bienne.ch CNAME → selector2-bielbienne-ch01b._domainkey.bielbienne.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "biel-bienne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "biel-bienne.ch"
+ ],
+ "guess":[
+ "biel-bienne.ch",
+ "bielbienne.ch",
+ "bienne.ch",
+ "stadt-biel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"372":{
"bfs":"372",
- "name":"Leubringen",
- "canton":"",
+ "name":"Evilard",
+ "canton":"Kanton Bern",
"domain":"evilard.ch",
"mx":[
"mail.format-ag.ch",
@@ -3750,18 +12945,38 @@
],
"spf":"v=spf1 a mx include:_spf.talus.ch include:mx.dvbern.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:_spf.talus.ch include:mx.dvbern.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "evilard.ch"
+ ],
+ "guess":[
+ "evilard.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"381":{
"bfs":"381",
"name":"Arch",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"arch-be.ch",
"mx":[
"mail.format-ag.ch",
@@ -3771,37 +12986,81 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arch-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arch-be.ch"
+ ],
+ "guess":[
+ "arch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"382":{
"bfs":"382",
"name":"Büetigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bueetigen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bueetigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bueetigen.ch"
+ ],
+ "guess":[
+ "bueetigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"383":{
"bfs":"383",
"name":"Büren an der Aare",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bueren.ch",
"mx":[
"mail.format-ag.ch",
@@ -3811,142 +13070,559 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "be.ch",
+ "bueren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bueren.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"385":{
"bfs":"385",
"name":"Diessbach bei Büren",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"diessbach.ch",
"mx":[
"diessbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa2.oneaccess.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX diessbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "diessbach.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"386":{
"bfs":"386",
"name":"Dotzigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"dotzigen.ch",
"mx":[
"dotzigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:smtp.iz-net.ch ip4:80.74.142.120 ip4:91.212.152.32 include:spf.protection.outlook.com a mx include:_spf.sui-inter.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:smtp.iz-net.ch ip4:80.74.142.120 ip4:91.212.152.32 include:spf.protection.outlook.com a mx include:_spf.sui-inter.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dotzigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dotzigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dotzigen.ch"
+ ],
+ "guess":[
+ "dotzigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"387":{
"bfs":"387",
- "name":"Lengnau",
- "canton":"",
+ "name":"Lengnau (BE)",
+ "canton":"Kanton Bern",
"domain":"lengnau.ch",
"mx":[
"lengnau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:securemail.lengnau.ch ip4:213.221.215.137 include:spf.protection.outlook.com include:spf.webstyle.ch include:_spf.sui-inter.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:securemail.lengnau.ch ip4:213.221.215.137 include:spf.protection.outlook.com include:spf.webstyle.ch include:_spf.sui-inter.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:192.162.28.0/24 ip4:95.130.17.0/24 include:_spf.sui-inter.net ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lengnau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lengnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lengnau.ch"
+ ],
+ "guess":[
+ "lengnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"388":{
"bfs":"388",
"name":"Leuzigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"leuzigen.ch",
"mx":[
"leuzigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leuzigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leuzigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leuzigen.ch"
+ ],
+ "guess":[
+ "leuzigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"389":{
"bfs":"389",
"name":"Meienried",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"meienried.ch",
"mx":[
"meienried-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX meienried-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meienried.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meienried.ch"
+ ],
+ "guess":[
+ "meienried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"390":{
"bfs":"390",
"name":"Meinisberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"meinisberg.ch",
"mx":[
"mail.meinisberg.ch"
],
"spf":"v=spf1 include:_spf.smtp.com include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.smtp.com include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meinisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meinisberg.ch"
+ ],
+ "guess":[
+ "meinisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"391":{
"bfs":"391",
"name":"Oberwil bei Büren",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberwil-bueren.ch",
"mx":[
"oberwilbueren-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberwilbueren-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberwil-bueren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberwil-bueren.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"392":{
"bfs":"392",
"name":"Pieterlen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"pieterlen.ch",
"mx":[
"mail.format-ag.ch",
@@ -3954,90 +13630,354 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pieterlen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pieterlen.ch"
+ ],
+ "guess":[
+ "pieterlen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"393":{
"bfs":"393",
"name":"Rüti bei Büren",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ruetibeibueren.ch",
"mx":[
"ruetibeibueren-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.webstyle.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.webstyle.ch include:spf.protection.outlook.com -all v=spf1 ip4:192.162.28.0/24 ip4:95.130.17.0/24 include:_spf.sui-inter.net ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ruetibeibueren-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ruetibeibueren.ch"
+ ],
+ "guess":[
+ "ruetibeibueren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"394":{
"bfs":"394",
"name":"Wengi",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wengi-be.ch",
"mx":[
"wengibe-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wengibe-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wengi-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wengi-be.ch"
+ ],
+ "guess":[
+ "wengi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"401":{
"bfs":"401",
"name":"Aefligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"aefligen.ch",
"mx":[
"aefligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aefligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aefligen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aefligen.ch"
+ ],
+ "guess":[
+ "aefligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"402":{
"bfs":"402",
"name":"Alchenstorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"alchenstorf.ch",
"mx":[
"alchenstorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX alchenstorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "alchenstorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "alchenstorf.ch"
+ ],
+ "guess":[
+ "alchenstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"403":{
"bfs":"403",
"name":"Bäriswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"baeriswil.ch",
"mx":[
"mail.format-ag.ch",
@@ -4047,74 +13987,245 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "baeriswil.ch"
+ ],
+ "guess":[
+ "baeriswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"404":{
"bfs":"404",
"name":"Burgdorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"burgdorf.ch",
"mx":[
"burgdorf-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:spf.tmes.trendmicro.com include:_spf.talus.ch include:spf.webstyle.ch include:spf.abacuscity.ch include:spf.zic-network.ch include:_spf.ch.seppmail.cloud ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.tmes.trendmicro.com include:_spf.talus.ch include:spf.webstyle.ch include:spf.abacuscity.ch include:spf.zic-network.ch include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:18.208.22.64/26 ip4:18.208.22.128/25 ip4:18.185.115.128/26 ip4:18.185.115.0/25 ip4:13.238.202.0/25 ip4:13.238.202.128/26 ip4:18.176.203.128/25 ip4:13.213.174.128/25 ip4:18.177.156.0/25 ip4:13.213.220.0/25 include:spfb.tmes.trendmicro.com ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:192.162.28.0/24 ip4:95.130.17.0/24 include:_spf.sui-inter.net ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:107.22.223.18 ip4:52.70.252.86 ip4:35.156.245.132 ip4:18.156.0.20 ip4:3.72.196.143 ip4:54.146.4.63 ip4:54.174.82.86 ip6:2600:1f18:42fe:5c00::/60 ip6:2a05:d014:10e:d900::/60 ip6:2406:da1c:1ef6:1c00::/60 include:spfc.tmes.trendmicro.com ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:18.188.9.192/26 ip4:18.188.239.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:15.168.56.0/25 ip4:15.168.49.64/26 ip4:15.168.56.128/26 ip4:18.97.0.160/27 ip4:18.96.32.128/27 ip6:2406:da14:194d:a200::/60 ip6:2406:da18:4ed:be00::/60 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"webmail.burgdorf.ch"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "burgdorf.ch"
+ ],
+ "guess":[
+ "burgdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"405":{
"bfs":"405",
"name":"Ersigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ersigen.ch",
"mx":[
"ersigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:_spf_exoscale.4teamwork.ch include:spf.protection.outlook.com ip4:212.103.64.0/19 ip4:193.43.183.0/24 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf_exoscale.4teamwork.ch include:spf.protection.outlook.com ip4:212.103.64.0/19 ip4:193.43.183.0/24 -all v=spf1 include:_spf1_exoscale.4teamwork.ch include:_spf_hermes.4teamwork.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.19.31.35 ip4:159.100.250.111 ip4:159.100.252.124 ip4:159.100.245.197 ip4:185.19.31.7 ip4:159.100.253.101 ip4:89.145.165.189 v=spf1 ip4:89.145.164.168 ip4:194.182.188.128 ip4:159.100.249.69",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ersigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ersigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ersigen.ch"
+ ],
+ "guess":[
+ "ersigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"406":{
"bfs":"406",
"name":"Hasle bei Burgdorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hasle.ch",
"mx":[
"hasle-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hasle-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hasle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hasle.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"407":{
"bfs":"407",
"name":"Heimiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"heimiswil.ch",
"mx":[
"mail.format-ag.ch",
@@ -4124,84 +14235,272 @@
],
"spf":"v=spf1 a mx a:mail.heimiswil.ch ip4:146.4.53.246 ip4:77.75.112.17 ip4:77.75.112.37 include:_spf.sui-inter.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx a:mail.heimiswil.ch ip4:146.4.53.246 ip4:77.75.112.17 ip4:77.75.112.37 include:_spf.sui-inter.net -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "heimiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "heimiswil.ch"
+ ],
+ "guess":[
+ "heimiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"408":{
"bfs":"408",
"name":"Hellsau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hellsau.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:egeko.ch include:_spf.i-web.ch include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:egeko.ch include:_spf.i-web.ch include:rzmail.hi-ag.ch -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hellsau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hellsau.ch"
+ ],
+ "guess":[
+ "hellsau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"409":{
"bfs":"409",
"name":"Hindelbank",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hindelbank.ch",
"mx":[
"burgdorf.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 a mx include:_spf.talus.ch include:spf.tmes.trendmicro.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:_spf.talus.ch include:spf.tmes.trendmicro.com ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:18.208.22.64/26 ip4:18.208.22.128/25 ip4:18.185.115.128/26 ip4:18.185.115.0/25 ip4:13.238.202.0/25 ip4:13.238.202.128/26 ip4:18.176.203.128/25 ip4:13.213.174.128/25 ip4:18.177.156.0/25 ip4:13.213.220.0/25 include:spfb.tmes.trendmicro.com ~all v=spf1 ip4:107.22.223.18 ip4:52.70.252.86 ip4:35.156.245.132 ip4:18.156.0.20 ip4:3.72.196.143 ip4:54.146.4.63 ip4:54.174.82.86 ip6:2600:1f18:42fe:5c00::/60 ip6:2a05:d014:10e:d900::/60 ip6:2406:da1c:1ef6:1c00::/60 include:spfc.tmes.trendmicro.com ~all v=spf1 ip4:18.188.9.192/26 ip4:18.188.239.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:15.168.56.0/25 ip4:15.168.49.64/26 ip4:15.168.56.128/26 ip4:18.97.0.160/27 ip4:18.96.32.128/27 ip6:2406:da14:194d:a200::/60 ip6:2406:da18:4ed:be00::/60 ~all",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"trendmicro",
- "mx_asns":[
- 16509
- ]
+ "sources_detail":{
+ "scrape":[
+ "hindelbank.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hindelbank.ch"
+ ],
+ "guess":[
+ "hindelbank.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"410":{
"bfs":"410",
"name":"Höchstetten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hoechstetten.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:_spf.i-web.ch include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:_spf.i-web.ch include:rzmail.hi-ag.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hoechstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hoechstetten.ch"
+ ],
+ "guess":[
+ "hoechstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"411":{
"bfs":"411",
"name":"Kernenried",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kernenried.ch",
"mx":[
"mail.kernenried.ch"
],
"spf":"v=spf1 a:kernenried.ch mx ~all",
"provider":"independent",
- "mx_asns":[
- 24940
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "kernenried.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kernenried.ch"
+ ],
+ "guess":[
+ "kernenried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"412":{
"bfs":"412",
- "name":"Kirchberg",
- "canton":"",
+ "name":"Kirchberg (BE)",
+ "canton":"Kanton Bern",
"domain":"kirchberg-be.ch",
"mx":[
"mail.format-ag.ch",
@@ -4211,72 +14510,291 @@
],
"spf":"v=spf1 a mx ip4:213.221.218.63 include:_spf.i-web.ch include:mailrelay.ecolize.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:213.221.218.63 include:_spf.i-web.ch include:mailrelay.ecolize.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kirchberg-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kirchberg-be.ch"
+ ],
+ "guess":[
+ "kirchberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"413":{
"bfs":"413",
"name":"Koppigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"koppigen.ch",
"mx":[
"koppigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX koppigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "koppigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "koppigen.ch"
+ ],
+ "guess":[
+ "koppigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"414":{
"bfs":"414",
"name":"Krauchthal",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"krauchthal.ch",
"mx":[
"krauchthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch a:mx.tas.activeguard.cloud -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch a:mx.tas.activeguard.cloud -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX krauchthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.krauchthal.ch CNAME → selector1-krauchthal-ch._domainkey.gemeindekrauchthal.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.krauchthal.ch CNAME → selector2-krauchthal-ch._domainkey.gemeindekrauchthal.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "krauchthal.ch"
+ ],
+ "guess":[
+ "krauchthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"415":{
"bfs":"415",
"name":"Lyssach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lyssach.ch",
"mx":[
"lyssach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lyssach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lyssach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lyssach.ch"
+ ],
+ "guess":[
+ "gemeinde-lyssach.ch",
+ "lyssach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"418":{
"bfs":"418",
"name":"Oberburg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberburg.ch",
"mx":[
"mail.format-ag.ch",
@@ -4284,186 +14802,767 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oberburg.ch"
+ ],
+ "guess":[
+ "oberburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"420":{
"bfs":"420",
"name":"Rüdtligen-Alchenflüh",
- "canton":"",
- "domain":"hgra.ch",
+ "canton":"Kanton Bern",
+ "domain":"rual.ch",
"mx":[
- "mail.hgra.ch"
+ "mail.format-ag.ch",
+ "mail.tankred.ch"
],
- "spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
+ "spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "rual.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"421":{
"bfs":"421",
"name":"Rumendingen",
- "canton":"",
- "domain":"rumendingen.ch",
+ "canton":"Kanton Bern",
+ "domain":"wynigen.ch",
"mx":[
- "mx.swizzonic-mail.ch"
+ "wynigen-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 a mx include:spf.swizzonic-mail.ch ~all",
- "provider":"independent",
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.liveapp.ch",
- "autodiscover_srv":"owa.liveapp.ch"
- }
+ "spf":"v=spf1 mx a:remote.wynigen.ch a:webext02.i-web.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wynigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "wynigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"422":{
"bfs":"422",
"name":"Rüti bei Lyssach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ruetibeilyssach.ch",
- "mx":[],
- "spf":"",
+ "mx":[
+ "mta-gw.infomaniak.ch"
+ ],
+ "spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "autodiscover":{
- "autodiscover_cname":"web.jimdofree.com.cdn.cloudflare.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ruetibeilyssach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"423":{
"bfs":"423",
"name":"Willadingen",
- "canton":"",
- "domain":"willadingen.ch",
+ "canton":"Kanton Bern",
+ "domain":"koppigen.ch",
"mx":[
- "willadingen-ch.mail.protection.outlook.com"
+ "koppigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX koppigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "koppigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"424":{
"bfs":"424",
"name":"Wynigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wynigen.ch",
"mx":[
"wynigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:remote.wynigen.ch a:webext02.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:remote.wynigen.ch a:webext02.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"remote.wynigen.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wynigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wynigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wynigen.ch"
+ ],
+ "guess":[
+ "wynigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"431":{
"bfs":"431",
"name":"Corgémont",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"corgemont.ch",
"mx":[
"corgemont-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:10.4.36.0/24 ip4:83.166.143.0/24 ip4:164.128.163.171 ip4:185.48.144.218 include:spf.infomaniak.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:10.4.36.0/24 ip4:83.166.143.0/24 ip4:164.128.163.171 ip4:185.48.144.218 include:spf.infomaniak.ch include:spf.protection.outlook.com ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corgemont-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.corgemont.ch CNAME → selector1-corgemont-ch._domainkey.corgemont.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.corgemont.ch CNAME → selector2-corgemont-ch._domainkey.corgemont.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "corgemont.ch"
+ ],
+ "guess":[
+ "corgemont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"432":{
"bfs":"432",
"name":"Cormoret",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"cormoret.ch",
"mx":[
"cormoret-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cormoret-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "cormoret.ch"
+ ],
+ "guess":[
+ "cormoret.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"433":{
"bfs":"433",
"name":"Cortébert",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"cortebert.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cortebert.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cortebert.ch"
+ ],
+ "guess":[
+ "cortebert.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"434":{
"bfs":"434",
"name":"Courtelary",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"courtelary.ch",
"mx":[
"courtelary-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX courtelary-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "courtelary.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "courtelary.ch"
+ ],
+ "guess":[
+ "courtelary.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"435":{
"bfs":"435",
"name":"La Ferrière",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"laferriere.ch",
"mx":[
"laferriere-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.34.136.220 ip4:212.147.29.100 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.34.136.220 ip4:212.147.29.100 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laferriere-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "laferriere.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "laferriere.ch"
+ ],
+ "guess":[
+ "laferriere.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"437":{
"bfs":"437",
"name":"Mont-Tramelan",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"mont-tramelan.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -4473,17 +15572,27 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 ?all",
"provider":"independent",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mails.mont-tramelan.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "mont-tramelan.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mont-tramelan.ch"
+ ],
+ "guess":[
+ "mont-tramelan.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"438":{
"bfs":"438",
"name":"Orvin",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"orvin.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -4493,105 +15602,408 @@
],
"spf":"v=spf1 ip4:46.140.125.162 include:mx.dvbern.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:46.140.125.162 include:mx.dvbern.ch -all v=spf1 ip4:185.125.165.24/31 -all",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
"gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
- ]
+ "sources_detail":{
+ "scrape":[
+ "orvin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "orvin.ch"
+ ],
+ "guess":[
+ "orvin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"441":{
"bfs":"441",
- "name":"Renan",
- "canton":"",
+ "name":"Renan (BE)",
+ "canton":"Kanton Bern",
"domain":"renan.ch",
"mx":[
"renan-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX renan-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.renan.ch CNAME → selector1-renan-ch._domainkey.renanberne.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.renan.ch CNAME → selector2-renan-ch._domainkey.renanberne.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "renan.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "renan.ch"
+ ],
+ "guess":[
+ "renan.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"442":{
"bfs":"442",
- "name":"Romont",
- "canton":"",
+ "name":"Romont (BE)",
+ "canton":"Kanton Bern",
"domain":"romont-jb.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "romont-jb.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "romont-jb.ch"
+ ],
+ "guess":[
+ "romont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"443":{
"bfs":"443",
"name":"Saint-Imier",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"saint-imier.ch",
"mx":[
"mail.cleanmail.ch"
],
"spf":"v=spf1 ip4:62.2.112.210 -all",
"provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
"gateway":"cleanmail",
- "mx_asns":[
- 15547
- ]
+ "sources_detail":{
+ "scrape":[
+ "saint-imier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saint-imier.ch"
+ ],
+ "guess":[
+ "saint-imier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"444":{
"bfs":"444",
"name":"Sonceboz-Sombeval",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sonceboz.ch",
"mx":[
"sonceboz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:185.48.144.218 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:185.48.144.218 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sonceboz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sonceboz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sonceboz.ch"
+ ],
+ "guess":[
+ "sonceboz-sombeval.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"445":{
"bfs":"445",
"name":"Sonvilier",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sonvilier.ch",
"mx":[
"sonvilier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sonvilier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.sonvilier.ch CNAME → selector1-sonvilier-ch._domainkey.sonvilier.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.sonvilier.ch CNAME → selector2-sonvilier-ch._domainkey.sonvilier.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sonvilier.ch"
+ ],
+ "guess":[
+ "sonvilier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"446":{
"bfs":"446",
"name":"Tramelan",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"tramelan.ch",
"mx":[
"mx140.zline.ch",
@@ -4600,56 +16012,184 @@
],
"spf":"v=spf1 ip4:83.166.134.44 ip4:109.164.210.48/28 include:spf.zline.ch include:spf.mandrillapp.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:83.166.134.44 ip4:109.164.210.48/28 include:spf.zline.ch include:spf.mandrillapp.com -all v=spf1 ip4:212.74.176.0/23 ip4:212.74.179.0/24 ip4:84.16.71.224/28 ip4:84.16.71.240/29 ip4:84.16.71.184/29 ip4:212.74.141.0/27 ip4:46.140.65.240/29 ip4:46.14.220.40 ip4:46.14.19.170 ip4:80.83.52.48/29 ip4:195.15.223.62 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 12651,
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.tramelan.ch",
- "autodiscover_srv":"mail.tramelan.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tramelan.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tramelan.ch"
+ ],
+ "guess":[
+ "tramelan.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"448":{
"bfs":"448",
"name":"Villeret",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"villeret.ch",
"mx":[
"villeret-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villeret-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.villeret.ch CNAME → selector1-villeret-ch._domainkey.villeret.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.villeret.ch CNAME → selector2-villeret-ch._domainkey.villeret.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "villeret.ch"
+ ],
+ "guess":[
+ "villeret.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"449":{
"bfs":"449",
"name":"Sauge",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sauge-jb.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sauge-jb.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sauge-jb.ch"
+ ],
+ "guess":[
+ "sauge.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"450":{
"bfs":"450",
"name":"Péry-La Heutte",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"pery-laheutte.ch",
"mx":[
"mx140.zline.ch",
@@ -4657,38 +16197,127 @@
"mx20.zline.ch"
],
"spf":"v=spf1 ip4:185.48.146.91 ip4:185.48.144.218 include:spf.protection.outlook.com include:spf.zline.ch include:spf.infomaniak.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.48.146.91 ip4:185.48.144.218 include:spf.protection.outlook.com include:spf.zline.ch include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.74.176.0/23 ip4:212.74.179.0/24 ip4:84.16.71.224/28 ip4:84.16.71.240/29 ip4:84.16.71.184/29 ip4:212.74.141.0/27 ip4:46.140.65.240/29 ip4:46.14.220.40 ip4:46.14.19.170 ip4:80.83.52.48/29 ip4:195.15.223.62 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 12651,
- 29222
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.pery-laheutte.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pery-laheutte.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pery-laheutte.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"491":{
"bfs":"491",
"name":"Brüttelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bruettelen.ch",
"mx":[
"bruettelen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bruettelen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bruettelen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bruettelen.ch"
+ ],
+ "guess":[
+ "bruettelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"492":{
"bfs":"492",
"name":"Erlach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"erlach.ch",
"mx":[
"mail.format-ag.ch",
@@ -4696,73 +16325,235 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "erlach.ch"
+ ],
+ "guess":[
+ "erlach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"493":{
"bfs":"493",
"name":"Finsterhennen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"finsterhennen.ch",
"mx":[
"finsterhennen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX finsterhennen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "finsterhennen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "finsterhennen.ch"
+ ],
+ "guess":[
+ "finsterhennen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"494":{
"bfs":"494",
"name":"Gals",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gals.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 a mx include:spf.customer.swiss-egov.cloud ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx include:spf.customer.swiss-egov.cloud ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gals.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gals.ch"
+ ],
+ "guess":[
+ "gals.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"495":{
"bfs":"495",
"name":"Gampelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gampelen.ch",
"mx":[
"gampelen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gampelen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gampelen.ch"
+ ],
+ "guess":[
+ "gampelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"496":{
"bfs":"496",
"name":"Ins",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ins.ch",
"mx":[
"mail.format-ag.ch",
@@ -4772,166 +16563,547 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ins.ch"
+ ],
+ "guess":[
+ "ins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"497":{
"bfs":"497",
"name":"Lüscherz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"luescherz.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:88.99.160.53 -all -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:88.99.160.53 -all -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "luescherz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luescherz.ch"
+ ],
+ "guess":[
+ "luescherz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"498":{
"bfs":"498",
"name":"Müntschemier",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"muentschemier.ch",
"mx":[
"muentschemier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:tiberius.sui-inter.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:tiberius.sui-inter.net include:spf.protection.outlook.com -all v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muentschemier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muentschemier.ch"
+ ],
+ "guess":[
+ "muentschemier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"499":{
"bfs":"499",
"name":"Siselen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"siselen.ch",
"mx":[
"siselen-ch.mail.eo.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "siselen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "siselen.ch"
+ ],
+ "guess":[
+ "siselen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"500":{
"bfs":"500",
"name":"Treiten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"treiten.ch",
"mx":[
"treiten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX treiten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "treiten.ch"
+ ],
+ "guess":[
+ "treiten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"501":{
"bfs":"501",
"name":"Tschugg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"tschugg.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx ip4:88.99.160.53 include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:88.99.160.53 include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tschugg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tschugg.ch"
+ ],
+ "guess":[
+ "tschugg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"502":{
"bfs":"502",
"name":"Vinelz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"vinelz.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:88.99.160.53 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:88.99.160.53 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vinelz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vinelz.ch"
+ ],
+ "guess":[
+ "vinelz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"533":{
"bfs":"533",
"name":"Bätterkinden",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"baetterkinden.ch",
"mx":[
"baetterkinden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com include:_spf.sui-inter.net +mx ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com include:_spf.sui-inter.net +mx ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX baetterkinden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "baetterkinden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baetterkinden.ch"
+ ],
+ "guess":[
+ "baetterkinden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"535":{
"bfs":"535",
"name":"Deisswil bei Münchenbuchsee",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"deisswil.ch",
"mx":[
"deisswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com include:spf.cloudrexx.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com include:spf.cloudrexx.com ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:80.74.136.182 ip4:80.74.128.231 ip4:80.74.128.204 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX deisswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "deisswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "deisswil.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"538":{
"bfs":"538",
"name":"Fraubrunnen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"fraubrunnen.ch",
"mx":[
"mail.format-ag.ch",
@@ -4939,18 +17111,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fraubrunnen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fraubrunnen.ch"
+ ],
+ "guess":[
+ "fraubrunnen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"540":{
"bfs":"540",
"name":"Jegenstorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"jegenstorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -4958,55 +17152,206 @@
],
"spf":"v=spf1 a mx a:mail.codx.ch include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx a:mail.codx.ch include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "jegenstorf.ch"
+ ],
+ "guess":[
+ "jegenstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"541":{
"bfs":"541",
"name":"Iffwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"iffwil.ch",
"mx":[
"iffwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX iffwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "iffwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "iffwil.ch"
+ ],
+ "guess":[
+ "iffwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"543":{
"bfs":"543",
"name":"Mattstetten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"mattstetten.ch",
"mx":[
"mattstetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail01.talus.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mattstetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.mattstetten.ch CNAME → selector1-mattstetten-ch._domainkey.mattstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.mattstetten.ch CNAME → selector2-mattstetten-ch._domainkey.mattstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mattstetten.ch"
+ ],
+ "guess":[
+ "mattstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"544":{
"bfs":"544",
"name":"Moosseedorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"moosseedorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -5014,18 +17359,32 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "moosseedorf.ch"
+ ],
+ "guess":[
+ "moosseedorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"546":{
"bfs":"546",
"name":"Münchenbuchsee",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"muenchenbuchsee.ch",
"mx":[
"mail.format-ag.ch",
@@ -5033,18 +17392,38 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muenchenbuchsee.ch"
+ ],
+ "guess":[
+ "muenchenbuchsee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"551":{
"bfs":"551",
"name":"Urtenen-Schönbühl",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"urtenen-schoenbuehl.ch",
"mx":[
"mail.format-ag.ch",
@@ -5052,18 +17431,34 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "urtenen-schoenbuehl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "urtenen-schoenbuehl.ch"
+ ],
+ "guess":[
+ "urtenen-schoenbuehl.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"552":{
"bfs":"552",
"name":"Utzenstorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"utzenstorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -5073,54 +17468,188 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.sui-inter.net +mx ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.sui-inter.net +mx ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "utzenstorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "utzenstorf.ch"
+ ],
+ "guess":[
+ "utzenstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"553":{
"bfs":"553",
"name":"Wiggiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wiggiswil.ch",
"mx":[
"wiggiswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wiggiswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wiggiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wiggiswil.ch"
+ ],
+ "guess":[
+ "wiggiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"554":{
"bfs":"554",
"name":"Wiler bei Utzenstorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wiler.ch",
"mx":[
"wiler-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wiler-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wiler.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"556":{
"bfs":"556",
"name":"Zielebach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"zielebach.ch",
"mx":[
"mx1.jimdo.com",
@@ -5128,73 +17657,277 @@
],
"spf":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 ip4:108.166.43.0/24 ip4:146.20.86.8 ip4:146.20.161.0/25 ip4:161.47.34.7 ip4:173.203.187.0/25 ip4:184.106.54.0/25 ip4:204.232.172.40 ~all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "mx_asns":[
- 19994,
- 27357
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.emailsrvr.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "zielebach.ch"
+ ],
+ "guess":[
+ "zielebach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"557":{
"bfs":"557",
- "name":"Zuzwil",
- "canton":"",
+ "name":"Zuzwil (BE)",
+ "canton":"Kanton Bern",
"domain":"zuzwil-be.ch",
"mx":[
"zuzwilbe-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zuzwilbe-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "zuzwil-be.ch"
+ ],
+ "guess":[
+ "zuzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"561":{
"bfs":"561",
"name":"Adelboden",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"3715.ch",
"mx":[
"3715-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX 3715-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.3715.ch CNAME → selector1-3715-ch._domainkey.3715.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.3715.ch CNAME → selector2-3715-ch._domainkey.3715.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "3715.ch"
+ ],
+ "guess":[
+ "adelboden.ch"
+ ]
+ },
+ "resolve_flags":[
+ "website_mismatch"
+ ]
},
"562":{
"bfs":"562",
"name":"Aeschi bei Spiez",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"aeschi.ch",
"mx":[
"aeschi-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +a:scorpius.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +a:scorpius.ch include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aeschi-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.aeschi.ch CNAME → selector1-aeschi-ch._domainkey.aeschibspiez.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.aeschi.ch CNAME → selector2-aeschi-ch._domainkey.aeschibspiez.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "aeschi.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"563":{
"bfs":"563",
"name":"Frutigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"frutigen.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -5204,41 +17937,110 @@
],
"spf":"v=spf1 redirect=frutigen.ch.spf.hornetdmarc.com",
"provider":"microsoft",
- "spf_resolved":"v=spf1 redirect=frutigen.ch.spf.hornetdmarc.com v=spf1 mx:frutigen.ch a:frutigen.ch include:spf.hornetsecurity.com include:be-welcome.ch include:_spf.talus.ch ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all v=spf1 +mx +a include:_spf.mail.hostserv.eu ip4:88.99.185.251 include:spf.protection.outlook.com include:eu.zcsend.net ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 a:mailhost.hostserv.eu a:mailhost.hosttech.eu include:_spf.v4.hosttech.eu include:_spf.v6.1.hosttech.eu include:_spf.v6.2.hosttech.eu ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:31.186.226.160/27 ip4:185.20.211.0/25 ip4:185.172.199.0/25 ip4:91.103.152.0/24 ~all v=spf1 ip4:193.203.253.22 ip4:193.203.253.23 ip4:193.203.253.24 ip4:193.203.253.25 ip4:193.203.253.26 ip4:193.203.253.27 ip4:45.131.252.247 ip4:45.131.252.248 ip4:45.131.252.249 ip4:45.131.253.4 ip4:45.131.253.5 ip4:45.131.253.7 ~all v=spf1 ip6:2001:1680:101:83a::79 ip6:2001:1680:101:83a::8f ip6:2001:1680:101:83a::91 ip6:2001:1680:101:83a::95 ip6:2001:1680:101:83a::9d ip6:2001:1680:101:83a::d6 ~all v=spf1 ip6:2a11:8b80:1000:1::46 ip6:2a11:8b80:1000:1::47 ip6:2a11:8b80:1000:1::48 ip6:2a11:8b80:1000:1::49 ip6:2a11:8b80:1000:1::4a ip6:2a11:8b80:1000:1::4b ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "frutigen.ch"
+ ],
+ "guess":[
+ "frutigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"564":{
"bfs":"564",
"name":"Kandergrund",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kandergrund.ch",
"mx":[
"kandergrund-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:_spf.ch.seppmail.cloud -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:_spf.ch.seppmail.cloud -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kandergrund.ch CNAME → selector1-kandergrund-ch._domainkey.kandergrund.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kandergrund.ch CNAME → selector2-kandergrund-ch._domainkey.kandergrund.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "kandergrund.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kandergrund.ch"
+ ],
+ "guess":[
+ "kandergrund.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"565":{
"bfs":"565",
"name":"Kandersteg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gemeindekandersteg.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -5248,217 +18050,961 @@
],
"spf":"v=spf1 include:_spf.pcetera.ch include:spf.mandrillapp.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.pcetera.ch include:spf.mandrillapp.com -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "gemeindekandersteg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeindekandersteg.ch"
+ ],
+ "guess":[
+ "kandersteg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"566":{
"bfs":"566",
"name":"Krattigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"krattigen.ch",
"mx":[
"krattigen-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:194.126.200.0/24 ip4:149.126.0.0/21 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:194.126.200.0/24 ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.krattigen.ch CNAME → selector1-krattigen-ch._domainkey.krattigen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.krattigen.ch CNAME → selector2-krattigen-ch._domainkey.krattigen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "krattigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "krattigen.ch"
+ ],
+ "guess":[
+ "krattigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"567":{
"bfs":"567",
"name":"Reichenbach im Kandertal",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"reichenbach.ch",
"mx":[
"reichenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:spf.trendhosting-net.ch include:spf.protection.outlook.com include:_spf.talus.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:spf.trendhosting-net.ch include:spf.protection.outlook.com include:_spf.talus.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"mail.reichenbach.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX reichenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.reichenbach.ch CNAME → selector1-reichenbach-ch._domainkey.gdereichenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.reichenbach.ch CNAME → selector2-reichenbach-ch._domainkey.gdereichenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "reichenbach.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"571":{
"bfs":"571",
"name":"Beatenberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"beatenberg.ch",
"mx":[
"beatenberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX beatenberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.beatenberg.ch CNAME → selector1-beatenberg-ch._domainkey.beatenbergbe.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.beatenberg.ch CNAME → selector2-beatenberg-ch._domainkey.beatenbergbe.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "beatenberg.ch"
+ ],
+ "guess":[
+ "beatenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"572":{
"bfs":"572",
"name":"Bönigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"boenigen.ch",
"mx":[
"boenigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boenigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.boenigen.ch CNAME → selector1-boenigen-ch._domainkey.gemeindeverwaltungboenigen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.boenigen.ch CNAME → selector2-boenigen-ch._domainkey.gemeindeverwaltungboenigen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boenigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boenigen.ch"
+ ],
+ "guess":[
+ "boenigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"573":{
"bfs":"573",
- "name":"Brienz",
- "canton":"",
+ "name":"Brienz (BE)",
+ "canton":"Kanton Bern",
"domain":"brienz.ch",
"mx":[
"brienz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brienz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brienz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brienz.ch"
+ ],
+ "guess":[
+ "brienz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"574":{
"bfs":"574",
"name":"Brienzwiler",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"brienzwiler.ch",
"mx":[
"brienzwiler-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brienzwiler-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "brienzwiler.ch"
+ ],
+ "guess":[
+ "brienzwiler.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"575":{
"bfs":"575",
"name":"Därligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"daerligen.ch",
"mx":[
"daerligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:194.150.248.204 include:_spf.tophost.ch include:relay.mailchannels.net +include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.150.248.204 include:_spf.tophost.ch include:relay.mailchannels.net +include:spf.protection.outlook.com -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"us-cloud",
+ "classification_confidence":89.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX daerligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "daerligen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "daerligen.ch"
+ ],
+ "guess":[
+ "daerligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"576":{
"bfs":"576",
"name":"Grindelwald",
- "canton":"",
- "domain":"grindelwald.com",
+ "canton":"Kanton Bern",
+ "domain":"gemeinde-grindelwald.ch",
"mx":[
- ""
+ "gemeindegrindelwald-ch02b.mail.protection.outlook.com"
],
- "spf":"v=spf1 -all",
- "provider":"independent",
- "smtp_banner":"220 N0007808.localdomain ESMTP Postfix"
+ "spf":"v=spf1 include:spf.webstyle.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindegrindelwald-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gemeinde-grindelwald.ch CNAME → selector1-gemeindegrindelwald-ch02b._domainkey.gemeindegrindelwald.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gemeinde-grindelwald.ch CNAME → selector2-gemeindegrindelwald-ch02b._domainkey.gemeindegrindelwald.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeinde-grindelwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"577":{
"bfs":"577",
"name":"Gsteigwiler",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gsteigwiler.ch",
"mx":[
"gsteigwiler-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gsteigwiler-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gsteigwiler.ch CNAME → selector1-gsteigwiler-ch._domainkey.gsteigwilerch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gsteigwiler.ch CNAME → selector2-gsteigwiler-ch._domainkey.gsteigwilerch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gsteigwiler.ch"
+ ],
+ "guess":[
+ "gsteigwiler.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"578":{
"bfs":"578",
"name":"Gündlischwand",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"guendlischwand.ch",
"mx":[
"guendlischwand-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX guendlischwand-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.guendlischwand.ch CNAME → selector1-guendlischwand-ch._domainkey.guendlischwand.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.guendlischwand.ch CNAME → selector2-guendlischwand-ch._domainkey.guendlischwand.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "guendlischwand.ch"
+ ],
+ "guess":[
+ "guendlischwand.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"579":{
"bfs":"579",
"name":"Habkern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"habkern.ch",
"mx":[
"habkern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX habkern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "habkern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "habkern.ch"
+ ],
+ "guess":[
+ "habkern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"580":{
"bfs":"580",
"name":"Hofstetten bei Brienz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hofstetten-ballenberg.ch",
"mx":[
"mx1.jimdo.com",
@@ -5466,19 +19012,23 @@
],
"spf":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 ip4:108.166.43.0/24 ip4:146.20.86.8 ip4:146.20.161.0/25 ip4:161.47.34.7 ip4:173.203.187.0/25 ip4:184.106.54.0/25 ip4:204.232.172.40 ~all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "mx_asns":[
- 19994,
- 27357
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.emailsrvr.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "hofstetten-ballenberg.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"581":{
"bfs":"581",
"name":"Interlaken",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"interlaken.ch",
"mx":[
"mail.format-ag.ch",
@@ -5486,251 +19036,1034 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "interlaken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "interlaken.ch",
+ "stadt-interlaken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"582":{
"bfs":"582",
"name":"Iseltwald",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"iseltwald.ch",
"mx":[
"iseltwald-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX iseltwald-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "iseltwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "iseltwald.ch"
+ ],
+ "guess":[
+ "iseltwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"584":{
"bfs":"584",
"name":"Lauterbrunnen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lauterbrunnen.ch",
"mx":[
"lauterbrunnen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lauterbrunnen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.lauterbrunnen.ch CNAME → selector1-lauterbrunnen-ch._domainkey.lauterbrunnen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.lauterbrunnen.ch CNAME → selector2-lauterbrunnen-ch._domainkey.lauterbrunnen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lauterbrunnen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lauterbrunnen.ch"
+ ],
+ "guess":[
+ "lauterbrunnen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"585":{
"bfs":"585",
"name":"Leissigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"leissigen.ch",
"mx":[
"leissigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leissigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "leissigen.ch"
+ ],
+ "guess":[
+ "leissigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"586":{
"bfs":"586",
"name":"Lütschental",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"luetschental.ch",
"mx":[
"luetschental-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX luetschental-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "luetschental.ch"
+ ],
+ "guess":[
+ "luetschental.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"587":{
"bfs":"587",
"name":"Matten bei Interlaken",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"matten.ch",
"mx":[
"matten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX matten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.matten.ch CNAME → selector1-matten-ch._domainkey.matten.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.matten.ch CNAME → selector2-matten-ch._domainkey.matten.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "matten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "matten.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"588":{
"bfs":"588",
"name":"Niederried bei Interlaken",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"niederried-be.ch",
"mx":[
"niederriedbe-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niederriedbe-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "niederried-be.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"589":{
"bfs":"589",
"name":"Oberried am Brienzersee",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberried.ch",
"mx":[
"oberried.ch"
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rufcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":60.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "oberried.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberried.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"590":{
"bfs":"590",
- "name":"Ringgenberg",
- "canton":"",
+ "name":"Ringgenberg (BE)",
+ "canton":"Kanton Bern",
"domain":"ringgenberg.ch",
"mx":[
"ringgenberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ringgenberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ringgenberg.ch CNAME → selector1-ringgenberg-ch._domainkey.ringgenbergch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ringgenberg.ch CNAME → selector2-ringgenberg-ch._domainkey.ringgenbergch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ringgenberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ringgenberg.ch"
+ ],
+ "guess":[
+ "ringgenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"591":{
"bfs":"591",
"name":"Saxeten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"saxeten.ch",
"mx":[
"saxeten-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX saxeten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saxeten.ch"
+ ],
+ "guess":[
+ "saxeten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"592":{
"bfs":"592",
"name":"Schwanden bei Brienz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schwandenbrienz.ch",
"mx":[
"schwandenbrienz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schwandenbrienz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "schwandenbrienz.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"593":{
"bfs":"593",
"name":"Unterseen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"unterseen.ch",
"mx":[
"mx.gnets.ch"
],
"spf":"v=spf1 a:smtp.gnets.ch ip4:213.202.32.4 ip4:213.202.32.6 ip4:213.202.32.8 ip4:188.245.229.219 ip4:62.116.178.113 ip4:62.116.178.110 include:spf.protection.outlook.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:smtp.gnets.ch ip4:213.202.32.4 ip4:213.202.32.6 ip4:213.202.32.8 ip4:188.245.229.219 ip4:62.116.178.113 ip4:62.116.178.110 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 13030
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.gnets.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 13030 is Swiss ISP: Init7"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "unterseen.ch"
+ ],
+ "guess":[
+ "unterseen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"594":{
"bfs":"594",
"name":"Wilderswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wilderswil.ch",
"mx":[
"wilderswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:wilderswil.ch a:srv113.4youhosting.ch ip4:62.116.178.113 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:wilderswil.ch a:srv113.4youhosting.ch ip4:62.116.178.113 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wilderswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wilderswil.ch CNAME → selector1-wilderswil-ch._domainkey.wilderswil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wilderswil.ch CNAME → selector2-wilderswil-ch._domainkey.wilderswil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wilderswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wilderswil.ch"
+ ],
+ "guess":[
+ "wilderswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"602":{
"bfs":"602",
- "name":"Arni",
- "canton":"",
+ "name":"Arni (BE)",
+ "canton":"Kanton Bern",
"domain":"arnibe.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.x-mailer.de include:spf2.x-mailer.de include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.x-mailer.de include:spf2.x-mailer.de include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:212.162.12.0/22 ip4:212.162.56.0/23 ip4:212.162.52.0/23 ~all v=spf1 ip4:46.229.32.0/20 ~all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "arnibe.ch"
+ ],
+ "guess":[
+ "arni.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"603":{
"bfs":"603",
"name":"Biglen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"biglen.ch",
"mx":[
"mail.format-ag.ch",
@@ -5738,15 +20071,32 @@
],
"spf":"v=spf1 ip4:193.5.124.38 ip4:212.243.26.162 include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.5.124.38 ip4:212.243.26.162 include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "biglen.ch"
+ ],
+ "guess":[
+ "biglen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"605":{
"bfs":"605",
"name":"Bowil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bowil.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -5756,52 +20106,156 @@
],
"spf":"v=spf1 mx include:spf.zic-network.ch include:_spf.pcetera.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.zic-network.ch include:_spf.pcetera.ch -all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 25091
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "bowil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bowil.ch"
+ ],
+ "guess":[
+ "bowil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"606":{
"bfs":"606",
"name":"Brenzikofen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"brenzikofen.ch",
"mx":[
"mail.brenzikofen.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "brenzikofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brenzikofen.ch"
+ ],
+ "guess":[
+ "brenzikofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"607":{
"bfs":"607",
"name":"Freimettigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"freimettigen.ch",
"mx":[
"freimettigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX freimettigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "freimettigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "freimettigen.ch"
+ ],
+ "guess":[
+ "freimettigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"608":{
"bfs":"608",
"name":"Grosshöchstetten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"grosshoechstetten.ch",
"mx":[
"mail.format-ag.ch",
@@ -5811,54 +20265,210 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch include:mx.dvbern.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch include:mx.dvbern.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grosshoechstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grosshoechstetten.ch"
+ ],
+ "guess":[
+ "grosshoechstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"609":{
"bfs":"609",
"name":"Häutligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"haeutligen.ch",
"mx":[
"haeutligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX haeutligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "haeutligen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haeutligen.ch"
+ ],
+ "guess":[
+ "haeutligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"610":{
"bfs":"610",
"name":"Herbligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"herbligen.ch",
"mx":[
"herbligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX herbligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.herbligen.ch CNAME → selector1-herbligen-ch._domainkey.herbligengemeinde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.herbligen.ch CNAME → selector2-herbligen-ch._domainkey.herbligengemeinde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "herbligen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herbligen.ch"
+ ],
+ "guess":[
+ "herbligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"611":{
"bfs":"611",
"name":"Kiesen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kiesen.ch",
"mx":[
"kiesen1.cleanmail.ch",
@@ -5866,57 +20476,266 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_cmspf.cleanmail.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_cmspf.cleanmail.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:91.208.173.0/24 ip4:91.212.152.0/24 ip4:195.141.89.0/24 ip4:185.188.196.0/24 ip4:83.145.109.0/24 ip4:31.172.161.0/24 ip4:80.83.63.195/32 ip4:80.83.63.196/32 a:outbound.appriver.com ~all",
- "gateway":"cleanmail",
- "mx_asns":[
- 15547
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kiesen.ch CNAME → selector1-kiesen-ch._domainkey.kiesench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kiesen.ch CNAME → selector2-kiesen-ch._domainkey.kiesench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"cleanmail",
+ "sources_detail":{
+ "scrape":[
+ "kiesen.ch",
+ "mehrdigital.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kiesen.ch"
+ ],
+ "guess":[
+ "kiesen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"612":{
"bfs":"612",
"name":"Konolfingen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"konolfingen.ch",
"mx":[
"konolfingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.41.204.242 ip4:62.167.19.241 ip4:81.62.201.86 a:mailout.computech.ch include:spf-de.emailsignatures365.com include:spf.protection.outlook.com include:_spf.talus.ch +a +mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.41.204.242 ip4:62.167.19.241 ip4:81.62.201.86 a:mailout.computech.ch include:spf-de.emailsignatures365.com include:spf.protection.outlook.com include:_spf.talus.ch +a +mx -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.konolfingen.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX konolfingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.konolfingen.ch CNAME → selector1-konolfingen-ch._domainkey.gemkon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.konolfingen.ch CNAME → selector2-konolfingen-ch._domainkey.gemkon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "konolfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "konolfingen.ch"
+ ],
+ "guess":[
+ "konolfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"613":{
"bfs":"613",
"name":"Landiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"landiswil.ch",
"mx":[
"landiswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:ip-nep2016.asp.infopro.ch ip4:80.243.212.107 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:ip-nep2016.asp.infopro.ch ip4:80.243.212.107 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX landiswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.landiswil.ch CNAME → selector1-landiswil-ch._domainkey.landiswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.landiswil.ch CNAME → selector2-landiswil-ch._domainkey.landiswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "landiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "landiswil.ch"
+ ],
+ "guess":[
+ "landiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"614":{
"bfs":"614",
"name":"Linden",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"linden.ch",
"mx":[
"mail.format-ag.ch",
@@ -5926,13 +20745,35 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "linden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "linden.ch"
+ ],
+ "guess":[
+ "linden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"615":{
"bfs":"615",
@@ -5944,55 +20785,191 @@
],
"spf":"v=spf1 a mx a:mail.tcnet.ch ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mail.tcnet.ch ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 207143
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.mirchel.ch CNAME → selector1-mirchel-ch._domainkey.gemeindemirchel.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.mirchel.ch CNAME → selector2-mirchel-ch._domainkey.gemeindemirchel.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mirchel.ch"
+ ],
+ "guess":[
+ "mirchel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"616":{
"bfs":"616",
"name":"Münsingen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"muensingen.ch",
"mx":[
"mail.format-ag.ch",
"mail.tankred.ch"
],
"spf":"v=spf1 a:mrmuensingen01.muensingen.ch mx a:incms00.incms.com a:incms01.incms.com a:incms02.incms.com a:incms03.incms.com a:incms04.incms.com include:spf.protection.outlook.com include:_spf.talus.ch include:spf.mailjet.com ip4:116.203.46.102 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 a:mrmuensingen01.muensingen.ch mx a:incms00.incms.com a:incms01.incms.com a:incms02.incms.com a:incms03.incms.com a:incms04.incms.com include:spf.protection.outlook.com include:_spf.talus.ch include:spf.mailjet.com ip4:116.203.46.102 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.riz.muensingen.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muensingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muensingen.ch"
+ ],
+ "guess":[
+ "muensingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"617":{
"bfs":"617",
"name":"Niederhünigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"niederhuenigen.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzmail.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederhuenigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederhuenigen.ch"
+ ],
+ "guess":[
+ "niederhuenigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"619":{
"bfs":"619",
"name":"Oberdiessbach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberdiessbach.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -6002,18 +20979,41 @@
],
"spf":"v=spf1 mx mx:mx.mail.33084.hostserv.eu mx:mxpool.de2.hostedoffice.ag include:spf.hornetsecurity.com ip4:193.135.56.6 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx mx:mx.mail.33084.hostserv.eu mx:mxpool.de2.hostedoffice.ag include:spf.hornetsecurity.com ip4:193.135.56.6 ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
- ]
+ "sources_detail":{
+ "scrape":[
+ "oberdiessbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberdiessbach.ch"
+ ],
+ "guess":[
+ "oberdiessbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"620":{
"bfs":"620",
"name":"Oberthal",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberthal.ch",
"mx":[
"mail.format-ag.ch",
@@ -6023,55 +21023,160 @@
],
"spf":"v=spf1 include:_spf.talus.ch include:_spf.sui-inter.net +mx +a ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.talus.ch include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberthal.ch"
+ ],
+ "guess":[
+ "oberthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"622":{
"bfs":"622",
"name":"Oppligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oppligen.ch",
"mx":[
"oppligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oppligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oppligen.ch"
+ ],
+ "guess":[
+ "oppligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"623":{
"bfs":"623",
"name":"Rubigen",
- "canton":"",
- "domain":"rubigen.ch",
+ "canton":"Kanton Bern",
+ "domain":"rubigen.swiss",
"mx":[
- "mx.prod.qlmail.ch"
- ],
- "spf":"v=spf1 redirect=_spf.qlmail.ch",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 redirect=_spf.qlmail.ch v=spf1 ip4:89.236.171.24 ip4:31.193.211.99 ip4:89.236.170.0/27 ip4:89.236.174.0/24 ip6:2001:1a88:20:8171::24 -all",
- "mx_asns":[
- 15600
+ "mail.format-ag.ch",
+ "mail.tankred.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.quickline.com",
- "autodiscover_srv":"autodiscover.quickline.com"
- }
+ "spf":"v=spf1 a mx include:sendgrid.net include:_spf.talus.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "rubigen.swiss"
+ ]
+ },
+ "resolve_flags":[]
},
"626":{
"bfs":"626",
"name":"Walkringen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"walkringen.ch",
"mx":[
"mail.format-ag.ch",
@@ -6080,18 +21185,27 @@
],
"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch include:spf.zic-network.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch include:spf.zic-network.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "walkringen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walkringen.ch"
+ ],
+ "guess":[
+ "walkringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"627":{
"bfs":"627",
"name":"Worb",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"worb.ch",
"mx":[
"mail.format-ag.ch",
@@ -6099,18 +21213,46 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "worb.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "worb.ch"
+ ],
+ "guess":[
+ "worb.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"628":{
"bfs":"628",
"name":"Zäziwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"zaeziwil.ch",
"mx":[
"mail.format-ag.ch",
@@ -6119,18 +21261,38 @@
],
"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"www.zaeziwil.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "zaeziwil.ch"
+ ],
+ "guess":[
+ "zaeziwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"629":{
"bfs":"629",
"name":"Oberhünigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberhuenigen.ch",
"mx":[
"mail.format-ag.ch",
@@ -6138,36 +21300,112 @@
],
"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"www.oberhuenigen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oberhuenigen.ch"
+ ],
+ "guess":[
+ "oberhuenigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"630":{
"bfs":"630",
- "name":"Allmendingen bei Bern",
- "canton":"",
+ "name":"Allmendingen",
+ "canton":"Kanton Bern",
"domain":"allmendingen.ch",
"mx":[
"allmendingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX allmendingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "allmendingen.ch"
+ ],
+ "guess":[
+ "allmendingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"632":{
"bfs":"632",
"name":"Wichtrach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wichtrach.ch",
"mx":[
"mail.format-ag.ch",
@@ -6175,17 +21413,44 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 ip4:212.243.26.162 mx:talus.ch a:incms00.incms.com a:incms01.incms.com a:incms02.incms.com a:incms03.incms.com a:incms04.incms.com -all",
"provider":"independent",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wichtrach.ch"
+ ],
+ "guess":[
+ "wichtrach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"662":{
"bfs":"662",
"name":"Ferenbalm",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ferenbalm.ch",
"mx":[
"mail.format-ag.ch",
@@ -6195,18 +21460,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ferenbalm.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ferenbalm.ch"
+ ],
+ "guess":[
+ "ferenbalm.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"663":{
"bfs":"663",
"name":"Frauenkappelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"frauenkappelen.ch",
"mx":[
"mail.format-ag.ch",
@@ -6214,93 +21501,283 @@
],
"spf":"v=spf1 Include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 Include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "frauenkappelen.ch"
+ ],
+ "guess":[
+ "frauenkappelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"665":{
"bfs":"665",
"name":"Gurbrü",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gurbrue.ch",
"mx":[
"gurbrue-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gurbrue-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gurbrue.ch CNAME → selector1-gurbrue-ch._domainkey.gurbrue.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gurbrue.ch CNAME → selector2-gurbrue-ch._domainkey.gurbrue.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gurbrue.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gurbrue.ch"
+ ],
+ "guess":[
+ "gurbrue.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"666":{
"bfs":"666",
"name":"Kriechenwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kriechenwil.ch",
"mx":[
"kriechenwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kriechenwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kriechenwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kriechenwil.ch"
+ ],
+ "guess":[
+ "kriechenwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"667":{
"bfs":"667",
"name":"Laupen",
- "canton":"",
- "domain":"laupen.ch",
+ "canton":"Kanton Bern",
+ "domain":"laupen-be.ch",
"mx":[
- "mail.sesamnet.ch"
- ],
- "spf":"v=spf1 include:spf.sesamnet.ch include:mx.dvbern.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.sesamnet.ch include:mx.dvbern.ch -all v=spf1 ip4:83.222.130.50 ip4:185.64.116.13 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 31736
+ "mail.format-ag.ch",
+ "mail.tankred.ch",
+ "mailbackup.format-ag.ch",
+ "mailbackup.tankred.ch"
],
- "autodiscover":{
- "autodiscover_cname":"outlook.laupen.ch"
- }
+ "spf":"v=spf1 a mx include:_spf.talus.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "laupen-be.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"668":{
"bfs":"668",
"name":"Mühleberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"muehleberg.ch",
"mx":[
"mailbackup.muehleberg.ch",
"utm.muehleberg.ch"
],
"spf":"v=spf1 mx a:schulemuehleberg.ch a:muehleberg.ch include:_spf.talus.ch include:_spf_eucentral1.prod.hydra.sophos.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx a:schulemuehleberg.ch a:muehleberg.ch include:_spf.talus.ch include:_spf_eucentral1.prod.hydra.sophos.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:94.140.18.0/24 ip4:35.159.27.8/30 ip4:35.159.27.28/30 ip4:35.159.27.32/30 ip4:35.159.27.48/29 ip4:35.159.27.160/28 ~all",
- "mx_asns":[
- 3303,
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"utm.muehleberg.ch",
- "autodiscover_srv":"owa.muehleberg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muehleberg.ch"
+ ],
+ "guess":[
+ "muehleberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"669":{
"bfs":"669",
"name":"Münchenwiler",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"muenchenwiler.ch",
"mx":[
"mx01.tophost.ch",
@@ -6308,209 +21785,738 @@
],
"spf":"v=spf1 ip4:46.232.178.29 +mx +a ~all",
"provider":"independent",
- "mx_asns":[
- 35206
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muenchenwiler.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muenchenwiler.ch"
+ ],
+ "guess":[
+ "muenchenwiler.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"670":{
"bfs":"670",
"name":"Neuenegg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"neuenegg.ch",
"mx":[
"neuenegg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.140.147.32/30 include:spf.protection.outlook.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.140.147.32/30 include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neuenegg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.neuenegg.ch CNAME → selector1-neuenegg-ch._domainkey.neuenegg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.neuenegg.ch CNAME → selector2-neuenegg-ch._domainkey.neuenegg.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "neuenegg.ch"
+ ],
+ "guess":[
+ "neuenegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"671":{
"bfs":"671",
"name":"Wileroltigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wileroltigen.ch",
"mx":[
"wileroltigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wileroltigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wileroltigen.ch CNAME → selector1-wileroltigen-ch._domainkey.gemeindewileroltigen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wileroltigen.ch CNAME → selector2-wileroltigen-ch._domainkey.gemeindewileroltigen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wileroltigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wileroltigen.ch"
+ ],
+ "guess":[
+ "wileroltigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"681":{
"bfs":"681",
"name":"Belprahon",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"belprahon.ch",
"mx":[
"belprahon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX belprahon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "belprahon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "belprahon.ch"
+ ],
+ "guess":[
+ "belprahon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"683":{
"bfs":"683",
"name":"Champoz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"champoz.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 ip4:212.71.120.144/28 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "champoz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "champoz.ch"
+ ],
+ "guess":[
+ "champoz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"687":{
"bfs":"687",
- "name":"Corcelles",
- "canton":"",
+ "name":"Corcelles (BE)",
+ "canton":"Kanton Bern",
"domain":"corcelles-be.ch",
"mx":[
"corcellesbe-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:sirius.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:sirius.ch include:spf.protection.outlook.com -all v=spf1 mx a:aximail.sirius.ch a:exomail.sirius.ch include:spf.brevo.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corcellesbe-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corcelles-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corcelles-be.ch"
+ ],
+ "guess":[
+ "corcelles.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"690":{
"bfs":"690",
"name":"Court",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"court.ch",
"mx":[
"court-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX court-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "court.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "court.ch"
+ ],
+ "guess":[
+ "court.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"691":{
"bfs":"691",
"name":"Crémines",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"cremines.ch",
"mx":[
"mail.cremines.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch include:_spf.google.com +mx +a -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch include:_spf.google.com +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all",
- "mx_asns":[
- 21069
- ]
+ "provider":"google",
+ "category":"us-cloud",
+ "classification_confidence":52.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "cremines.ch"
+ ],
+ "guess":[
+ "cremines.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"692":{
"bfs":"692",
"name":"Eschert",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"eschert.ch",
"mx":[
"mail.eschert.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eschert.ch"
+ ],
+ "guess":[
+ "eschert.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"694":{
"bfs":"694",
"name":"Grandval",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"grandval.ch",
"mx":[
"grandval-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grandval-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.grandval.ch CNAME → selector1-grandval-ch._domainkey.grandval.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.grandval.ch CNAME → selector2-grandval-ch._domainkey.grandval.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grandval.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grandval.ch"
+ ],
+ "guess":[
+ "grandval.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"696":{
"bfs":"696",
"name":"Loveresse",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"loveresse.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jb-b.ch",
+ "loveresse.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "loveresse.ch"
+ ],
+ "guess":[
+ "loveresse.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"701":{
"bfs":"701",
"name":"Perrefitte",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"perrefitte.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:spf.infomaniak.ch include:spf.protection.outlook.com include:evok.ch ip4:212.71.120.144/28 -all ",
- "provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.infomaniak.ch include:spf.protection.outlook.com include:evok.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "perrefitte.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "perrefitte.ch"
+ ],
+ "guess":[
+ "perrefitte.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"703":{
"bfs":"703",
"name":"Reconvilier",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"reconvilier.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -6520,64 +22526,163 @@
],
"spf":"v=spf1 ip4:128.65.195.253 mx a ip4:185.98.28.32 include:mail.infomaniak.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:128.65.195.253 mx a ip4:185.98.28.32 include:mail.infomaniak.ch -all v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34271
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "reconvilier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reconvilier.ch"
+ ],
+ "guess":[
+ "reconvilier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"704":{
"bfs":"704",
- "name":"Roches",
- "canton":"",
+ "name":"Roches (BE)",
+ "canton":"Kanton Bern",
"domain":"roches.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch a:exomail.sirius.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch a:exomail.sirius.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roches.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roches.ch"
+ ],
+ "guess":[
+ "roches.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"706":{
"bfs":"706",
"name":"Saicourt",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"saicourt.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "saicourt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saicourt.ch"
+ ],
+ "guess":[
+ "saicourt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"707":{
"bfs":"707",
- "name":"Saules",
- "canton":"",
+ "name":"Saules (BE)",
+ "canton":"Kanton Bern",
"domain":"saules-be.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saules-be.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"708":{
"bfs":"708",
@@ -6589,64 +22694,321 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindeschelten-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeinde-schelten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"709":{
"bfs":"709",
- "name":"Seehof BE",
+ "name":"Seehof",
"canton":"Kanton Bern",
- "domain":"",
- "mx":[],
- "spf":"",
- "provider":"unknown"
+ "domain":"gemeindeseehof.ch",
+ "mx":[
+ "mail.format-ag.ch",
+ "mail.tankred.ch",
+ "mailbackup.format-ag.ch",
+ "mailbackup.tankred.ch"
+ ],
+ "spf":"v=spf1 a include:_spf.talus.ch ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeindeseehof.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"711":{
"bfs":"711",
"name":"Sorvilier",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sorvilier.ch",
"mx":[
"mail.sorvilier.ch"
],
"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "sorvilier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sorvilier.ch"
+ ],
+ "guess":[
+ "sorvilier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"713":{
"bfs":"713",
"name":"Tavannes",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"tavannes.ch",
"mx":[
"tavannes-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tavannes-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tavannes.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tavannes.ch"
+ ],
+ "guess":[
+ "tavannes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"715":{
"bfs":"715",
"name":"Rebévelier",
"canton":"Kanton Bern",
- "domain":"",
- "mx":[],
- "spf":"",
- "provider":"unknown"
+ "domain":"bluewin.ch",
+ "mx":[
+ "mx01.p.bluenet.ch",
+ "mx02.p.bluenet.ch"
+ ],
+ "spf":"v=spf1 redirect=_spf.bluewin.ch",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bluewin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"716":{
"bfs":"716",
@@ -6658,18 +23020,41 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "petit-val.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "petit-val.ch"
+ ],
+ "guess":[
+ "petit-val.ch",
+ "petitval.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"717":{
"bfs":"717",
"name":"Valbirse",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"valbirse.ch",
"mx":[
"mx140.zline.ch",
@@ -6678,70 +23063,318 @@
],
"spf":"v=spf1 ip4:81.62.215.50 ip4:136.243.25.75 ip4:185.98.28.121 include:spf.zline.ch mx -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:81.62.215.50 ip4:136.243.25.75 ip4:185.98.28.121 include:spf.zline.ch mx -all v=spf1 ip4:212.74.176.0/23 ip4:212.74.179.0/24 ip4:84.16.71.224/28 ip4:84.16.71.240/29 ip4:84.16.71.184/29 ip4:212.74.141.0/27 ip4:46.140.65.240/29 ip4:46.14.220.40 ip4:46.14.19.170 ip4:80.83.52.48/29 ip4:195.15.223.62 -all",
- "mx_asns":[
- 12651,
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.valbirse.ch",
- "autodiscover_srv":"autodiscover.valbirse.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "valbirse.ch"
+ ],
+ "guess":[
+ "valbirse.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"723":{
"bfs":"723",
"name":"La Neuveville",
- "canton":"",
- "domain":"laneuveville.ch",
- "mx":[
- "mx2.vtx.ch"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 12350
- ]
+ "canton":"Kanton Bern",
+ "domain":"neuveville.ch",
+ "mx":[
+ "neuveville-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 a:smtp.neuveville.ch a:smtp-pro.vtx.ch a:smtp-as-02.vtxnet.net ip4:46.140.73.146 ip4:194.38.175.142 ip4:185.48.146.63 include:spf.mandrillapp.com ip4:5.148.181.63 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neuveville-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.neuveville.ch CNAME → selector1-neuveville-ch._domainkey.neuveville.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.neuveville.ch CNAME → selector2-neuveville-ch._domainkey.neuveville.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "neuveville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"724":{
"bfs":"724",
"name":"Nods",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"nods.ch",
"mx":[
"nods-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com include:spf.emailit.com -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.emailit.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nods-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.nods.ch CNAME → selector1-nods-ch._domainkey.communenods.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.nods.ch CNAME → selector2-nods-ch._domainkey.communenods.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nods.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nods.ch"
+ ],
+ "guess":[
+ "nods.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"726":{
"bfs":"726",
"name":"Plateau de Diesse",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"leplateaudediesse.ch",
"mx":[
"leplateaudediesse-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.140.98.102 ip4:185.48.146.134 include:spf.mandrillapp.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.140.98.102 ip4:185.48.146.134 include:spf.mandrillapp.com include:spf.protection.outlook.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leplateaudediesse-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.leplateaudediesse.ch CNAME → selector1-leplateaudediesse-ch._domainkey.leplateaudediesse.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.leplateaudediesse.ch CNAME → selector2-leplateaudediesse-ch._domainkey.leplateaudediesse.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "leplateaudediesse.ch"
+ ],
+ "guess":[
+ "plateau-de-diesse.ch",
+ "plateaudediesse.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"731":{
"bfs":"731",
"name":"Aegerten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"aegerten.ch",
"mx":[
"mail.format-ag.ch",
@@ -6751,18 +23384,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aegerten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aegerten.ch"
+ ],
+ "guess":[
+ "aegerten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"732":{
"bfs":"732",
"name":"Bellmund",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bellmund.ch",
"mx":[
"mail.format-ag.ch",
@@ -6772,36 +23427,132 @@
],
"spf":"v=spf1 a mx include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bellmund.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bellmund.ch"
+ ],
+ "guess":[
+ "bellmund.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"733":{
"bfs":"733",
"name":"Brügg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bruegg.ch",
"mx":[
"bruegg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.142.162.16/28 a:mail.evard.ch include:_spf.talus.ch include:_spf.sui-inter.net include:spf.mailjet.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.142.162.16/28 a:mail.evard.ch include:_spf.talus.ch include:_spf.sui-inter.net include:spf.mailjet.com include:spf.protection.outlook.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bruegg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bruegg.ch CNAME → selector1-bruegg-ch._domainkey.gemeindebruegg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bruegg.ch CNAME → selector2-bruegg-ch._domainkey.gemeindebruegg.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bruegg.ch"
+ ],
+ "guess":[
+ "bruegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"734":{
"bfs":"734",
"name":"Bühl",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"buehl.ch",
"mx":[
"mail.format-ag.ch",
@@ -6809,69 +23560,197 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buehl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buehl.ch"
+ ],
+ "guess":[
+ "bhl.ch",
+ "buehl.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"735":{
"bfs":"735",
"name":"Epsach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"epsach.ch",
"mx":[
"mail.epsach.ch"
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":60.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "epsach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "epsach.ch"
+ ],
+ "guess":[
+ "epsach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"736":{
"bfs":"736",
"name":"Hagneck",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hagneck.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hagneck.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hagneck.ch"
+ ],
+ "guess":[
+ "hagneck.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"737":{
"bfs":"737",
"name":"Hermrigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hermrigen.ch",
"mx":[
"hermrigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.webstyle.ch include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.webstyle.ch include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:192.162.28.0/24 ip4:95.130.17.0/24 include:_spf.sui-inter.net ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hermrigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hermrigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hermrigen.ch"
+ ],
+ "guess":[
+ "hermrigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"738":{
"bfs":"738",
"name":"Jens",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"jens.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -6881,93 +23760,309 @@
],
"spf":"v=spf1 a mx ptr include:_spf.pcetera.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ptr include:_spf.pcetera.ch ~all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 25091
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"owa2.oneaccess.ch"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "jens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jens.ch"
+ ],
+ "guess":[
+ "jens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"739":{
"bfs":"739",
"name":"Ipsach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ipsach.ch",
"mx":[
"ipsach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com mx:talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com mx:talus.ch -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ipsach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ipsach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ipsach.ch"
+ ],
+ "guess":[
+ "ipsach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"740":{
"bfs":"740",
"name":"Ligerz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ligerz.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 +a +mx +a:rlx3.loginserver.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx +a:rlx3.loginserver.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ligerz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ligerz.ch"
+ ],
+ "guess":[
+ "ligerz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"741":{
"bfs":"741",
"name":"Merzligen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"merzligen.ch",
"mx":[
"merzligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.47.190.0/24 ip4:80.74.156.101 ip4:213.142.191.105 ip4:80.74.156.100 ip4:94.126.17.100 ip4:94.126.17.102 ip4:94.126.17.101 ip4:94.126.17.104 include:spf.protection.outlook.com include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.47.190.0/24 ip4:80.74.156.101 ip4:213.142.191.105 ip4:80.74.156.100 ip4:94.126.17.100 ip4:94.126.17.102 ip4:94.126.17.101 ip4:94.126.17.104 include:spf.protection.outlook.com include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX merzligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.merzligen.ch CNAME → selector1-merzligen-ch._domainkey.merzligench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.merzligen.ch CNAME → selector2-merzligen-ch._domainkey.merzligench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "merzligen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "merzligen.ch"
+ ],
+ "guess":[
+ "merzligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"742":{
"bfs":"742",
"name":"Mörigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"moerigen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "moerigen.ch"
+ ],
+ "guess":[
+ "moerigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"743":{
"bfs":"743",
"name":"Nidau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"nidau.ch",
"mx":[
"mail.format-ag.ch",
@@ -6977,18 +24072,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nidau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nidau.ch"
+ ],
+ "guess":[
+ "nidau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"744":{
"bfs":"744",
"name":"Orpund",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"orpund.ch",
"mx":[
"mail.format-ag.ch",
@@ -6996,36 +24113,114 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "orpund.ch"
+ ],
+ "guess":[
+ "orpund.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"745":{
"bfs":"745",
"name":"Port",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"port.ch",
"mx":[
"port-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX port-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "port.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "port.ch"
+ ],
+ "guess":[
+ "port.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"746":{
"bfs":"746",
"name":"Safnern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"safnern.ch",
"mx":[
"mail.format-ag.ch",
@@ -7033,69 +24228,247 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "safnern.ch"
+ ],
+ "guess":[
+ "safnern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"747":{
"bfs":"747",
"name":"Scheuren",
- "canton":"",
- "domain":"gemeinde-scheuren.ch",
+ "canton":"Kanton Bern",
+ "domain":"scheuren.ch",
"mx":[
"scheuren-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX scheuren-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "scheuren.ch"
+ ],
+ "redirect":[
+ "scheuren.ch"
+ ],
+ "wikidata":[
+ "gemeinde-scheuren.ch"
+ ],
+ "guess":[
+ "gemeinde-scheuren.ch",
+ "scheuren.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"748":{
"bfs":"748",
"name":"Schwadernau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schwadernau.ch",
"mx":[
"mail.schwadernau.ch"
],
"spf":"v=spf1 +a +mx +a:rlx7.loginserver.ch include:_spf.blk.ymc.swiss -all",
"provider":"independent",
- "spf_resolved":"v=spf1 +a +mx +a:rlx7.loginserver.ch include:_spf.blk.ymc.swiss -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 24940
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwadernau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwadernau.ch"
+ ],
+ "guess":[
+ "schwadernau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"749":{
"bfs":"749",
- "name":"Studen",
- "canton":"",
+ "name":"Studen (BE)",
+ "canton":"Kanton Bern",
"domain":"studen.ch",
"mx":[
"studen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX studen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.studen.ch CNAME → selector1-studen-ch._domainkey.studenbe.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.studen.ch CNAME → selector2-studen-ch._domainkey.studenbe.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "studen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "studen.ch"
+ ],
+ "guess":[
+ "studen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"750":{
"bfs":"750",
"name":"Sutz-Lattrigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sutz-lattrigen.ch",
"mx":[
"mail.format-ag.ch",
@@ -7103,36 +24476,122 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sutz-lattrigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sutz-lattrigen.ch"
+ ],
+ "guess":[
+ "sutz-lattrigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"751":{
"bfs":"751",
"name":"Täuffelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"taeuffelen.ch",
"mx":[
"taeuffelen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX taeuffelen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "taeuffelen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "taeuffelen.ch"
+ ],
+ "guess":[
+ "taeuffelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"754":{
"bfs":"754",
"name":"Walperswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"walperswil.ch",
"mx":[
"mail.format-ag.ch",
@@ -7142,69 +24601,256 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "walperswil.ch"
+ ],
+ "guess":[
+ "walperswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"755":{
"bfs":"755",
"name":"Worben",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"worben.ch",
"mx":[
"worben-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX worben-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.worben.ch CNAME → selector1-worben-ch._domainkey.ewgworben.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.worben.ch CNAME → selector2-worben-ch._domainkey.ewgworben.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "worben.ch"
+ ],
+ "guess":[
+ "worben.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"756":{
"bfs":"756",
"name":"Twann-Tüscherz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"twann-tuescherz.ch",
"mx":[
"twanntuescherz-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 a ip4:195.186.123.33 ip4:195.186.136.33 ip4:195.186.123.34 ip4:195.186.136.34 include:_spf.i-web.ch include:spf.protection.outlook.com include:mx.dvbern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a ip4:195.186.123.33 ip4:195.186.136.33 ip4:195.186.123.34 ip4:195.186.136.34 include:_spf.i-web.ch include:spf.protection.outlook.com include:mx.dvbern.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX twanntuescherz-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.twann-tuescherz.ch CNAME → selector1-twanntuescherz-ch01c._domainkey.twanntuescherz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.twann-tuescherz.ch CNAME → selector2-twanntuescherz-ch01c._domainkey.twanntuescherz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "twann-tuescherz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "twann-tuescherz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"761":{
"bfs":"761",
"name":"Därstetten",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"daerstetten.ch",
"mx":[
"mail.daerstetten.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "daerstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "daerstetten.ch"
+ ],
+ "guess":[
+ "daerstetten.ch",
+ "drstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"762":{
"bfs":"762",
"name":"Diemtigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"diemtigen.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -7214,21 +24860,65 @@
],
"spf":"v=spf1 include:edgepilot.com include:_spf.talus.ch include:spf.protection.outlook.com include:_spf.pcetera.ch ip4:217.11.37.66 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:edgepilot.com include:_spf.talus.ch include:spf.protection.outlook.com include:_spf.pcetera.ch ip4:217.11.37.66 -all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:204.232.250.0/24 ip4:5.152.185.0/24 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:72.3.212.195 ip4:5.152.188.0/24 ip4:174.37.170.192/27 ~all v=spf1 ip4:75.126.84.128/26 ip4:67.228.8.0/25 ip4:67.227.149.19 ip4:64.56.208.32/27 ip4:67.228.91.90 ip4:67.228.158.174 ip4:174.36.44.116/30 ip4:50.201.66.168 ip4:63.71.8.0/21 ip4:199.30.232.0/21 ip4:74.203.184.0/23 ip4:207.195.176.0/20 ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "diemtigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "diemtigen.ch"
+ ],
+ "guess":[
+ "diemtigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"763":{
"bfs":"763",
"name":"Erlenbach im Simmental",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"erlenbach-be.ch",
"mx":[
"mail.format-ag.ch",
@@ -7238,36 +24928,120 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "erlenbach-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "erlenbach-be.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"766":{
"bfs":"766",
"name":"Oberwil im Simmental",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberwil-im-simmental.ch",
"mx":[
"oberwilimsimmental-ch01ie.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberwilimsimmental-ch01ie.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberwil-im-simmental.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberwil-im-simmental.ch"
+ ],
+ "guess":[
+ "oberwil-im-simmental.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"767":{
"bfs":"767",
"name":"Reutigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"reutigen.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -7277,186 +25051,612 @@
],
"spf":"v=spf1 include:_spf.pcetera.ch include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.pcetera.ch include:_spf.i-web.ch -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "reutigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reutigen.ch"
+ ],
+ "guess":[
+ "reutigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"768":{
"bfs":"768",
"name":"Spiez",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"spiez.ch",
"mx":[
"mx1.thun.ch",
"mx2.thun.ch"
],
"spf":"v=spf1 ip4:82.220.26.128/26 ip4:194.56.218.181 mx include:thunersee.ch include:_spf.talus.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:82.220.26.128/26 ip4:194.56.218.181 mx include:thunersee.ch include:_spf.talus.ch include:spf.protection.outlook.com -all v=spf1 include:spf.protection.outlook.com include:spf.internetgalerie.ch a:webmail.format-ag.ch a:mail.format-ag.ch a:mail.tankred.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.222.138.0/24 -all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.thun.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.spiez.ch CNAME → selector1-spiez-ch._domainkey.stadtthun.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.spiez.ch CNAME → selector2-spiez-ch._domainkey.stadtthun.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "spiez.ch"
+ ],
+ "guess":[
+ "spiez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"769":{
"bfs":"769",
"name":"Wimmis",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wimmis.ch",
"mx":[
"wimmis-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wimmis-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wimmis.ch CNAME → selector1-wimmis-ch._domainkey.gemeindewimmis.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wimmis.ch CNAME → selector2-wimmis-ch._domainkey.gemeindewimmis.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wimmis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wimmis.ch"
+ ],
+ "guess":[
+ "wimmis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"770":{
"bfs":"770",
"name":"Stocken-Höfen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"stocken-hoefen.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a:owa.itze.ch include:_spf.sui-inter.net +mx +a -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:owa.itze.ch include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.itze.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "stocken-hoefen.ch"
+ ],
+ "guess":[
+ "stocken-hoefen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"782":{
"bfs":"782",
"name":"Guttannen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"guttannen.ch",
"mx":[
"mx.stackmail.com"
],
"spf":"v=spf1 include:spf.stackmail.com a mx -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.stackmail.com a mx -all v=spf1 ip4:185.151.28.0/24 ip4:185.151.30.0/24 ip4:45.8.227.0/24 ip4:185.146.165.0/24 ip6:2a07:7800::/29 -all",
- "mx_asns":[
- 48254
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.stackmail.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "guttannen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "guttannen.ch"
+ ],
+ "guess":[
+ "guttannen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"783":{
"bfs":"783",
"name":"Hasliberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"hasliberg.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip:139.162.174.9 a:webcms.ruf.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip:139.162.174.9 a:webcms.ruf.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hasliberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hasliberg.ch"
+ ],
+ "guess":[
+ "hasliberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"784":{
"bfs":"784",
"name":"Innertkirchen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"innertkirchen.ch",
"mx":[
"innertkirchen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"lx59.hoststar.hosting"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX innertkirchen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "innertkirchen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "innertkirchen.ch"
+ ],
+ "guess":[
+ "innertkirchen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"785":{
"bfs":"785",
"name":"Meiringen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"meiringen.ch",
"mx":[
"meiringen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:utm.meiringen.ch include:spf.protection.outlook.com include:spf.nl2go.com a:mail.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:utm.meiringen.ch include:spf.protection.outlook.com include:spf.nl2go.com a:mail.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX meiringen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.meiringen.ch CNAME → selector1-meiringen-ch._domainkey.meiringench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.meiringen.ch CNAME → selector2-meiringen-ch._domainkey.meiringench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meiringen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meiringen.ch"
+ ],
+ "guess":[
+ "meiringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"786":{
"bfs":"786",
"name":"Schattenhalb",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schattenhalb.ch",
"mx":[
"schattenhalb-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.schattenhalb.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schattenhalb-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schattenhalb.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schattenhalb.ch"
+ ],
+ "guess":[
+ "schattenhalb.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"791":{
"bfs":"791",
"name":"Boltigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"boltigen.ch",
"mx":[
"boltigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boltigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "boltigen.ch"
+ ],
+ "guess":[
+ "boltigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"792":{
"bfs":"792",
"name":"Lenk",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lenkgemeinde.ch",
"mx":[
"mail.format-ag.ch",
@@ -7464,144 +25664,533 @@
],
"spf":"v=spf1 a mx ip4:83.173.225.118 include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:83.173.225.118 include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"utm.lenkgemeinde.ch",
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lenkgemeinde.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lenkgemeinde.ch"
+ ],
+ "guess":[
+ "lenk.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"793":{
"bfs":"793",
"name":"St. Stephan",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ststephan.ch",
"mx":[
"ststephan-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:mail.ststephan.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:mail.ststephan.ch include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"remote.ststephan.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ststephan-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ststephan.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ststephan.ch"
+ ],
+ "guess":[
+ "ststephan.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"794":{
"bfs":"794",
"name":"Zweisimmen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"zweisimmen.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a a:owa.itze.ch include:spf.company.swiss-egov.cloud include:_spf.blk.ymc.swiss -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a a:owa.itze.ch include:spf.company.swiss-egov.cloud include:_spf.blk.ymc.swiss -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.itze.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zweisimmen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zweisimmen.ch"
+ ],
+ "guess":[
+ "zweisimmen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"841":{
"bfs":"841",
- "name":"Gsteig bei Gstaad",
- "canton":"",
+ "name":"Gsteig",
+ "canton":"Kanton Bern",
"domain":"gsteig.ch",
"mx":[
"gsteig-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gsteig-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gsteig.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gsteig.ch"
+ ],
+ "guess":[
+ "gsteig.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"842":{
"bfs":"842",
"name":"Lauenen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lauenen.ch",
"mx":[
"lauenen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lauenen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lauenen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lauenen.ch"
+ ],
+ "guess":[
+ "lauenen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"843":{
"bfs":"843",
"name":"Saanen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"saanen.ch",
"mx":[
"mail.saanen.ch"
],
"spf":"v=spf1 mx ip4:195.65.182.181 include:_spf.talus.ch include:_spf.sui-inter.net ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:195.65.182.181 include:_spf.talus.ch include:_spf.sui-inter.net ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saanen.ch"
+ ],
+ "guess":[
+ "saanen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"852":{
"bfs":"852",
"name":"Guggisberg",
- "canton":"",
- "domain":"guggisberg.ch",
+ "canton":"Kanton Bern",
+ "domain":"guggisberg-be.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch v=spf1 include:spf.mail.hostpoint.ch ?all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "guggisbergbe-ch02e.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX guggisbergbe-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "guggisberg-be.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"853":{
"bfs":"853",
"name":"Rüschegg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"rueschegg.ch",
"mx":[
"rueschegg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a mx a:rlx5.loginserver.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a mx a:rlx5.loginserver.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rueschegg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rueschegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rueschegg.ch"
+ ],
+ "guess":[
+ "rueschegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"855":{
"bfs":"855",
"name":"Schwarzenburg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schwarzenburg.ch",
"mx":[
"mail.format-ag.ch",
@@ -7611,18 +26200,42 @@
],
"spf":"v=spf1 mx ip4:194.88.197.38 ip4:194.88.197.163 include:spf.mail.weloveyou.systems include:_spf.talus.ch include:_spf.sui-inter.net ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:194.88.197.38 ip4:194.88.197.163 include:spf.mail.weloveyou.systems include:_spf.talus.ch include:_spf.sui-inter.net ~all v=spf1 ip4:116.203.100.62 ip4:159.69.40.100 ?all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "be.ch",
+ "hispeed.ch",
+ "schwarzenburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwarzenburg.ch"
+ ],
+ "guess":[
+ "schwarzenburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"861":{
"bfs":"861",
"name":"Belp",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"belp.ch",
"mx":[
"mail.format-ag.ch",
@@ -7632,66 +26245,209 @@
],
"spf":"v=spf1 include:spf.mailjet.com a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mailjet.com a include:_spf.talus.ch -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "belp.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "belp.ch"
+ ],
+ "guess":[
+ "belp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"863":{
"bfs":"863",
"name":"Burgistein",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"burgistein.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 a:smtp.iz-net.ch include:itds-net.ch include:welsrv01.trendhosting-net.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:smtp.iz-net.ch include:itds-net.ch include:welsrv01.trendhosting-net.ch -all v=spf1 ip4:5.148.174.0/26 ip4:5.148.182.96/27 ip6:2a02:418:200d::/48 ip6:2a02:418:2014::/48 ip4:5.102.145.171 ip6:2a06:c01:1:1102::91ab:171 ip4:5.102.147.30 ip6:2a06:c01:1:1104::30 ip4:5.102.146.125 ip6:2a06:c01:1:1103::927d:125 ip4:5.102.147.31 ip6:2a06:c01:1:1104::931f:31 ip4:5.102.145.228 ip6:2a06:c01:1:1102::91e4:228 ip4:5.102.147.242 ip6:2a06:c01:1:1104::93f2:242 ip4:5.102.146.93 ip6:2a06:c01:1:1103::925d:93 ip4:5.102.146.116 ip6:2a06:c01:1:1103::9274:116 -all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.iz-region-bern.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "burgistein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "burgistein.ch"
+ ],
+ "guess":[
+ "burgistein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"866":{
"bfs":"866",
"name":"Gerzensee",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gerzensee.ch",
"mx":[
"gerzensee-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:webcms.ruf.ch include:_spf.talus.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch include:_spf.talus.ch include:spf.protection.outlook.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gerzensee-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gerzensee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gerzensee.ch"
+ ],
+ "guess":[
+ "gerzensee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"867":{
"bfs":"867",
"name":"Gurzelen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gurzelen.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gurzelen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gurzelen.ch"
+ ],
+ "guess":[
+ "gurzelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"868":{
"bfs":"868",
@@ -7703,87 +26459,256 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX jaberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jaberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jaberg.ch"
+ ],
+ "guess":[
+ "jaberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"869":{
"bfs":"869",
"name":"Kaufdorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kaufdorf.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 include:spf.iz-net.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.iz-net.ch -all v=spf1 ip4:217.11.219.137 ip4:212.103.81.254 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.iz-region-bern.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kaufdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kaufdorf.ch"
+ ],
+ "guess":[
+ "kaufdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"870":{
"bfs":"870",
"name":"Kehrsatz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"kehrsatz.ch",
"mx":[
"public.iz-net.ch",
"smtp.iz-net.ch"
],
"spf":"v=spf1 ip4:193.135.56.6 include:spf.iz-net.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:spf.iz-net.ch -all v=spf1 ip4:217.11.219.137 ip4:212.103.81.254 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 15576
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kehrsatz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kehrsatz.ch"
+ ],
+ "guess":[
+ "kehrsatz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"872":{
"bfs":"872",
- "name":"Kirchdorf",
- "canton":"",
+ "name":"Kirchdorf (BE)",
+ "canton":"Kanton Bern",
"domain":"kirchdorf-be.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kirchdorf-be.ch",
+ "kommunalpartner.ch",
+ "wichtrach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kirchdorf-be.ch"
+ ],
+ "guess":[
+ "kirchdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"877":{
"bfs":"877",
"name":"Niedermuhlern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"niedermuhlern.ch",
"mx":[
"exchange.hosttech.eu"
],
"spf":"v=spf1 +mx +a include:_spf.mail.hostserv.eu ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 +mx +a include:_spf.mail.hostserv.eu ~all v=spf1 a:mailhost.hostserv.eu a:mailhost.hosttech.eu include:_spf.v4.hosttech.eu include:_spf.v6.1.hosttech.eu include:_spf.v6.2.hosttech.eu ~all v=spf1 ip4:193.203.253.22 ip4:193.203.253.23 ip4:193.203.253.24 ip4:193.203.253.25 ip4:193.203.253.26 ip4:193.203.253.27 ip4:45.131.252.247 ip4:45.131.252.248 ip4:45.131.252.249 ip4:45.131.253.4 ip4:45.131.253.5 ip4:45.131.253.7 ~all v=spf1 ip6:2001:1680:101:83a::79 ip6:2001:1680:101:83a::8f ip6:2001:1680:101:83a::91 ip6:2001:1680:101:83a::95 ip6:2001:1680:101:83a::9d ip6:2001:1680:101:83a::d6 ~all v=spf1 ip6:2a11:8b80:1000:1::46 ip6:2a11:8b80:1000:1::47 ip6:2a11:8b80:1000:1::48 ip6:2a11:8b80:1000:1::49 ip6:2a11:8b80:1000:1::4a ip6:2a11:8b80:1000:1::4b ~all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_cname":"exchange.hosttech.eu"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "niedermuhlern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niedermuhlern.ch"
+ ],
+ "guess":[
+ "niedermuhlern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"879":{
"bfs":"879",
"name":"Riggisberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"riggisberg.ch",
"mx":[
"mail.format-ag.ch",
@@ -7793,18 +26718,41 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:itds-net.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:itds-net.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:5.148.174.0/26 ip4:5.148.182.96/27 ip6:2a02:418:200d::/48 ip6:2a02:418:2014::/48 ip4:5.102.145.171 ip6:2a06:c01:1:1102::91ab:171 ip4:5.102.147.30 ip6:2a06:c01:1:1104::30 ip4:5.102.146.125 ip6:2a06:c01:1:1103::927d:125 ip4:5.102.147.31 ip6:2a06:c01:1:1104::931f:31 ip4:5.102.145.228 ip6:2a06:c01:1:1102::91e4:228 ip4:5.102.147.242 ip6:2a06:c01:1:1104::93f2:242 ip4:5.102.146.93 ip6:2a06:c01:1:1103::925d:93 ip4:5.102.146.116 ip6:2a06:c01:1:1103::9274:116 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "itds.ch",
+ "riggisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "riggisberg.ch"
+ ],
+ "guess":[
+ "riggisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"880":{
"bfs":"880",
"name":"Rüeggisberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"rueggisberg.ch",
"mx":[
"mx-in-01.itds.ch",
@@ -7812,15 +26760,26 @@
],
"spf":"v=spf1 a mx include:itds-net.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:itds-net.ch -all v=spf1 ip4:5.148.174.0/26 ip4:5.148.182.96/27 ip6:2a02:418:200d::/48 ip6:2a02:418:2014::/48 ip4:5.102.145.171 ip6:2a06:c01:1:1102::91ab:171 ip4:5.102.147.30 ip6:2a06:c01:1:1104::30 ip4:5.102.146.125 ip6:2a06:c01:1:1103::927d:125 ip4:5.102.147.31 ip6:2a06:c01:1:1104::931f:31 ip4:5.102.145.228 ip6:2a06:c01:1:1102::91e4:228 ip4:5.102.147.242 ip6:2a06:c01:1:1104::93f2:242 ip4:5.102.146.93 ip6:2a06:c01:1:1103::925d:93 ip4:5.102.146.116 ip6:2a06:c01:1:1103::9274:116 -all",
- "mx_asns":[
- 59414
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "itds.ch",
+ "rueggisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rueggisberg.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"883":{
"bfs":"883",
"name":"Seftigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"seftigen.ch",
"mx":[
"mx1.thun.ch",
@@ -7828,37 +26787,87 @@
],
"spf":"v=spf1 a mx ip4:82.220.26.128/26 include:spf.protection.cyon.net ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:82.220.26.128/26 include:spf.protection.cyon.net ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.thun.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seftigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seftigen.ch"
+ ],
+ "guess":[
+ "seftigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"884":{
"bfs":"884",
"name":"Toffen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"toffen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "toffen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "toffen.ch"
+ ],
+ "guess":[
+ "toffen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"885":{
"bfs":"885",
"name":"Uttigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"uttigen.ch",
"mx":[
"mail.format-ag.ch",
@@ -7868,18 +26877,38 @@
],
"spf":"v=spf1 a mx include:_spf.talus.ch include:spf.mail.webland.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:_spf.talus.ch include:spf.mail.webland.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "uttigen.ch"
+ ],
+ "guess":[
+ "uttigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"886":{
"bfs":"886",
"name":"Wattenwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wattenwil.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -7889,34 +26918,101 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.pcetera.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.pcetera.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 25091
+ "category":"swiss-based",
+ "classification_confidence":70.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"remote.wattenwil.ch"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "intersim.ch",
+ "wattenwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wattenwil.ch"
+ ],
+ "guess":[
+ "wattenwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"888":{
"bfs":"888",
- "name":"Wald",
- "canton":"",
+ "name":"Wald (BE)",
+ "canton":"Kanton Bern",
"domain":"wald-be.ch",
"mx":[
"smtp.iz-net.ch"
],
"spf":"v=spf1 include:spf.iz-net.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.iz-net.ch -all v=spf1 ip4:217.11.219.137 ip4:212.103.81.254 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 15576
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wald-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wald-be.ch"
+ ],
+ "guess":[
+ "gemeinde-wald.ch",
+ "wald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"889":{
"bfs":"889",
"name":"Thurnen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"thurnen.ch",
"mx":[
"mail.format-ag.ch",
@@ -7924,18 +27020,41 @@
],
"spf":"v=spf1 include:itds-net.ch include:_spf.pcetera.ch include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:itds-net.ch include:_spf.pcetera.ch include:_spf.talus.ch -all v=spf1 ip4:5.148.174.0/26 ip4:5.148.182.96/27 ip6:2a02:418:200d::/48 ip6:2a02:418:2014::/48 ip4:5.102.145.171 ip6:2a06:c01:1:1102::91ab:171 ip4:5.102.147.30 ip6:2a06:c01:1:1104::30 ip4:5.102.146.125 ip6:2a06:c01:1:1103::927d:125 ip4:5.102.147.31 ip6:2a06:c01:1:1104::931f:31 ip4:5.102.145.228 ip6:2a06:c01:1:1102::91e4:228 ip4:5.102.147.242 ip6:2a06:c01:1:1104::93f2:242 ip4:5.102.146.93 ip6:2a06:c01:1:1103::925d:93 ip4:5.102.146.116 ip6:2a06:c01:1:1103::9274:116 -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "itds.ch",
+ "thurnen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thurnen.ch"
+ ],
+ "guess":[
+ "thurnen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"901":{
"bfs":"901",
"name":"Eggiwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"eggiwil.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -7945,37 +27064,78 @@
],
"spf":"v=spf1 mx ip4:212.101.27.209 include:spf.zic-network.ch include:_spf.pcetera.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:212.101.27.209 include:spf.zic-network.ch include:_spf.pcetera.ch ~all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"hornetsecurity",
- "mx_asns":[
- 25091
- ],
- "autodiscover":{
- "autodiscover_srv":"remote.eggiwil.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "eggiwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eggiwil.ch"
+ ],
+ "guess":[
+ "eggiwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"902":{
"bfs":"902",
"name":"Langnau im Emmental",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"langnau-ie.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a:remote.langnau-ie.ch ip4:193.135.56.6 include:spf.crsend.com +mx +a include:spf.mail.balzcloud.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:remote.langnau-ie.ch ip4:193.135.56.6 include:spf.crsend.com +mx +a include:spf.mail.balzcloud.ch ~all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all v=spf1 ip4:46.247.34.140 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"remote.langnau-ie.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "langnau-ie.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "langnau-ie.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"903":{
"bfs":"903",
"name":"Lauperswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"lauperswil.ch",
"mx":[
"mail.format-ag.ch",
@@ -7983,36 +27143,126 @@
],
"spf":"v=spf1 include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lauperswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lauperswil.ch"
+ ],
+ "guess":[
+ "lauperswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"904":{
"bfs":"904",
"name":"Röthenbach im Emmental",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"roethenbach.ch",
"mx":[
"roethenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX roethenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.roethenbach.ch CNAME → selector1-roethenbach-ch._domainkey.roethenbachch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.roethenbach.ch CNAME → selector2-roethenbach-ch._domainkey.roethenbachch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roethenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roethenbach.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"905":{
"bfs":"905",
"name":"Rüderswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ruederswil.ch",
"mx":[
"mail.format-ag.ch",
@@ -8021,36 +27271,116 @@
],
"spf":"v=spf1 include:spf.computech.ch include:_spf.talus.ch mx a:mrmuensingen01.muensingen.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.computech.ch include:_spf.talus.ch mx a:mrmuensingen01.muensingen.ch -all v=spf1 ip4:212.103.88.149/32 ip4:212.41.202.247/32 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruederswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruederswil.ch"
+ ],
+ "guess":[
+ "ruederswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"906":{
"bfs":"906",
"name":"Schangnau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"schangnau.ch",
"mx":[
"schangnau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.zic-network.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.zic-network.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schangnau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schangnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schangnau.ch"
+ ],
+ "guess":[
+ "schangnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"907":{
"bfs":"907",
"name":"Signau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"signau.ch",
"mx":[
"mail.format-ag.ch",
@@ -8059,99 +27389,455 @@
],
"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch include:spf.zic-network.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch include:spf.zic-network.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riz.muensingen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "signau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "signau.ch"
+ ],
+ "guess":[
+ "signau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"908":{
"bfs":"908",
"name":"Trub",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"trub.ch",
"mx":[
"trub-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:trub.hikunden.ch ip4:164.128.184.242 include:_spf.ewmail.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:trub.hikunden.ch ip4:164.128.184.242 include:_spf.ewmail.com include:spf.protection.outlook.com -all v=spf1 include:_mail-netblocks.ewmail.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.71.98.227/32 ip4:212.71.100.64/28 ip4:212.71.111.0/24 ip4:212.71.120.144/28 ip4:212.71.126.64/28 ip4:212.71.126.230/32 ip4:217.71.89.107/32 ip4:217.71.92.92/32 ip4:217.71.92.93/32 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX trub-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trub.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trub.ch"
+ ],
+ "guess":[
+ "trub.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"909":{
"bfs":"909",
"name":"Trubschachen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"trubschachen.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a:mail.dsl-schweiz.ch ip4:46.140.158.131 ip4:87.237.172.249 ip4:80.243.212.135 ip4:93.189.64.7 include:spf.zic-network.ch include:spf.protection.outlook.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:mail.dsl-schweiz.ch ip4:46.140.158.131 ip4:87.237.172.249 ip4:80.243.212.135 ip4:93.189.64.7 include:spf.zic-network.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 15576
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trubschachen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trubschachen.ch"
+ ],
+ "guess":[
+ "trubschachen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"921":{
"bfs":"921",
"name":"Amsoldingen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"amsoldingen.ch",
"mx":[
"amsoldingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.103.81.85 ip4:109.164.225.66 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.103.81.85 ip4:109.164.225.66 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX amsoldingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "amsoldingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "amsoldingen.ch"
+ ],
+ "guess":[
+ "amsoldingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"922":{
"bfs":"922",
"name":"Blumenstein",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"blumenstein.ch",
"mx":[
"blumenstein-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX blumenstein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "blumenstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "blumenstein.ch"
+ ],
+ "guess":[
+ "blumenstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"923":{
"bfs":"923",
"name":"Buchholterberg",
- "canton":"",
- "domain":"heimenschwand.ch",
- "mx":[
- "antispamgate01.bull-services.ch",
- "antispamgate02.bull-services.ch"
- ],
- "spf":"v=spf1 mx a buchholterberg.cloudrexx.com",
- "provider":"independent"
+ "canton":"Kanton Bern",
+ "domain":"buchholterberg.ch",
+ "mx":[
+ "buchholterberg-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com include:pcetera.ch ip4:193.135.56.6 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buchholterberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchholterberg.ch"
+ ],
+ "redirect":[
+ "buchholterberg.ch"
+ ],
+ "wikidata":[
+ "heimenschwand.ch"
+ ],
+ "guess":[
+ "buchholterberg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree",
+ "website_mismatch"
+ ]
},
"924":{
"bfs":"924",
"name":"Eriz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"eriz.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -8161,19 +27847,28 @@
],
"spf":"v=spf1 a mx ptr include:pcetera.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ptr include:pcetera.ch ~all v=spf1 mx ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com include:spf.mail.weloveyou.systems ~all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all v=spf1 ip4:116.203.100.62 ip4:159.69.40.100 ?all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"hornetsecurity",
- "mx_asns":[
- 25091
- ],
- "autodiscover":{
- "autodiscover_srv":"owa2.oneaccess.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "eriz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eriz.ch"
+ ],
+ "guess":[
+ "eriz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"925":{
"bfs":"925",
"name":"Fahrni",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"gemeinde-fahrni.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -8183,19 +27878,29 @@
],
"spf":"v=spf1 include:_spf.pcetera.ch include:spf.cloudrexx.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.pcetera.ch include:spf.cloudrexx.com -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:80.74.136.182 ip4:80.74.128.231 ip4:80.74.128.204 -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"hornetsecurity",
- "mx_asns":[
- 25091
- ],
- "autodiscover":{
- "autodiscover_srv":"remote.gemeinde-fahrni.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "gemeinde-fahrni.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-fahrni.ch"
+ ],
+ "guess":[
+ "fahrni.ch",
+ "gemeinde-fahrni.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"927":{
"bfs":"927",
"name":"Heiligenschwendi",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"heiligenschwendi.ch",
"mx":[
"mx01.servicehoster.ch",
@@ -8203,29 +27908,84 @@
],
"spf":"v=spf1 include:servicehoster.ch include:spf1.egeko.ch a mx ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:servicehoster.ch include:spf1.egeko.ch a mx ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 1836
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "heiligenschwendi.ch"
+ ],
+ "guess":[
+ "heiligenschwendi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"928":{
"bfs":"928",
"name":"Heimberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"heimberg.ch",
"mx":[
"mx1.thun.ch",
"mx2.thun.ch"
],
"spf":"v=spf1 ip4:82.220.26.128/26 ip4:212.103.81.85 ip4:146.4.11.86 include:spf.internetgalerie.ch include:spf.protection.outlook.com include:_spf.talus.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:82.220.26.128/26 ip4:212.103.81.85 ip4:146.4.11.86 include:spf.internetgalerie.ch include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:193.222.138.0/24 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.thun.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "heimberg.ch"
+ ],
+ "guess":[
+ "heimberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"929":{
"bfs":"929",
@@ -8237,144 +27997,554 @@
"mx2.thun.ch"
],
"spf":"v=spf1 ip4:82.220.26.128/26 include:spf.mail.weloveyou.systems mx include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:82.220.26.128/26 include:spf.mail.weloveyou.systems mx include:spf.protection.outlook.com -all v=spf1 ip4:116.203.100.62 ip4:159.69.40.100 ?all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.thun.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "hilterfingen.ch"
+ ],
+ "guess":[
+ "hilterfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"931":{
"bfs":"931",
"name":"Homberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"homberg.ch",
"mx":[
"homberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX homberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "homberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "homberg.ch"
+ ],
+ "guess":[
+ "homberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"932":{
"bfs":"932",
"name":"Horrenbach-Buchen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"horrenbach-buchen.ch",
"mx":[
"horrenbachbuchen-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.firestorm.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.firestorm.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a ip4:185.85.109.0/24 ip4:185.85.110.0/24 ip4:185.85.111.0/24 ip6:2a14:6640:100::/56 ip6:2a14:6640:200::/56 ip6:2a14:6640:300::/56 include:spf2.firestorm.ch include:spf.protection.outlook.com -all v=spf1 ip4:46.140.230.168/29 ip4:82.197.173.42/29 ip4:109.234.111.22 ip4:109.234.111.38 ip4:109.234.111.46 ip4:91.201.57.134/28 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"horrenbach-buchen.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX horrenbachbuchen-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "horrenbach-buchen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "horrenbach-buchen.ch"
+ ],
+ "guess":[
+ "horrenbach-buchen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"934":{
"bfs":"934",
"name":"Oberhofen am Thunersee",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberhofen.ch",
"mx":[
"mx1.thun.ch",
"mx2.thun.ch"
],
"spf":"v=spf1 ip4:82.220.26.128/26 mx include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:82.220.26.128/26 mx include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.thun.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oberhofen.ch CNAME → selector1-oberhofen-ch._domainkey.stadtthun.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oberhofen.ch CNAME → selector2-oberhofen-ch._domainkey.stadtthun.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberhofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberhofen.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"935":{
"bfs":"935",
"name":"Oberlangenegg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberlangenegg.ch",
"mx":[
"oberlangenegg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberlangenegg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberlangenegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberlangenegg.ch"
+ ],
+ "guess":[
+ "oberlangenegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"936":{
"bfs":"936",
"name":"Pohlern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"pohlern.ch",
"mx":[
"pohlern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:185.136.122.14 include:spf.protection.outlook.com include:spf1.egeko.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:185.136.122.14 include:spf.protection.outlook.com include:spf1.egeko.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pohlern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pohlern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pohlern.ch"
+ ],
+ "guess":[
+ "pohlern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"938":{
"bfs":"938",
"name":"Sigriswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sigriswil.ch",
"mx":[
"emailsecurity.sigriswil.ch"
],
"spf":"v=spf1 a mx ip4:109.164.226.120/29 ip4:193.135.56.6 include:_spf.talus.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx ip4:109.164.226.120/29 ip4:193.135.56.6 include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sigriswil.ch"
+ ],
+ "guess":[
+ "sigriswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"939":{
"bfs":"939",
"name":"Steffisburg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"steffisburg.ch",
"mx":[
"mail.steffisburg.ch"
],
"spf":"v=spf1 mx ip4:192.168.36.0/24 ip4:192.162.205.155/32 ip4:192.162.205.152/32 ip4:62.2.126.112/28 ip4:31.10.206.136/29 ip4:212.71.120.144/28 include:_spf.talus.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:192.168.36.0/24 ip4:192.162.205.155/32 ip4:192.162.205.152/32 ip4:62.2.126.112/28 ip4:31.10.206.136/29 ip4:212.71.120.144/28 include:_spf.talus.ch include:spf.protection.outlook.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.steffisburg.ch CNAME → selector1-steffisburg-ch._domainkey.steffisburg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.steffisburg.ch CNAME → selector2-steffisburg-ch._domainkey.steffisburg.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "steffisburg.ch"
+ ],
+ "guess":[
+ "steffisburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"940":{
"bfs":"940",
- "name":"Teuffenthal",
- "canton":"",
+ "name":"Teuffenthal (BE)",
+ "canton":"Kanton Bern",
"domain":"teuffenthal.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -8382,18 +28552,34 @@
],
"spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch v=spf1 include:spf.mail.hostpoint.ch ?all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "teuffenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "teuffenthal.ch"
+ ],
+ "guess":[
+ "teuffenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"941":{
"bfs":"941",
"name":"Thierachern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"thierachern.ch",
"mx":[
"mail.format-ag.ch",
@@ -8403,73 +28589,185 @@
],
"spf":"v=spf1 include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thierachern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thierachern.ch"
+ ],
+ "guess":[
+ "thierachern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"942":{
"bfs":"942",
"name":"Thun",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"thun.ch",
"mx":[
"mx1.thun.ch",
"mx2.thun.ch"
],
"spf":"v=spf1 ip4:82.220.26.128/26 include:spf.internetgalerie.ch mx include:spf.cloudrexx.com include:_spf.i-web.ch include:_spf.sui-inter.net include:spf.protection.outlook.com a:c.spf.service-now.com a:mail.codx.ch include:spf.mandrillapp.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:82.220.26.128/26 include:spf.internetgalerie.ch mx include:spf.cloudrexx.com include:_spf.i-web.ch include:_spf.sui-inter.net include:spf.protection.outlook.com a:c.spf.service-now.com a:mail.codx.ch include:spf.mandrillapp.com -all v=spf1 ip4:193.222.138.0/24 -all v=spf1 ip4:80.74.136.182 ip4:80.74.128.231 ip4:80.74.128.204 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 9044
- ],
- "autodiscover":{
- "autodiscover_cname":"outlook.thun.ch",
- "autodiscover_srv":"outlook.thun.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.thun.ch CNAME → selector1-thun-ch._domainkey.stadtthun.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.thun.ch CNAME → selector2-thun-ch._domainkey.stadtthun.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thun.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thun.ch"
+ ],
+ "guess":[
+ "stadt-thun.ch",
+ "thun.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"943":{
"bfs":"943",
"name":"Uebeschi",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"uebeschi.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a a:owa.itze.ch include:spf.mail.balzcloud.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a a:owa.itze.ch include:spf.mail.balzcloud.ch -all v=spf1 ip4:46.247.34.140 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.itze.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "uebeschi.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "uebeschi.ch"
+ ],
+ "guess":[
+ "uebeschi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"944":{
"bfs":"944",
"name":"Uetendorf",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"uetendorf.ch",
"mx":[
"uetendorf-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:83.173.216.104/29 ip4:193.135.56.6 ip4:194.56.218.181 include:_spf.ch.seppmail.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:83.173.216.104/29 ip4:193.135.56.6 ip4:194.56.218.181 include:_spf.ch.seppmail.cloud -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
"gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
- ]
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "uetendorf.ch"
+ ],
+ "guess":[
+ "uetendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"945":{
"bfs":"945",
"name":"Unterlangenegg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"unterlangenegg.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -8479,21 +28777,47 @@
],
"spf":"v=spf1 ip4:80.74.155.167 include:_spf.pcetera.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:80.74.155.167 include:_spf.pcetera.ch -all v=spf1 ip4:194.56.132.16/28 ip4:185.187.228.5/32 include:spf.hornetsecurity.com -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "unterlangenegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unterlangenegg.ch"
+ ],
+ "guess":[
+ "unterlangenegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"946":{
"bfs":"946",
"name":"Wachseldorn",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wachseldorn.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -8503,45 +28827,97 @@
],
"spf":"",
"provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":60.0,
+ "classification_signals":[],
"gateway":"hornetsecurity",
- "mx_asns":[
- 25091
- ]
+ "sources_detail":{
+ "scrape":[
+ "wachseldorn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wachseldorn.ch"
+ ],
+ "guess":[
+ "wachseldorn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"948":{
"bfs":"948",
"name":"Forst-Längenbühl",
- "canton":"",
- "domain":"forst-laengenbuehl.ch",
+ "canton":"Kanton Bern",
+ "domain":"3636.ch",
"mx":[
- "antispamgate01.bull-services.ch",
- "antispamgate02.bull-services.ch"
+ "mx-cluster01-hz13.hornetsecurity.ch",
+ "mx-cluster02-hz13.hornetsecurity.ch",
+ "mx-cluster03-hz13.hornetsecurity.ch",
+ "mx-cluster04-hz13.hornetsecurity.ch"
],
- "spf":"",
- "provider":"independent"
+ "spf":"v=spf1 include:_spf.pcetera.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "override":[
+ "3636.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"951":{
"bfs":"951",
"name":"Affoltern im Emmental",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"affolternimemmental.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a:owa.itze.ch include:itds-net.ch include:_spf.talus.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:owa.itze.ch include:itds-net.ch include:_spf.talus.ch ~all v=spf1 ip4:5.148.174.0/26 ip4:5.148.182.96/27 ip6:2a02:418:200d::/48 ip6:2a02:418:2014::/48 ip4:5.102.145.171 ip6:2a06:c01:1:1102::91ab:171 ip4:5.102.147.30 ip6:2a06:c01:1:1104::30 ip4:5.102.146.125 ip6:2a06:c01:1:1103::927d:125 ip4:5.102.147.31 ip6:2a06:c01:1:1104::931f:31 ip4:5.102.145.228 ip6:2a06:c01:1:1102::91e4:228 ip4:5.102.147.242 ip6:2a06:c01:1:1104::93f2:242 ip4:5.102.146.93 ip6:2a06:c01:1:1103::925d:93 ip4:5.102.146.116 ip6:2a06:c01:1:1103::9274:116 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.itze.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "affolternimemmental.ch"
+ ],
+ "guess":[
+ "affolternimemmental.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"952":{
"bfs":"952",
"name":"Dürrenroth",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"duerrenroth.ch",
"mx":[
"mail.format-ag.ch",
@@ -8551,55 +28927,178 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "duerrenroth.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duerrenroth.ch"
+ ],
+ "guess":[
+ "duerrenroth.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"953":{
"bfs":"953",
"name":"Eriswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"eriswil.ch",
"mx":[
"eriswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:remote.eriswil.ch ip4:213.200.243.187 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:remote.eriswil.ch ip4:213.200.243.187 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"remote.eriswil.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eriswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eriswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eriswil.ch"
+ ],
+ "guess":[
+ "eriswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"954":{
"bfs":"954",
"name":"Huttwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"huttwil.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a a:owa.huttwil.ch ip4:193.135.56.6 include:_spf.i-web.ch include:_spf.talus.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a a:owa.huttwil.ch ip4:193.135.56.6 include:_spf.i-web.ch include:_spf.talus.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.huttwil.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "huttwil.ch"
+ ],
+ "guess":[
+ "huttwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"955":{
"bfs":"955",
"name":"Lützelflüh",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"luetzelflueh.ch",
"mx":[
"mail.format-ag.ch",
@@ -8609,380 +29108,1568 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "luetzelflueh.ch"
+ ],
+ "guess":[
+ "luetzelflueh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"956":{
"bfs":"956",
"name":"Rüegsau",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ruegsau.ch",
"mx":[
"ruegsau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ruegsau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ruegsau.ch CNAME → selector1-ruegsau-ch._domainkey.gemeinderueegsau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ruegsau.ch CNAME → selector2-ruegsau-ch._domainkey.gemeinderueegsau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruegsau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruegsau.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"957":{
"bfs":"957",
"name":"Sumiswald",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"sumiswald.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a:owa.sumiswald.ch mx:talus.ch ip4:134.119.224.42 include:spf.mail.balzcloud.ch include:_spf.talus.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:owa.sumiswald.ch mx:talus.ch ip4:134.119.224.42 include:spf.mail.balzcloud.ch include:_spf.talus.ch -all v=spf1 ip4:46.247.34.140 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.sumiswald.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sumiswald.ch"
+ ],
+ "guess":[
+ "sumiswald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"958":{
"bfs":"958",
"name":"Trachselwald",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"trachselwald.ch",
"mx":[
"trachselwald-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.mail.balzcloud.ch include:spf.zic-network.ch include:spf.protection.outlook.com include:spf1.egeko.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.mail.balzcloud.ch include:spf.zic-network.ch include:spf.protection.outlook.com include:spf1.egeko.ch ~all v=spf1 ip4:46.247.34.140 ~all v=spf1 ip4:193.47.103.22 ip4:193.47.103.25 ip4:193.47.103.28 ip4:193.47.103.50 ip4:193.47.103.52 ip4:193.47.103.53 ip4:193.47.103.54 ip4:193.47.103.55 ip4:193.47.103.56 ip4:193.47.103.57 ip4:193.47.103.58 ip6:2a00:c38:11a:103::22 ip6:2a00:c38:11a:103::25 ip6:2a00:c38:11a:103::28 ip6:2a00:c38:11a:103:0:0:0:25 ip6:2a00:c38:11a:103:0:0:0:28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX trachselwald-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.trachselwald.ch CNAME → selector1-trachselwald-ch._domainkey.trachselwald.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.trachselwald.ch CNAME → selector2-trachselwald-ch._domainkey.trachselwald.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trachselwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trachselwald.ch"
+ ],
+ "guess":[
+ "trachselwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"959":{
"bfs":"959",
- "name":"Walterswil",
- "canton":"",
+ "name":"Walterswil (BE)",
+ "canton":"Kanton Bern",
"domain":"walterswil-be.ch",
"mx":[
"walterswilbe-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX walterswilbe-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "walterswil-be.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walterswil-be.ch"
+ ],
+ "guess":[
+ "walterswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"960":{
"bfs":"960",
"name":"Wyssachen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wyssachen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 a mx a:mail-gateway-shared01.cyon.net ip4:194.126.4.84 include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx a:mail-gateway-shared01.cyon.net ip4:194.126.4.84 include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wyssachen.ch"
+ ],
+ "guess":[
+ "wyssachen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"971":{
"bfs":"971",
"name":"Attiswil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"attiswil.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.sui-inter.net -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.sui-inter.net -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "attiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "attiswil.ch"
+ ],
+ "guess":[
+ "attiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"972":{
"bfs":"972",
"name":"Berken",
- "canton":"",
- "domain":"berken.ch",
+ "canton":"Kanton Bern",
+ "domain":"inkwil.ch",
"mx":[
- "mx01.tophost.ch",
- "mx02.tophost.ch"
- ],
- "spf":"v=spf1 ip4:194.150.248.14 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +include:spf1.egeko.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:194.150.248.14 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +include:spf1.egeko.ch -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 35206
+ "inkwil-ch.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX inkwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.inkwil.ch CNAME → selector1-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.inkwil.ch CNAME → selector2-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "inkwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"973":{
"bfs":"973",
"name":"Bettenhausen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"bettenhausen.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 a mx include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 a mx include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bettenhausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bettenhausen.ch"
+ ],
+ "guess":[
+ "bettenhausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"975":{
"bfs":"975",
"name":"Farnern",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"farnern.ch",
"mx":[
"farnern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX farnern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.farnern.ch CNAME → selector1-farnern-ch._domainkey.gemeindefarnernch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.farnern.ch CNAME → selector2-farnern-ch._domainkey.gemeindefarnernch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "farnern.ch"
+ ],
+ "guess":[
+ "farnern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"976":{
"bfs":"976",
"name":"Graben",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"graben.ch",
"mx":[
"graben-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:relay.mailchannels.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:relay.mailchannels.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX graben-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "graben.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "graben.ch"
+ ],
+ "guess":[
+ "graben.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"977":{
"bfs":"977",
"name":"Heimenhausen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"heimenhausen.ch",
"mx":[
"heimenhausen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX heimenhausen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "heimenhausen.ch"
+ ],
+ "guess":[
+ "heimenhausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"979":{
"bfs":"979",
"name":"Herzogenbuchsee",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"herzogenbuchsee.ch",
"mx":[
"herzogenbuchsee-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a Include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud a:mail.obt-services.ch ip4:213.221.253.83 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a Include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud a:mail.obt-services.ch ip4:213.221.253.83 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX herzogenbuchsee-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.herzogenbuchsee.ch CNAME → selector1-herzogenbuchsee-ch._domainkey.herzogenbuchseecloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.herzogenbuchsee.ch CNAME → selector2-herzogenbuchsee-ch._domainkey.herzogenbuchseecloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "herzogenbuchsee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herzogenbuchsee.ch"
+ ],
+ "guess":[
+ "herzogenbuchsee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"980":{
"bfs":"980",
"name":"Inkwil",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"inkwil.ch",
"mx":[
"inkwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX inkwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.inkwil.ch CNAME → selector1-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.inkwil.ch CNAME → selector2-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "be.prosenectute.ch",
+ "inkwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "inkwil.ch"
+ ],
+ "guess":[
+ "inkwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"981":{
"bfs":"981",
"name":"Niederbipp",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"niederbipp.ch",
"mx":[
"niederbipp-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niederbipp-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.niederbipp.ch CNAME → selector1-niederbipp-ch._domainkey.gemeindeniederbippch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.niederbipp.ch CNAME → selector2-niederbipp-ch._domainkey.gemeindeniederbippch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederbipp.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederbipp.ch"
+ ],
+ "guess":[
+ "niederbipp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"982":{
"bfs":"982",
"name":"Niederönz",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"niederoenz.ch",
"mx":[
"niederoenz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niederoenz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "niederoenz.ch"
+ ],
+ "guess":[
+ "niederoenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"983":{
"bfs":"983",
"name":"Oberbipp",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"oberbipp.ch",
"mx":[
"oberbipp-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com IP4:213.221.250.130 include:_spf.sui-inter.net include:_spf.talus.ch +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com IP4:213.221.250.130 include:_spf.sui-inter.net include:_spf.talus.ch +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberbipp-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oberbipp.ch"
+ ],
+ "guess":[
+ "oberbipp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"985":{
"bfs":"985",
"name":"Ochlenberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"ochlenberg.ch",
"mx":[
"mailgate.zic-network.ch"
],
"spf":"v=spf1 a mx a:owa.itze.ch ~all",
- "provider":"swiss-isp",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.itze.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ochlenberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ochlenberg.ch"
+ ],
+ "guess":[
+ "ochlenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"987":{
"bfs":"987",
"name":"Rumisberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"rumisberg.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 ip4:193.135.56.6 mx include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 mx include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rumisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rumisberg.ch"
+ ],
+ "guess":[
+ "rumisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"988":{
"bfs":"988",
"name":"Seeberg",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"seeberg.ch",
"mx":[
"seeberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX seeberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seeberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seeberg.ch"
+ ],
+ "guess":[
+ "seeberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"989":{
"bfs":"989",
"name":"Thörigen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"thoerigen.ch",
"mx":[
"thoerigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX thoerigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "thoerigen.ch"
+ ],
+ "guess":[
+ "thoerigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"990":{
"bfs":"990",
"name":"Walliswil bei Niederbipp",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"walliswil-bipp.ch",
"mx":[
"mail.format-ag.ch",
@@ -8992,36 +30679,148 @@
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail01.talus.ch",
- "autodiscover_srv":"webmail01.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":62.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "walliswil-bipp.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walliswil-bipp.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"991":{
"bfs":"991",
"name":"Walliswil bei Wangen",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"walliswil.ch",
"mx":[
"walliswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch include:rzmail.hi-ag.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch include:rzmail.hi-ag.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX walliswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.walliswil.ch CNAME → selector1-walliswil-ch._domainkey.gemeindewalliswilbwch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.walliswil.ch CNAME → selector2-walliswil-ch._domainkey.gemeindewalliswilbwch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "walliswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walliswil.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"992":{
"bfs":"992",
"name":"Wangen an der Aare",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wangen-a-a.ch",
"mx":[
"mail.format-ag.ch",
@@ -9031,33 +30830,108 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"www.wangen-a-a.ch",
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wangen-a-a.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wangen-a-a.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"995":{
"bfs":"995",
"name":"Wiedlisbach",
- "canton":"",
+ "canton":"Kanton Bern",
"domain":"wiedlisbach.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wiedlisbach.ch"
+ ],
+ "guess":[
+ "wiedlisbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1001":{
"bfs":"1001",
@@ -9069,13 +30943,77 @@
],
"spf":"v=spf1 a:wan-ip101.schule-doppleschwand.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:wan-ip101.schule-doppleschwand.ch include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX doppleschwand-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "doppleschwand.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "doppleschwand.ch"
+ ],
+ "guess":[
+ "doppleschwand.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1002":{
"bfs":"1002",
@@ -9087,13 +31025,87 @@
],
"spf":"v=spf1 ip4:193.135.56.6 ip4:185.80.66.250/29 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 ip4:185.80.66.250/29 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX entlebuch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.entlebuch.ch CNAME → selector1-entlebuch-ch._domainkey.entlebuch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.entlebuch.ch CNAME → selector2-entlebuch-ch._domainkey.entlebuch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "entlebuch.ch"
+ ],
+ "guess":[
+ "entlebuch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1004":{
"bfs":"1004",
@@ -9105,17 +31117,81 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:217.26.53.175 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:217.26.53.175 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fluehli-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fluehli.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fluehli.ch"
+ ],
+ "guess":[
+ "fluehli.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1005":{
"bfs":"1005",
- "name":"Hasle",
+ "name":"Hasle (LU)",
"canton":"",
"domain":"hasle-lu.ch",
"mx":[
@@ -9123,13 +31199,77 @@
],
"spf":"v=spf1 a:wan-ip101.hasle-lu.ch include:spf.protection.outlook.com include:_spf.mail.hostpoint.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:wan-ip101.hasle-lu.ch include:spf.protection.outlook.com include:_spf.mail.hostpoint.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX haslelu-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hasle-lu.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hasle-lu.ch"
+ ],
+ "guess":[
+ "hasle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1007":{
"bfs":"1007",
@@ -9141,13 +31281,83 @@
],
"spf":"v=spf1 a:wan-ip101.romoos.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:wan-ip101.romoos.ch include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX romoos-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "romoos.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "romoos.ch"
+ ],
+ "guess":[
+ "romoos.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1008":{
"bfs":"1008",
@@ -9159,13 +31369,83 @@
],
"spf":"v=spf1 a mx ip4:217.26.52.10 ip4:164.128.132.128/29 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch include:spf.customer.swiss-egov.cloud a:webmail.schuepfheim.ch include:spf.protection.cyon.net ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:217.26.52.10 ip4:164.128.132.128/29 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch include:spf.customer.swiss-egov.cloud a:webmail.schuepfheim.ch include:spf.protection.cyon.net ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schuepfheim-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schuepfheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schuepfheim.ch"
+ ],
+ "guess":[
+ "schuepfheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1009":{
"bfs":"1009",
@@ -9177,14 +31457,48 @@
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch include:_spf.psm.knowbe4.com include:spf.mail.hostpoint.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch include:_spf.psm.knowbe4.com include:spf.mail.hostpoint.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "werthenstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "werthenstein.ch"
+ ],
+ "guess":[
+ "werthenstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1010":{
"bfs":"1010",
@@ -9196,233 +31510,696 @@
],
"spf":"v=spf1 a mx include:tkcloud.ch include:spf.protection.outlook.com include:_spf.mail.hostpoint.ch include:spf.protection.cyon.net ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:tkcloud.ch include:spf.protection.outlook.com include:_spf.mail.hostpoint.ch include:spf.protection.cyon.net ~all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX escholzmattmarbach-ch02i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "escholzmatt-marbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "escholzmatt-marbach.ch"
+ ],
+ "guess":[
+ "escholzmatt-marbach.ch",
+ "escholzmattmarbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1021":{
"bfs":"1021",
- "name":"Aesch",
- "canton":"",
+ "name":"Aesch (LU)",
+ "canton":"Kanton Luzern",
"domain":"aesch-lu.ch",
"mx":[
"aeschlu-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aeschlu-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aesch-lu.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aesch-lu.ch"
+ ],
+ "guess":[
+ "aesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1023":{
"bfs":"1023",
"name":"Ballwil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"ballwil.ch",
"mx":[
"mail.ballwil.ch"
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ballwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ballwil.ch"
+ ],
+ "guess":[
+ "ballwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1024":{
"bfs":"1024",
"name":"Emmen",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"emmen.ch",
"mx":[
"mail.emmen.ch"
],
"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch include:spf.abacuscity.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "emmen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "emmen.ch"
+ ],
+ "guess":[
+ "emmen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1025":{
"bfs":"1025",
"name":"Ermensee",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"ermensee.ch",
"mx":[
"mail.ermensee.ch"
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ermensee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ermensee.ch"
+ ],
+ "guess":[
+ "ermensee.ch",
+ "ermensee.lu.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1026":{
"bfs":"1026",
- "name":"Eschenbach",
- "canton":"",
+ "name":"Eschenbach (LU)",
+ "canton":"Kanton Luzern",
"domain":"eschenbach-luzern.ch",
"mx":[
"mail.eschenbach-luzern.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eschenbach-luzern.ch"
+ ],
+ "guess":[
+ "eschenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1030":{
"bfs":"1030",
"name":"Hitzkirch",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"hitzkirch.ch",
"mx":[
"hitzkirch-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:mail.ostendis.ch include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:mail.ostendis.ch include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hitzkirch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hitzkirch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hitzkirch.ch"
+ ],
+ "guess":[
+ "hitzkirch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1031":{
"bfs":"1031",
"name":"Hochdorf",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"hochdorf.ch",
"mx":[
"mail.hochdorf.ch"
],
"spf":"v=spf1 mx +ip4:193.135.56.6 +ip4:172.211.79.21 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hochdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hochdorf.ch"
+ ],
+ "guess":[
+ "hochdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1032":{
"bfs":"1032",
"name":"Hohenrain",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"hohenrain.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ip4:193.135.56.6 ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ip4:193.135.56.6 ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hohenrain.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hohenrain.ch"
+ ],
+ "guess":[
+ "hohenrain.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1033":{
"bfs":"1033",
"name":"Inwil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"inwil.ch",
"mx":[
"mail.inwil.ch"
],
"spf":"v=spf1 mx ip4:80.74.136.182 ip4:194.124.233.150 include:spf.cloudrexx.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:80.74.136.182 ip4:194.124.233.150 include:spf.cloudrexx.com -all v=spf1 ip4:80.74.136.182 ip4:80.74.128.231 ip4:80.74.128.204 -all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_cname":"inwil.cloudrexx.com",
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "inwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "inwil.ch"
+ ],
+ "guess":[
+ "inwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1037":{
"bfs":"1037",
"name":"Rain",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"rain.ch",
"mx":[
"rain-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abacuscity.ch a:slu-w0ssf1.stadtluzern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abacuscity.ch a:slu-w0ssf1.stadtluzern.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rain-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rain.ch CNAME → selector1-rain-ch._domainkey.rainlucloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rain.ch CNAME → selector2-rain-ch._domainkey.rainlucloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rain.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rain.ch"
+ ],
+ "guess":[
+ "rain.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1039":{
"bfs":"1039",
"name":"Römerswil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"roemerswil.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roemerswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roemerswil.ch"
+ ],
+ "guess":[
+ "roemerswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1040":{
"bfs":"1040",
"name":"Rothenburg",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"rothenburg.ch",
"mx":[
"mail.rothenburg.ch"
],
"spf":"v=spf1 mx include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rothenburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rothenburg.ch"
+ ],
+ "guess":[
+ "rothenburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1041":{
"bfs":"1041",
"name":"Schongau",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"schongau.ch",
"mx":[
"mx1.seabix.cloud",
@@ -9430,86 +32207,392 @@
],
"spf":"v=spf1 mx include:spf.sendinblue.com include:spf.smtp2go.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.sendinblue.com include:spf.smtp2go.com -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 ip4:207.58.147.64/28 ip4:216.22.15.224/27 ip4:43.228.184.0/22 ip4:103.47.204.0/22 ip4:103.2.140.0/22 ip4:203.31.36.0/22 ip4:170.10.68.0/22 ip4:158.120.80.0/21 ip4:66.235.120.0/21 ip4:194.195.251.175 ~all",
- "mx_asns":[
- 15623,
- 214060
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.seabix.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schongau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schongau.ch"
+ ],
+ "guess":[
+ "schongau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1051":{
"bfs":"1051",
"name":"Adligenswil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"adligenswil.ch",
"mx":[
"adligenswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:ews45.everyware.ch include:tkcloud.ch ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:ews45.everyware.ch include:tkcloud.ch ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX adligenswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.adligenswil.ch CNAME → selector1-adligenswil-ch._domainkey.gdeverwaltungadligenswil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.adligenswil.ch CNAME → selector2-adligenswil-ch._domainkey.gdeverwaltungadligenswil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "adligenswil.ch"
+ ],
+ "guess":[
+ "adligenswil.ch",
+ "gemeinde-adligenswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1052":{
"bfs":"1052",
"name":"Buchrain",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"buchrain.ch",
"mx":[
"buchrain-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buchrain-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buchrain.ch CNAME → selector1-buchrain-ch._domainkey.buchrain.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buchrain.ch CNAME → selector2-buchrain-ch._domainkey.buchrain.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchrain.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchrain.ch"
+ ],
+ "guess":[
+ "buchrain.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1053":{
"bfs":"1053",
"name":"Dierikon",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"dierikon.ch",
"mx":[
"dierikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dierikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dierikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dierikon.ch"
+ ],
+ "guess":[
+ "dierikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1054":{
"bfs":"1054",
"name":"Ebikon",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"ebikon.ch",
"mx":[
"ebikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:81.62.185.142 ip4:46.227.226.108 ip4:146.4.16.26 ip4:212.80.96.0/21 ip4:91.194.196.10 ip4:87.117.127.202 ip6:2a01:7480:1:100::/64 include:servers.mcsv.net include:spf.protection.outlook.com redirect=spf.mail.hostpoint.ch",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.62.185.142 ip4:46.227.226.108 ip4:146.4.16.26 ip4:212.80.96.0/21 ip4:91.194.196.10 ip4:87.117.127.202 ip6:2a01:7480:1:100::/64 include:servers.mcsv.net include:spf.protection.outlook.com redirect=spf.mail.hostpoint.ch v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ebikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ebikon.ch CNAME → selector1-ebikon-ch._domainkey.ebikongemeinde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ebikon.ch CNAME → selector2-ebikon-ch._domainkey.ebikongemeinde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ebikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ebikon.ch"
+ ],
+ "guess":[
+ "ebikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1055":{
"bfs":"1055",
@@ -9521,31 +32604,115 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.vtx.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:spf.vtx.ch ~all v=spf1 ip4:194.38.175.0/24 ip4:194.38.166.0/27 ip4:212.40.2.0/25 ip4:212.109.85.192/27 ip4:212.147.10.0/26 ip4:212.147.62.64/26 ip4:212.147.62.128/27 ip4:212.147.99.24/29 ip4:194.148.30.0/24 ip4:195.15.4.240/28 include:_spf-24x.romandie.hosting -all v=spf1 a:catcher-241.romandie.hosting a:catcher-242.romandie.hosting ~all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gisikon.ch"
+ ],
+ "guess":[
+ "gisikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1056":{
"bfs":"1056",
"name":"Greppen",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"greppen.ch",
"mx":[
"greppen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX greppen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "greppen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "greppen.ch"
+ ],
+ "guess":[
+ "greppen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1058":{
"bfs":"1058",
@@ -9557,123 +32724,446 @@
],
"spf":"v=spf1 a mx:horw.ch mx:schulen-horw.ch ip4:195.49.6.49 ip4:212.59.163.3 a:mail.i-web.ch include:_spf.i-web.ch include:servers.mcsv.net include:spf.abacuscity.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx:horw.ch mx:schulen-horw.ch ip4:195.49.6.49 ip4:212.59.163.3 a:mail.i-web.ch include:_spf.i-web.ch include:servers.mcsv.net include:spf.abacuscity.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "horw.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "horw.ch"
+ ],
+ "guess":[
+ "horw.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1059":{
"bfs":"1059",
"name":"Kriens",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"kriens.ch",
"mx":[
"mail.kriens.ch"
],
"spf":"v=spf1 mx +ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kriens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kriens.ch"
+ ],
+ "guess":[
+ "gemeinde-kriens.ch",
+ "kriens.ch",
+ "stadt-kriens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1061":{
"bfs":"1061",
"name":"Luzern",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"stadtluzern.ch",
"mx":[
"mail.stadtluzern.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:spf.privasphere.com include:spf.umantis.com ip4:194.209.100.10 ip4:5.102.147.208 a:mail.i-web.ch +mx:hin.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:spf.privasphere.com include:spf.umantis.com ip4:194.209.100.10 ip4:5.102.147.208 a:mail.i-web.ch +mx:hin.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.stadtluzern.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.stadtluzern.ch CNAME → selector1-stadtluzern-ch._domainkey.stadtluzern.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.stadtluzern.ch CNAME → selector2-stadtluzern-ch._domainkey.stadtluzern.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stadtluzern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadtluzern.ch"
+ ],
+ "guess":[
+ "luzern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1062":{
"bfs":"1062",
"name":"Malters",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"malters.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "malters.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "malters.ch"
+ ],
+ "guess":[
+ "malters.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1063":{
"bfs":"1063",
"name":"Meggen",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"meggen.ch",
"mx":[
"meggen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX meggen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meggen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meggen.ch"
+ ],
+ "guess":[
+ "meggen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1064":{
"bfs":"1064",
"name":"Meierskappel",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"meierskappel.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx ip4:193.135.56.6 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx ip4:193.135.56.6 include:_spf.rzobt.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meierskappel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meierskappel.ch"
+ ],
+ "guess":[
+ "meierskappel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1065":{
"bfs":"1065",
"name":"Root",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"gemeinde-root.ch",
"mx":[
"gemeinderoot-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeinderoot-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gemeinde-root.ch CNAME → selector1-gemeinderoot-ch02b._domainkey.gemeindeverwaltungroot.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gemeinde-root.ch CNAME → selector2-gemeinderoot-ch02b._domainkey.gemeindeverwaltungroot.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeinde-root.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-root.ch"
+ ],
+ "guess":[
+ "gemeinde-root.ch",
+ "root.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1066":{
"bfs":"1066",
"name":"Schwarzenberg",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"schwarzenberg.ch",
"mx":[
"alt1.aspmx.l.google.com",
@@ -9682,64 +33172,349 @@
],
"spf":"v=spf1 ip4:91.194.196.10 mx mx:admin.ch/16 include:_spf.google.com ~all",
"provider":"google",
- "spf_resolved":"v=spf1 ip4:91.194.196.10 mx mx:admin.ch/16 include:_spf.google.com ~all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all",
- "mx_asns":[
- 15169
- ]
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt1.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt2.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwarzenberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwarzenberg.ch"
+ ],
+ "guess":[
+ "schwarzenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1067":{
"bfs":"1067",
"name":"Udligenswil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"udligenswil.ch",
"mx":[
"udligenswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX udligenswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.udligenswil.ch CNAME → selector1-udligenswil-ch._domainkey.gemeindeudligenswil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.udligenswil.ch CNAME → selector2-udligenswil-ch._domainkey.gemeindeudligenswil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "udligenswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "udligenswil.ch"
+ ],
+ "guess":[
+ "udligenswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1068":{
"bfs":"1068",
"name":"Vitznau",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"vitznau.ch",
"mx":[
"vitznau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.140.160.21 ip4:46.140.160.22 ip4:46.14.27.218 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.140.160.21 ip4:46.140.160.22 ip4:46.14.27.218 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vitznau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vitznau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vitznau.ch"
+ ],
+ "guess":[
+ "vitznau.ch",
+ "vitznau.lu.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1069":{
"bfs":"1069",
"name":"Weggis",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"weggis.ch",
"mx":[
"weggis-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf.abacuscity.ch +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf.abacuscity.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX weggis-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "weggis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "weggis.ch"
+ ],
+ "guess":[
+ "weggis.ch",
+ "weggis.lu.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1081":{
"bfs":"1081",
@@ -9749,15 +33524,83 @@
"mx":[
"beromuenster-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 ip4:194.56.218.181 ip4:194.56.218.131 ip4:37.128.180.154 ip4:195.48.205.132 include:spf.protection.outlook.com include:spf.abacuscity.ch -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.56.218.181 ip4:194.56.218.131 ip4:37.128.180.154 ip4:195.48.205.132 include:spf.protection.outlook.com include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 ip4:37.128.180.154 ip4:195.48.205.132 include:_spf.talus.ch include:_spf.i-web.ch include:spf.protection.outlook.com include:spf.abacuscity.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX beromuenster-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.beromuenster.ch CNAME → selector1-beromuenster-ch._domainkey.gemeindeberomuenster.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.beromuenster.ch CNAME → selector2-beromuenster-ch._domainkey.gemeindeberomuenster.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "beromuenster.ch"
+ ],
+ "guess":[
+ "beromuenster.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1082":{
"bfs":"1082",
@@ -9768,11 +33611,43 @@
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bueron.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bueron.ch"
+ ],
+ "guess":[
+ "bron.ch",
+ "bueron.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1083":{
"bfs":"1083",
@@ -9784,13 +33659,35 @@
],
"spf":"v=spf1 mx include:_spf.i-web.ch +ip4:195.65.10.26 +ip4:194.40.156.100 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch +ip4:195.65.10.26 +ip4:194.40.156.100 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buttisholz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buttisholz.ch"
+ ],
+ "guess":[
+ "buttisholz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1084":{
"bfs":"1084",
@@ -9802,13 +33699,89 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eich-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.eich.ch CNAME → selector1-eich-ch._domainkey.gemeindeeich.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.eich.ch CNAME → selector2-eich-ch._domainkey.gemeindeeich.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eich.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eich.ch"
+ ],
+ "guess":[
+ "eich.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1085":{
"bfs":"1085",
@@ -9820,13 +33793,29 @@
],
"spf":"v=spf1 mx include:spf.creanet.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.creanet.ch -all v=spf1 ip4:37.128.182.0/25 ip4:94.100.136.58 ip4:94.100.132.73 -all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "geuensee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "geuensee.ch"
+ ],
+ "guess":[
+ "geuensee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1086":{
"bfs":"1086",
@@ -9838,13 +33827,20 @@
],
"spf":"v=spf1 mx include:spf.creanet.ch include:cemsc.net ip4:185.142.212.13 ip4:185.32.222.15 ip4:176.10.104.21 ip4:185.32.222.64 ip4:149.126.4.40 ip4:194.126.200.54 ip4:194.126.200.0/24 ip4:194.126.0.0/24 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.creanet.ch include:cemsc.net ip4:185.142.212.13 ip4:185.32.222.15 ip4:176.10.104.21 ip4:185.32.222.64 ip4:149.126.4.40 ip4:194.126.200.54 ip4:194.126.200.0/24 ip4:194.126.0.0/24 -all v=spf1 ip4:37.128.182.0/25 ip4:94.100.136.58 ip4:94.100.132.73 -all v=spf1 mx ip4:185.233.189.98/32 ip4:193.142.157.191/32 ip4:185.233.188.160/32 ip4:193.142.157.125/32 ip4:185.233.188.75/32 ip4:91.198.2.217/32 ip4:91.198.2.222/32 ip4:185.233.188.176/32 ip4:91.198.2.177/32 ip4:193.142.157.158/32 ip4:193.142.157.198/32 ip4:193.142.157.15/32 ip4:185.233.189.228/32 ip4:185.233.188.247/32 ip4:185.11.255.144/32 ip4:185.233.189.44/32 ip4:185.233.189.122/32 ip4:185.233.188.84/32 ip4:185.233.188.68/32 ~all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grosswangen.ch"
+ ],
+ "guess":[
+ "grosswangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1088":{
"bfs":"1088",
@@ -9856,13 +33852,83 @@
],
"spf":"v=spf1 +a +mx +a:rlx2.loginserver.ch include:spf.protection.outlook.com include:spf1.egeko.ch include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +a:rlx2.loginserver.ch include:spf.protection.outlook.com include:spf1.egeko.ch include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hildisrieden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hildisrieden.ch CNAME → selector1-hildisrieden-ch._domainkey.gemeindehildisrieden.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hildisrieden.ch CNAME → selector2-hildisrieden-ch._domainkey.gemeindehildisrieden.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hildisrieden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hildisrieden.ch"
+ ],
+ "guess":[
+ "hildisrieden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1089":{
"bfs":"1089",
@@ -9874,12 +33940,22 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "knutwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "knutwil.ch"
+ ],
+ "guess":[
+ "knutwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1091":{
"bfs":"1091",
@@ -9891,14 +33967,77 @@
],
"spf":"v=spf1 mx include:spf.protection.cyon.net ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.cyon.net ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.mauensee.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mauensee-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mauensee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mauensee.ch"
+ ],
+ "guess":[
+ "mauensee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1093":{
"bfs":"1093",
@@ -9910,13 +34049,83 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:194.124.233.150 ip4:193.135.56.6 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:194.124.233.150 ip4:193.135.56.6 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neuenkirch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neuenkirch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neuenkirch.ch"
+ ],
+ "guess":[
+ "neuenkirch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1094":{
"bfs":"1094",
@@ -9928,13 +34137,41 @@
],
"spf":"v=spf1 mx a:sbb-ch.mail.protection.outlook.com a:mail.format-ag.ch include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:sbb-ch.mail.protection.outlook.com a:mail.format-ag.ch include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nottwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nottwil.ch"
+ ],
+ "guess":[
+ "nottwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1095":{
"bfs":"1095",
@@ -9946,18 +34183,52 @@
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.abacuscity.ch include:_spf.psm.knowbe4.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.abacuscity.ch include:_spf.psm.knowbe4.com -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberkirch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberkirch.ch"
+ ],
+ "guess":[
+ "oberkirch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1097":{
"bfs":"1097",
- "name":"Rickenbach",
+ "name":"Rickenbach (LU)",
"canton":"",
"domain":"rickenbach.ch",
"mx":[
@@ -9965,13 +34236,71 @@
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rickenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rickenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rickenbach.ch"
+ ],
+ "guess":[
+ "rickenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1098":{
"bfs":"1098",
@@ -9983,46 +34312,128 @@
],
"spf":"v=spf1 mx ip4:185.35.28.13 ip4:185.35.28.162 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruswil.ch"
+ ],
+ "guess":[
+ "ruswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1099":{
"bfs":"1099",
"name":"Schenkon",
- "canton":"Kanton Luzern",
+ "canton":"",
"domain":"schenkon.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:spf.mail.hostpoint.ch include:_spf.rzobt.ch include:communication.backslash.ch include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:spf.mail.hostpoint.ch include:_spf.rzobt.ch include:communication.backslash.ch include:spf.abacuscity.ch -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 a -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schenkon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schenkon.ch"
+ ],
+ "guess":[
+ "schenkon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1100":{
"bfs":"1100",
"name":"Schlierbach",
- "canton":"Kanton Luzern",
+ "canton":"",
"domain":"schlierbach.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf1.egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:spf1.egeko.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schlierbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schlierbach.ch"
+ ],
+ "guess":[
+ "schlierbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1102":{
"bfs":"1102",
@@ -10034,13 +34445,89 @@
],
"spf":"v=spf1 ip4:151.248.208.106 ip4:80.254.162.137 include:spf.protection.outlook.com include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:151.248.208.106 ip4:80.254.162.137 include:spf.protection.outlook.com include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sempach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.sempach.ch CNAME → selector1-sempach-ch._domainkey.sempachcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.sempach.ch CNAME → selector2-sempach-ch._domainkey.sempachcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sempach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sempach.ch"
+ ],
+ "guess":[
+ "sempach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1103":{
"bfs":"1103",
@@ -10052,13 +34539,79 @@
],
"spf":"v=spf1 a mx include:spf.mail.hostpoint.ch include:_spf.i-web.ch include:spf.protection.outlook.com ip4:37.128.181.146 include:_spf.psm.knowbe4.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.mail.hostpoint.ch include:_spf.i-web.ch include:spf.protection.outlook.com ip4:37.128.181.146 include:_spf.psm.knowbe4.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stadtsursee-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.stadtsursee.ch CNAME → selector1-stadtsursee-ch._domainkey.stadtsurseech.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.stadtsursee.ch CNAME → selector2-stadtsursee-ch._domainkey.stadtsurseech.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stadtsursee.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"1104":{
"bfs":"1104",
@@ -10070,12 +34623,29 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "triengen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "triengen.ch"
+ ],
+ "guess":[
+ "triengen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1107":{
"bfs":"1107",
@@ -10087,211 +34657,786 @@
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch a:slu-w0ssf1.stadtluzern.ch ip4:185.35.28.13 include:_spf.psm.knowbe4.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch a:slu-w0ssf1.stadtluzern.ch ip4:185.35.28.13 include:_spf.psm.knowbe4.com -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wolhusen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wolhusen.ch"
+ ],
+ "guess":[
+ "wolhusen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1121":{
"bfs":"1121",
"name":"Alberswil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"alberswil.ch",
"mx":[
"alberswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX alberswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "alberswil.ch",
+ "printex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "alberswil.ch"
+ ],
+ "guess":[
+ "alberswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1122":{
"bfs":"1122",
"name":"Altbüron",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"altbueron.ch",
"mx":[
"altbueron-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX altbueron-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "altbueron.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altbueron.ch"
+ ],
+ "guess":[
+ "altbueron.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1123":{
"bfs":"1123",
"name":"Altishofen",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"altishofen.ch",
"mx":[
"mail.altishofen.ch"
],
"spf":"v=spf1 mx a +ip4:149.126.4.40 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "altishofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altishofen.ch"
+ ],
+ "guess":[
+ "altishofen.ch",
+ "altishofen.lu.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1125":{
"bfs":"1125",
"name":"Dagmersellen",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"dagmersellen.ch",
"mx":[
"dagmersellen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a ip4:193.135.58.21 ip4:80.254.191.149 ip4:151.248.145.24 include:spf.protection.outlook.com include:spf.sendinblue.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a ip4:193.135.58.21 ip4:80.254.191.149 ip4:151.248.145.24 include:spf.protection.outlook.com include:spf.sendinblue.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dagmersellen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.dagmersellen.ch CNAME → selector1-dagmersellen-ch._domainkey.gemeindedagmersellen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.dagmersellen.ch CNAME → selector2-dagmersellen-ch._domainkey.gemeindedagmersellen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "dagmersellen.ch"
+ ],
+ "guess":[
+ "dagmersellen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1127":{
"bfs":"1127",
"name":"Egolzwil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"egolzwil.ch",
"mx":[
"egolzwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:195.65.10.24 ip4:195.65.10.12 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:195.65.10.24 ip4:195.65.10.12 include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX egolzwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.egolzwil.ch CNAME → selector1-egolzwil-ch._domainkey.gemeindeegolzwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.egolzwil.ch CNAME → selector2-egolzwil-ch._domainkey.gemeindeegolzwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "egolzwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "egolzwil.ch"
+ ],
+ "guess":[
+ "egolzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1128":{
"bfs":"1128",
"name":"Ettiswil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"ettiswil.ch",
"mx":[
"mail.ettiswil.ch"
],
"spf":"v=spf1 mx include:spf.protection.cyon.net include:spf.customer.swiss-egov.cloud ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.cyon.net include:spf.customer.swiss-egov.cloud ~all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.ettiswil.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aldec.ch",
+ "ettiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ettiswil.ch"
+ ],
+ "guess":[
+ "ettiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1129":{
"bfs":"1129",
"name":"Fischbach",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"fischbach-lu.ch",
"mx":[
"fischbachlu-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fischbachlu-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fischbach-lu.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fischbach-lu.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"1131":{
"bfs":"1131",
"name":"Grossdietwil",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"grossdietwil.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.exenti.ch ip4:185.35.28.128 ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.exenti.ch ip4:185.35.28.128 ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 +ip4:185.35.28.12 +ip4:185.35.28.13 +ip4:185.35.28.14 +ip4:185.35.29.12 +ip4:185.35.29.13 +ip4:185.35.29.14 +ip4:185.35.28.22 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schule-grossdietwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grossdietwil.ch"
+ ],
+ "guess":[
+ "grossdietwil.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"1132":{
"bfs":"1132",
"name":"Hergiswil bei Willisau",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"hergiswil-lu.ch",
"mx":[
"mail.hergiswil-lu.ch"
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "hergiswil-lu.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hergiswil-lu.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"1135":{
"bfs":"1135",
"name":"Luthern",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"luthern.ch",
"mx":[
"luthern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.mailjet.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.mailjet.com include:spf.protection.outlook.com -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX luthern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "luthern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luthern.ch"
+ ],
+ "guess":[
+ "luthern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1136":{
"bfs":"1136",
"name":"Menznau",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"menznau.ch",
"mx":[
"menznau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +a:rlx2.loginserver.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +a:rlx2.loginserver.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX menznau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.menznau.ch CNAME → selector1-menznau-ch._domainkey.gdemenznau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.menznau.ch CNAME → selector2-menznau-ch._domainkey.gdemenznau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "menznau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "menznau.ch"
+ ],
+ "guess":[
+ "menznau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1137":{
"bfs":"1137",
@@ -10303,51 +35448,230 @@
],
"spf":"v=spf1 ip4:213.3.53.198 ip4:86.119.9.6 ip4:193.135.56.6 include:spf.protection.outlook.com include:_spf.psm.knowbe4.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.3.53.198 ip4:86.119.9.6 ip4:193.135.56.6 include:spf.protection.outlook.com include:_spf.psm.knowbe4.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nebikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.nebikon.ch CNAME → selector1-nebikon-ch._domainkey.gemeindenebikon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.nebikon.ch CNAME → selector2-nebikon-ch._domainkey.gemeindenebikon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nebikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nebikon.ch"
+ ],
+ "guess":[
+ "nebikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1139":{
"bfs":"1139",
"name":"Pfaffnau",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"pfaffnau.ch",
"mx":[
"pfaffnau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a ip4:91.194.196.10 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a ip4:91.194.196.10 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pfaffnau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pfaffnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pfaffnau.ch"
+ ],
+ "guess":[
+ "pfaffnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1140":{
"bfs":"1140",
"name":"Reiden",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"reiden.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 include:spf.abacuscity.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "reiden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reiden.ch"
+ ],
+ "guess":[
+ "reiden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1142":{
"bfs":"1142",
@@ -10359,18 +35683,82 @@
],
"spf":"v=spf1 mx a:mail1.rzobt.ch a:mail2.rzobt.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail1.rzobt.ch a:mail2.rzobt.ch include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX roggliswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roggliswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roggliswil.ch"
+ ],
+ "guess":[
+ "roggliswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1143":{
"bfs":"1143",
"name":"Schötz",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"schoetz.ch",
"mx":[
"mail.format-ag.ch",
@@ -10380,13 +35768,41 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoetz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoetz.ch"
+ ],
+ "guess":[
+ "schoetz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1145":{
"bfs":"1145",
@@ -10398,12 +35814,22 @@
],
"spf":"v=spf1 mx ip4:185.35.28.68 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "ufhusen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ufhusen.ch"
+ ],
+ "guess":[
+ "ufhusen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1146":{
"bfs":"1146",
@@ -10415,72 +35841,190 @@
],
"spf":"v=spf1 ip4:194.150.248.38 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +ip4:193.135.56.6 +include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.150.248.38 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +ip4:193.135.56.6 +include:spf.protection.outlook.com ~all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"us-cloud",
+ "classification_confidence":89.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wauwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wauwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wauwil.ch"
+ ],
+ "guess":[
+ "gemeinde-wauwil.ch",
+ "wauwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1147":{
"bfs":"1147",
"name":"Wikon",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"wikon.ch",
"mx":[
"mail.wikon.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.wikon.ch",
- "autodiscover_srv":"mail.wikon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wikon.ch"
+ ],
+ "guess":[
+ "wikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1150":{
"bfs":"1150",
- "name":"Zell",
- "canton":"",
+ "name":"Zell (LU)",
+ "canton":"Kanton Luzern",
"domain":"zell-lu.ch",
"mx":[
"mail.zell-lu.ch"
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.gict.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "zell-lu.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zell-lu.ch"
+ ],
+ "guess":[
+ "zell.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1151":{
"bfs":"1151",
"name":"Willisau",
- "canton":"",
+ "canton":"Kanton Luzern",
"domain":"willisau.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 a include:_spf.rzobt.ch ip4:185.35.28.16 ip4:185.35.28.13 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a include:_spf.rzobt.ch ip4:185.35.28.16 ip4:185.35.28.13 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "willisau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "willisau.ch"
+ ],
+ "guess":[
+ "willisau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1201":{
"bfs":"1201",
- "name":"Altdorf",
+ "name":"Altdorf (UR)",
"canton":"Kanton Uri",
"domain":"altdorf.ch",
"mx":[
@@ -10488,25 +36032,96 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.rz-altdorf.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "altdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altdorf.ch"
+ ],
+ "guess":[
+ "altdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1202":{
"bfs":"1202",
"name":"Andermatt",
"canton":"Kanton Uri",
- "domain":"gemeinde-andermatt.ch",
+ "domain":"andermatt.ch",
"mx":[
- "smtp.backslash.ch"
+ "mail1.ur.ch",
+ "mail2.ur.ch"
],
- "spf":"v=spf1 ip4:193.135.56.0/24 -all",
- "provider":"independent",
- "mx_asns":[
- 207143
+ "spf":"v=spf1 mx a:mail.ur.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "andermatt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-andermatt.ch"
+ ],
+ "guess":[
+ "andermatt.ch",
+ "gemeinde-andermatt.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"1203":{
@@ -10519,16 +36134,33 @@
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
"provider":"independent",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.rz-altdorf.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "attinghausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "attinghausen.ch"
+ ],
+ "guess":[
+ "attinghausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1205":{
"bfs":"1205",
- "name":"Bürglen",
+ "name":"Bürglen (UR)",
"canton":"Kanton Uri",
"domain":"buerglen.ch",
"mx":[
@@ -10536,13 +36168,29 @@
],
"spf":"v=spf1 mx include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.rz-altdorf.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buerglen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buerglen.ch"
+ ],
+ "guess":[
+ "buerglen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1206":{
"bfs":"1206",
@@ -10554,28 +36202,81 @@
"mx2.erstfeld.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "erstfeld.ch",
+ "ubiq.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "erstfeld.ch"
+ ],
+ "guess":[
+ "erstfeld.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1207":{
"bfs":"1207",
"name":"Flüelen",
"canton":"Kanton Uri",
- "domain":"fluelen.ch",
+ "domain":"flueelen.ch",
"mx":[
- "mail.fluelen.ch"
+ "mail.flueelen.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
"provider":"independent",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "flueelen.ch"
+ ],
+ "redirect":[
+ "flueelen.ch"
+ ],
+ "wikidata":[
+ "fluelen.ch"
+ ],
+ "guess":[
+ "flueelen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"1208":{
"bfs":"1208",
@@ -10587,11 +36288,42 @@
"mail2.ur.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "goeschenen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "goeschenen.ch"
+ ],
+ "guess":[
+ "goeschenen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1209":{
"bfs":"1209",
@@ -10603,25 +36335,95 @@
"mx2.gurtnellen.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gurtnellen.ch",
+ "ubiq.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gurtnellen.ch"
+ ],
+ "guess":[
+ "gurtnellen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1210":{
"bfs":"1210",
"name":"Hospental",
"canton":"Kanton Uri",
- "domain":"hospental.ch",
+ "domain":"andermatt.ch",
"mx":[
- "smtp.backslash.ch"
+ "mail1.ur.ch",
+ "mail2.ur.ch"
],
- "spf":"v=spf1 ip4:193.135.56.0/24 ip4:193.135.58.0/24 ~all",
- "provider":"independent",
- "mx_asns":[
- 207143
- ]
+ "spf":"v=spf1 mx a:mail.ur.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "andermatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1211":{
"bfs":"1211",
@@ -10633,11 +36435,36 @@
"mail2.ur.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "isenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "isenthal.ch"
+ ],
+ "guess":[
+ "isenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1212":{
"bfs":"1212",
@@ -10649,13 +36476,78 @@
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX realp-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "realp.ch",
+ "ubiq.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "realp.ch"
+ ],
+ "guess":[
+ "realp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1213":{
"bfs":"1213",
@@ -10667,16 +36559,39 @@
],
"spf":"v=spf1 +mx -all",
"provider":"independent",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.rz-altdorf.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schattdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schattdorf.ch"
+ ],
+ "guess":[
+ "schattdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1214":{
"bfs":"1214",
- "name":"Seedorf",
+ "name":"Seedorf (UR)",
"canton":"Kanton Uri",
"domain":"seedorf-uri.ch",
"mx":[
@@ -10684,12 +36599,35 @@
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
"provider":"independent",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seedorf-uri.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seedorf-uri.ch"
+ ],
+ "guess":[
+ "seedorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1215":{
"bfs":"1215",
@@ -10701,13 +36639,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:agenturserver.de -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:agenturserver.de -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:188.94.249.240/28 ip4:188.94.250.248/29 ip4:188.94.251.248/29 ip4:188.94.252.252/30 ip4:185.15.192.32/27 ip4:178.16.56.32/27 ip4:185.15.192.32/28 ip4:153.92.196.160/28 ip4:37.202.1.52/30 ip4:37.202.6.52/30 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX seelisberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seelisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seelisberg.ch"
+ ],
+ "guess":[
+ "seelisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1216":{
"bfs":"1216",
@@ -10719,14 +36721,96 @@
],
"spf":"v=spf1 a mx a:mx.cmd.activeguard.cloud ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:146.4.12.134 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mx.cmd.activeguard.cloud ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:146.4.12.134 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"exchange.silenen.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX silenen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "silenen.ch",
+ "ubiq.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "silenen.ch"
+ ],
+ "guess":[
+ "silenen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1217":{
"bfs":"1217",
@@ -10738,13 +36822,29 @@
],
"spf":"v=spf1 mx include:_spf.blk.ymc.swiss include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.blk.ymc.swiss include:_spf.i-web.ch -all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 198433
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.rz-altdorf.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sisikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sisikon.ch"
+ ],
+ "guess":[
+ "sisikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1218":{
"bfs":"1218",
@@ -10756,11 +36856,49 @@
"mail2.ur.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "spiringen.ch",
+ "ubiq.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "spiringen.ch"
+ ],
+ "guess":[
+ "spiringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1219":{
"bfs":"1219",
@@ -10772,11 +36910,42 @@
"mail2.ur.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "unterschaechen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unterschaechen.ch"
+ ],
+ "guess":[
+ "unterschaechen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1220":{
"bfs":"1220",
@@ -10788,68 +36957,223 @@
"mail2.ur.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.sui-inter.net a:mail.ur.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.sui-inter.net a:mail.ur.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 1836
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wassen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wassen.ch"
+ ],
+ "guess":[
+ "wassen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1301":{
"bfs":"1301",
"name":"Einsiedeln",
- "canton":"",
- "domain":"einsiedeln.ch",
+ "canton":"Kanton Schwyz",
+ "domain":"bezirkeinsiedeln.ch",
"mx":[
"mr01a.rzeins.ch",
"mr02b.rzeins.ch"
],
- "spf":"",
+ "spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bezirkeinsiedeln.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1311":{
"bfs":"1311",
"name":"Gersau",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"gersau.ch",
"mx":[
"gersau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.101.10.158 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.101.10.158 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gersau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gersau.ch CNAME → selector1-gersau-ch._domainkey.bvgersau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gersau.ch CNAME → selector2-gersau-ch._domainkey.bvgersau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gersau.ch"
+ ],
+ "guess":[
+ "gersau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1321":{
"bfs":"1321",
"name":"Feusisberg",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"feusisberg.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:193.135.56.6 ip4:62.65.133.1/24 include:spf.iway.ch include:spf.entex.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ip4:193.135.56.6 ip4:62.65.133.1/24 include:spf.iway.ch include:spf.entex.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:185.41.78.16/28 ip4:185.41.79.96/27 ip4:62.2.43.208/28 ip4:62.2.174.0/24 ip4:185.89.147.96/28 ip4:185.41.78.16/28 ip4:81.221.30.0/27 ip4:185.41.79.96/27 ip4:51.107.24.6 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "feusisberg.ch"
+ ],
+ "guess":[
+ "feusisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1322":{
"bfs":"1322",
"name":"Freienbach",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"freienbach.ch",
"mx":[
"freienbach1.cleanmail.ch",
@@ -10857,16 +37181,53 @@
],
"spf":"v=spf1 a mx ip4:52.157.149.216 mx mx:hin.ch include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.mailjet.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:52.157.149.216 mx mx:hin.ch include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.mailjet.com -all v=spf1 ip4:91.208.173.0/24 ip4:91.212.152.0/24 ip4:195.141.89.0/24 ip4:185.188.196.0/24 ip4:83.145.109.0/24 ip4:31.172.161.0/24 ip4:80.83.63.195/32 ip4:80.83.63.196/32 a:outbound.appriver.com ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
"gateway":"cleanmail",
- "mx_asns":[
- 15547
- ]
+ "sources_detail":{
+ "scrape":[
+ "freienbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "freienbach.ch"
+ ],
+ "guess":[
+ "freienbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1323":{
"bfs":"1323",
"name":"Wollerau",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"wollerau.ch",
"mx":[
"wollerau1.cleanmail.ch",
@@ -10874,56 +37235,176 @@
],
"spf":"v=spf1 a mx ip4:195.130.218.0/24 ip4:195.141.81.67 ip4:185.41.76.99/27 include:_spf.i-web.ch include:_cmspf.cleanmail.ch include:turbo-smtp.com include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:195.130.218.0/24 ip4:195.141.81.67 ip4:185.41.76.99/27 include:_spf.i-web.ch include:_cmspf.cleanmail.ch include:turbo-smtp.com include:spf.abacuscity.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:91.208.173.0/24 ip4:91.212.152.0/24 ip4:195.141.89.0/24 ip4:185.188.196.0/24 ip4:83.145.109.0/24 ip4:31.172.161.0/24 ip4:80.83.63.195/32 ip4:80.83.63.196/32 a:outbound.appriver.com ~all v=spf1 a mx ip4:199.187.172.0/22 ip4:199.244.72.0/22 ip4:185.228.36.0/22 ip4:78.46.210.192/27 ip4:5.83.159.0/24 ip4:89.144.43.0/24 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "gateway":"cleanmail",
- "mx_asns":[
- 15547
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.wollerau.ch"
- }
+ "gateway":"cleanmail",
+ "sources_detail":{
+ "scrape":[
+ "wollerau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wollerau.ch"
+ ],
+ "guess":[
+ "wollerau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1331":{
"bfs":"1331",
- "name":"Küssnacht",
- "canton":"",
+ "name":"Küssnacht (SZ)",
+ "canton":"Kanton Schwyz",
"domain":"kuessnacht.ch",
"mx":[
"kuessnacht-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:mail.ostendis.ch ip4:82.136.86.149 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf.sz.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mail.ostendis.ch ip4:82.136.86.149 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf.sz.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.privasphere.com ip4:193.247.107.56 ip4:193.247.111.57 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kuessnacht-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kuessnacht.ch CNAME → elector1-kuessnacht-ch._domainkey.kuessnacht.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kuessnacht.ch CNAME → elector2-kuessnacht-ch._domainkey.kuessnacht.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kuessnacht.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kuessnacht.ch"
+ ],
+ "guess":[
+ "kuessnacht.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1341":{
"bfs":"1341",
"name":"Altendorf",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"altendorf.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf.abacuscity.ch include:communication.backslash.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf.abacuscity.ch include:communication.backslash.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 a -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "altendorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altendorf.ch"
+ ],
+ "guess":[
+ "altendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1342":{
"bfs":"1342",
"name":"Galgenen",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"galgenen.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -10931,16 +37412,27 @@
],
"spf":"v=spf1 mx include:asmtp.mail.hostpoint.ch include:mailomat.cloud -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:asmtp.mail.hostpoint.ch include:mailomat.cloud -all v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 include:spf.protection.cyon.net include:_spf.mailomat.cloud ~all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:91.233.182.0/25 ~all",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "galgenen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "galgenen.ch"
+ ],
+ "guess":[
+ "galgenen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1343":{
"bfs":"1343",
"name":"Innerthal",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"innerthal.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -10948,15 +37440,32 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "innerthal.ch"
+ ],
+ "guess":[
+ "innerthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1344":{
"bfs":"1344",
"name":"Lachen",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"lachen.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -10964,70 +37473,234 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lachen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lachen.ch"
+ ],
+ "guess":[
+ "lachen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1345":{
"bfs":"1345",
"name":"Reichenburg",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"reichenburg.ch",
"mx":[
"gemeindereichenburg.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 a mx ip4:93.174.184.0/21 ~a",
"provider":"independent",
- "gateway":"trendmicro",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"mail.cloudfor.ch"
- }
+ "gateway":"trendmicro",
+ "sources_detail":{
+ "scrape":[
+ "reichenburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reichenburg.ch"
+ ],
+ "guess":[
+ "reichenburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1346":{
"bfs":"1346",
"name":"Schübelbach",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"schuebelbach.ch",
"mx":[
"schuebelbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schuebelbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schuebelbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schuebelbach.ch"
+ ],
+ "guess":[
+ "schuebelbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1347":{
"bfs":"1347",
"name":"Tuggen",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"tuggen.ch",
"mx":[
"tuggen.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 a mx ip4:93.174.184.0/21 include:spf1.egeko.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:93.174.184.0/21 include:spf1.egeko.ch ~all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "gateway":"trendmicro",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"mail.cloudfor.ch"
- }
+ "gateway":"trendmicro",
+ "sources_detail":{
+ "scrape":[
+ "tuggen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tuggen.ch"
+ ],
+ "guess":[
+ "tuggen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1348":{
"bfs":"1348",
"name":"Vorderthal",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"vorderthal.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11035,34 +37708,89 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vorderthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vorderthal.ch"
+ ],
+ "guess":[
+ "vorderthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1349":{
"bfs":"1349",
- "name":"Wangen",
- "canton":"",
+ "name":"Wangen (SZ)",
+ "canton":"Kanton Schwyz",
"domain":"wangensz.ch",
"mx":[
"wangensz.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 include:spf.abacuscity.ch a mx ptr ip4:93.174.184.0/21 ip4:193.135.56.6 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.abacuscity.ch a mx ptr ip4:93.174.184.0/21 ip4:193.135.56.6 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "gateway":"trendmicro",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"mail.cloudfor.ch"
- }
+ "gateway":"trendmicro",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wangensz.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"1361":{
"bfs":"1361",
"name":"Alpthal",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"alpthal.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11070,29 +37798,61 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "alpthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "alpthal.ch"
+ ],
+ "guess":[
+ "alpthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1362":{
"bfs":"1362",
"name":"Arth",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"arth.ch",
"mx":[
"mr01.arth.ch"
],
"spf":"v=spf1 mx ip4:185.244.253.254/32 -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arth.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arth.ch"
+ ],
+ "guess":[
+ "arth.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1363":{
"bfs":"1363",
"name":"Illgau",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"illgau.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11100,31 +37860,77 @@
],
"spf":"v=spf1 mx include:mailomat.cloud include:spf.mailpro.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:mailomat.cloud include:spf.mailpro.com -all v=spf1 include:spf.protection.cyon.net include:_spf.mailomat.cloud ~all v=spf1 ip4:178.239.38.0/24 ip4:62.133.56.0/24 ip4:62.50.74.80/28 ip4:62.50.73.144/28 ip4:62.50.76.40/29 ip4:62.50.76.16/28 ip4:195.81.131.64/27 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip6:2a06:fa00::/29 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:91.233.182.0/25 ~all",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "illgau.ch"
+ ],
+ "guess":[
+ "illgau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1364":{
"bfs":"1364",
"name":"Ingenbohl",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"ingenbohl.ch",
"mx":[
"mail.ingenbohl.ch"
],
"spf":"v=spf1 +a +mx include:relay.mailchannels.net include:spf.privasphere.com include:agenturserver.de include:_spf.google.com ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 +a +mx include:relay.mailchannels.net include:spf.privasphere.com include:agenturserver.de include:_spf.google.com ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:188.94.249.240/28 ip4:188.94.250.248/29 ip4:188.94.251.248/29 ip4:188.94.252.252/30 ip4:185.15.192.32/27 ip4:178.16.56.32/27 ip4:185.15.192.32/28 ip4:153.92.196.160/28 ip4:37.202.1.52/30 ip4:37.202.6.52/30 ~all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 60016
- ]
+ "provider":"google",
+ "category":"us-cloud",
+ "classification_confidence":52.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ingenbohl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ingenbohl.ch"
+ ],
+ "guess":[
+ "ingenbohl.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1365":{
"bfs":"1365",
"name":"Lauerz",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"lauerz.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11132,15 +37938,27 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "lauerz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lauerz.ch"
+ ],
+ "guess":[
+ "lauerz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1366":{
"bfs":"1366",
"name":"Morschach",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"morschach.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11148,15 +37966,27 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "morschach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "morschach.ch"
+ ],
+ "guess":[
+ "morschach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1367":{
"bfs":"1367",
"name":"Muotathal",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"muotathal.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11164,15 +37994,32 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muotathal.ch"
+ ],
+ "guess":[
+ "muotathal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1368":{
"bfs":"1368",
"name":"Oberiberg",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"oberiberg.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11180,33 +38027,54 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "oberiberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberiberg.ch"
+ ],
+ "guess":[
+ "oberiberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1369":{
"bfs":"1369",
"name":"Riemenstalden",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"riemenstalden.ch",
"mx":[
"mail.riemenstalden.ch"
],
"spf":"v=spf1 include:spf.mail.webland.ch include:_spf.blk.ymc.swiss -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mail.webland.ch include:_spf.blk.ymc.swiss -all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 25563
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.riemenstalden.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "riemenstalden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "riemenstalden.ch"
+ ],
+ "guess":[
+ "riemenstalden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1370":{
"bfs":"1370",
"name":"Rothenthurm",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"rothenthurm.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11214,15 +38082,25 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rothenthurm.ch"
+ ],
+ "guess":[
+ "rothenthurm.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1371":{
"bfs":"1371",
"name":"Sattel",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"sattel.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11230,15 +38108,34 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sattel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sattel.ch"
+ ],
+ "guess":[
+ "sattel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1372":{
"bfs":"1372",
"name":"Schwyz",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"gemeindeschwyz.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11246,15 +38143,34 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeindeschwyz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeindeschwyz.ch"
+ ],
+ "guess":[
+ "schwyz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1373":{
"bfs":"1373",
"name":"Steinen",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"steinen.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11262,15 +38178,34 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "steinen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "steinen.ch"
+ ],
+ "guess":[
+ "steinen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1374":{
"bfs":"1374",
"name":"Steinerberg",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"steinerberg.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11278,15 +38213,25 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "steinerberg.ch"
+ ],
+ "guess":[
+ "steinerberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1375":{
"bfs":"1375",
"name":"Unteriberg",
- "canton":"",
+ "canton":"Kanton Schwyz",
"domain":"unteriberg.ch",
"mx":[
"mr01a.rzeins.ch",
@@ -11294,31 +38239,66 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 33965,
- 41872
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "unteriberg.ch"
+ ],
+ "guess":[
+ "unteriberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1401":{
"bfs":"1401",
"name":"Alpnach",
"canton":"Kanton Obwalden",
- "domain":"alpnach.ch",
+ "domain":"alpnach.ow.ch",
"mx":[
"ktvmx01.mail.admin.ch",
"ktvmx02.mail.admin.ch",
"ktvmx03.mail.admin.ch",
"ktvmx04.mail.admin.ch"
],
- "spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
+ "spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "alpnach.ow.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "alpnach.ch"
+ ],
+ "guess":[
+ "alpnach.ch",
+ "alpnach.ow.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"1402":{
"bfs":"1402",
@@ -11330,13 +38310,96 @@
],
"spf":"v=spf1 a mx a:mx.cmd.activeguard.cloud include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mx.cmd.activeguard.cloud include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gdeengelberg-ch0i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gde-engelberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gde-engelberg.ch"
+ ],
+ "guess":[
+ "engelberg.ch",
+ "engelberg.ow.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1403":{
"bfs":"1403",
@@ -11351,26 +38414,78 @@
],
"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "giswil.ow.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "giswil.ow.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1404":{
"bfs":"1404",
"name":"Kerns",
"canton":"Kanton Obwalden",
- "domain":"kerns.ch",
+ "domain":"kerns.ow.ch",
"mx":[
- "mail.kerns.ch"
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "spf":"",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
+ "spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kerns.ow.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kerns.ch"
+ ],
+ "guess":[
+ "kerns.ch",
+ "kerns.ow.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"1405":{
@@ -11386,13 +38501,36 @@
],
"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lungern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lungern.ch"
+ ],
+ "guess":[
+ "lungern.ch",
+ "lungern.ow.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1406":{
"bfs":"1406",
@@ -11407,13 +38545,33 @@
],
"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sachseln.ow.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "sachseln.ow.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1407":{
"bfs":"1407",
@@ -11428,31 +38586,78 @@
],
"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sarnen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sarnen.ch"
+ ],
+ "guess":[
+ "sarnen.ch",
+ "sarnen.ow.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1501":{
"bfs":"1501",
"name":"Beckenried",
"canton":"Kanton Nidwalden",
- "domain":"beckenried.ch",
+ "domain":"gv.beckenried.ch",
"mx":[
- "mail.beckenried.ch"
- ],
- "spf":"v=spf1 ip4:185.7.213.20 a:smtp.beckenried.ch include:spf.hostfactory.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 a:smtp.beckenried.ch include:spf.hostfactory.ch include:spf.protection.outlook.com -all v=spf1 ip4:185.117.170.1 ip4:185.117.170.2 ip4:217.150.252.154 ip4:217.150.252.155 ip4:185.16.174.135 ip4:185.16.174.139 ip4:185.117.169.5 ip4:185.117.168.45 ip4:185.117.169.100 ip4:185.117.168.143 ip4:185.117.168.144 ip4:185.117.168.141 ip4:185.117.168.142 ip4:185.117.170.5 ip4:185.117.170.6 ip4:185.117.170.3 ip4:185.117.170.4 ip4:185.117.170.7 ip4:185.117.170.8 ip4:185.117.168.252 ip4:185.117.168.253 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 200713
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gv.beckenried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1502":{
"bfs":"1502",
@@ -11465,33 +38670,91 @@
"ktvmx03.mail.admin.ch",
"ktvmx04.mail.admin.ch"
],
- "spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buochs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buochs.ch"
+ ],
+ "guess":[
+ "buochs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1503":{
"bfs":"1503",
"name":"Dallenwil",
"canton":"Kanton Nidwalden",
- "domain":"dallenwil.ch",
+ "domain":"nw.ch",
"mx":[
- "dallenwil-ch.mail.protection.outlook.com"
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 ip4:185.7.213.20 ip4:62.12.130.234 a:smtp.trainingplus.ch include:_spfgroupa.admin.ch include:_spf.tivian.com include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "nw.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1504":{
"bfs":"1504",
@@ -11505,11 +38768,42 @@
"ktvmx04.mail.admin.ch"
],
"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "emmetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "emmetten.ch"
+ ],
+ "guess":[
+ "emmetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1505":{
"bfs":"1505",
@@ -11524,13 +38818,35 @@
],
"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ennetbuergen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ennetbuergen.ch"
+ ],
+ "guess":[
+ "ennetbuergen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1506":{
"bfs":"1506",
@@ -11545,17 +38861,39 @@
],
"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ennetmoos.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ennetmoos.ch"
+ ],
+ "guess":[
+ "ennetmoos.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1507":{
"bfs":"1507",
- "name":"Hergiswil",
+ "name":"Hergiswil (NW)",
"canton":"Kanton Nidwalden",
"domain":"hergiswil.ch",
"mx":[
@@ -11565,18 +38903,47 @@
"ktvmx04.mail.admin.ch"
],
"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hergiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hergiswil.ch"
+ ],
+ "guess":[
+ "gemeinde-hergiswil.ch",
+ "hergiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1508":{
"bfs":"1508",
- "name":"Oberdorf NW",
+ "name":"Oberdorf (NW)",
"canton":"Kanton Nidwalden",
"domain":"nw.ch",
"mx":[
@@ -11586,33 +38953,92 @@
"ktvmx04.mail.admin.ch"
],
"spf":"v=spf1 ip4:185.7.213.20 ip4:62.12.130.234 a:smtp.trainingplus.ch include:_spfgroupa.admin.ch include:_spf.tivian.com include:_spf.i-web.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 ip4:62.12.130.234 a:smtp.trainingplus.ch include:_spfgroupa.admin.ch include:_spf.tivian.com include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:91.217.141.0/24 ip4:87.79.30.0/25 ip4:193.66.190.13 ip4:89.250.60.42 ip4:5.250.160.26 ip4:89.250.48.136 ip4:194.116.128.11 ip4:82.147.60.210 ip4:169.51.68.39 ip4:169.61.69.9 ip4:50.31.156.96/27 ip4:104.245.209.192/26 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nw.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "oberdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1509":{
"bfs":"1509",
"name":"Stans",
"canton":"Kanton Nidwalden",
- "domain":"stans.ch",
+ "domain":"stans.nw.ch",
"mx":[
- "mailgate1.admin.ch",
- "mailgate2.admin.ch"
- ],
- "spf":"v=spf1 ip4:162.23.32.11 ip4:162.23.32.12 ip4:162.23.32.13 ip4:162.23.32.14 ip4:162.23.32.19 ip4:162.23.32.21 ip4:162.23.32.22 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_spf.i-web.ch ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:162.23.32.11 ip4:162.23.32.12 ip4:162.23.32.13 ip4:162.23.32.14 ip4:162.23.32.19 ip4:162.23.32.21 ip4:162.23.32.22 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_spf.i-web.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 33845
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:_spf.talus.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stans.nw.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stans.ch"
+ ],
+ "guess":[
+ "stans.ch",
+ "stans.nw.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"1510":{
"bfs":"1510",
@@ -11625,16 +39051,37 @@
"ktvmx03.mail.admin.ch",
"ktvmx04.mail.admin.ch"
],
- "spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch ipv4:193.135.56.6 include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch ipv4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.ilz.info",
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "spf":"v=spf1 include:_spfgroupa.admin.ch ipv4:193.135.56.6 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stansstad.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stansstad.ch"
+ ],
+ "guess":[
+ "stansstad.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1511":{
"bfs":"1511",
@@ -11649,13 +39096,35 @@
],
"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch ~all v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf2.privasphere.com include:spf.weaver.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:185.90.37.63 ip4:185.90.37.64 ip4:185.90.37.65 ip4:185.90.37.107 ip4:185.90.37.108 ip4:185.90.37.132 ip4:185.90.37.247 ip4:185.90.37.249 ip4:185.90.37.250 ip4:185.90.37.253 ip4:185.90.37.251 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ilz.info"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wolfenschiessen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wolfenschiessen.ch"
+ ],
+ "guess":[
+ "wolfenschiessen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1630":{
"bfs":"1630",
@@ -11667,14 +39136,53 @@
"ip18.gl.ch"
],
"spf":"v=spf1 include:spf.smtp2go.com include:_spf.i-web.ch include:spf.abacuscity.ch ip4:217.192.170.97 ip4:217.192.170.98 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.smtp2go.com include:_spf.i-web.ch include:spf.abacuscity.ch ip4:217.192.170.97 ip4:217.192.170.98 -all v=spf1 ip4:207.58.147.64/28 ip4:216.22.15.224/27 ip4:43.228.184.0/22 ip4:103.47.204.0/22 ip4:103.2.140.0/22 ip4:203.31.36.0/22 ip4:170.10.68.0/22 ip4:158.120.80.0/21 ip4:66.235.120.0/21 ip4:194.195.251.175 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.gl.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "glarus-nord.ch"
+ ],
+ "guess":[
+ "glarus-nord.ch",
+ "glarusnord.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1631":{
"bfs":"1631",
@@ -11686,14 +39194,52 @@
"ip18.gl.ch"
],
"spf":"v=spf1 include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.smtp2go.com include:spf.nl2go.com ip4:193.135.56.6 ip4:217.192.170.97 ip4:217.192.170.98 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.smtp2go.com include:spf.nl2go.com ip4:193.135.56.6 ip4:217.192.170.97 ip4:217.192.170.98 -all v=spf1 ip4:91.208.173.0/24 ip4:91.212.152.0/24 ip4:195.141.89.0/24 ip4:185.188.196.0/24 ip4:83.145.109.0/24 ip4:31.172.161.0/24 ip4:80.83.63.195/32 ip4:80.83.63.196/32 a:outbound.appriver.com ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:207.58.147.64/28 ip4:216.22.15.224/27 ip4:43.228.184.0/22 ip4:103.47.204.0/22 ip4:103.2.140.0/22 ip4:203.31.36.0/22 ip4:170.10.68.0/22 ip4:158.120.80.0/21 ip4:66.235.120.0/21 ip4:194.195.251.175 ~all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.gl.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "glarus-sued.ch"
+ ],
+ "guess":[
+ "glarus-sued.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1632":{
"bfs":"1632",
@@ -11705,14 +39251,52 @@
"ip18.gl.ch"
],
"spf":"v=spf1 include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.smtp2go.com ip4:217.192.170.97 ip4:217.192.170.98 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.smtp2go.com ip4:217.192.170.97 ip4:217.192.170.98 -all v=spf1 ip4:91.208.173.0/24 ip4:91.212.152.0/24 ip4:195.141.89.0/24 ip4:185.188.196.0/24 ip4:83.145.109.0/24 ip4:31.172.161.0/24 ip4:80.83.63.195/32 ip4:80.83.63.196/32 a:outbound.appriver.com ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:207.58.147.64/28 ip4:216.22.15.224/27 ip4:43.228.184.0/22 ip4:103.47.204.0/22 ip4:103.2.140.0/22 ip4:203.31.36.0/22 ip4:170.10.68.0/22 ip4:158.120.80.0/21 ip4:66.235.120.0/21 ip4:194.195.251.175 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.gl.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "glarus.ch"
+ ],
+ "guess":[
+ "glarus.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1701":{
"bfs":"1701",
@@ -11720,16 +39304,46 @@
"canton":"Kanton Zug",
"domain":"baar.ch",
"mx":[
- "mail.zg.ch",
"mail1.zg.ch",
"mail2.zg.ch"
],
"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.protection.outlook.com include:spf.zg.ch include:_spf.i-web.ch include:privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.protection.outlook.com include:spf.zg.ch include:_spf.i-web.ch include:privasphere.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx:zg.ch mx:admin.ch/24 mx:ag.ch/24 ip6:2a10:8244:4:600::/64 ip4:193.134.14.50/32 v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:spf.privasphere.com ip4:83.150.2.35/32 ip4:83.150.7.191/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "baar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baar.ch"
+ ],
+ "guess":[
+ "baar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1702":{
"bfs":"1702",
@@ -11737,48 +39351,114 @@
"canton":"Kanton Zug",
"domain":"cham.ch",
"mx":[
- "mail.zg.ch",
"mail1.zg.ch",
"mail2.zg.ch"
],
"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all v=spf1 mx:zg.ch mx:admin.ch/24 mx:ag.ch/24 ip6:2a10:8244:4:600::/64 ip4:193.134.14.50/32 v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.privasphere.com ip4:83.150.2.35/32 ip4:83.150.7.191/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cham.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cham.ch"
+ ],
+ "guess":[
+ "cham.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1703":{
"bfs":"1703",
"name":"Hünenberg",
"canton":"Kanton Zug",
- "domain":"zg.ch",
+ "domain":"huenenberg.ch",
"mx":[
"mail1.zg.ch",
"mail2.zg.ch"
],
- "spf":"v=spf1 mx ip6:2a10:8244:1000:1800::5001/128 ip6:2a10:8244:1000:1800::5002/128 ip6:2a10:8244:4:600::/64 ip4:159.144.81.1 ip4:159.144.81.2 ip4:193.134.14.50/32 include:spf.secemail.ch include:spf.protection.outlook.com include:spf.privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip6:2a10:8244:1000:1800::5001/128 ip6:2a10:8244:1000:1800::5002/128 ip6:2a10:8244:4:600::/64 ip4:159.144.81.1 ip4:159.144.81.2 ip4:193.134.14.50/32 include:spf.secemail.ch include:spf.protection.outlook.com include:spf.privasphere.com -all v=spf1 ip4:159.144.36.106 ip4:159.144.218.143 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "spf":"v=spf1 include:_spf.i-web.ch include:spf.zg.ch include:_spf.senders.scnem.com include:_spf.tophost.ch a ip4:94.130.72.240 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "huenenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1704":{
"bfs":"1704",
"name":"Menzingen",
"canton":"Kanton Zug",
- "domain":"zg.ch",
+ "domain":"menzingen.ch",
"mx":[
"mail1.zg.ch",
"mail2.zg.ch"
],
- "spf":"v=spf1 mx ip6:2a10:8244:1000:1800::5001/128 ip6:2a10:8244:1000:1800::5002/128 ip6:2a10:8244:4:600::/64 ip4:159.144.81.1 ip4:159.144.81.2 ip4:193.134.14.50/32 include:spf.secemail.ch include:spf.protection.outlook.com include:spf.privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip6:2a10:8244:1000:1800::5001/128 ip6:2a10:8244:1000:1800::5002/128 ip6:2a10:8244:4:600::/64 ip4:159.144.81.1 ip4:159.144.81.2 ip4:193.134.14.50/32 include:spf.secemail.ch include:spf.protection.outlook.com include:spf.privasphere.com -all v=spf1 ip4:159.144.36.106 ip4:159.144.218.143 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "spf":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "menzingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1705":{
"bfs":"1705",
@@ -11786,16 +39466,40 @@
"canton":"Kanton Zug",
"domain":"neuheim.ch",
"mx":[
- "mail.zg.ch",
"mail1.zg.ch",
"mail2.zg.ch"
],
"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all v=spf1 mx:zg.ch mx:admin.ch/24 mx:ag.ch/24 ip6:2a10:8244:4:600::/64 ip4:193.134.14.50/32 v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.privasphere.com ip4:83.150.2.35/32 ip4:83.150.7.191/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neuheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neuheim.ch"
+ ],
+ "guess":[
+ "neuheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1706":{
"bfs":"1706",
@@ -11807,27 +39511,64 @@
"mail2.zg.ch"
],
"spf":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.server-he.de -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.server-he.de -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:80.237.130.0/24 ip4:80.237.132.0/23 ip4:80.237.137.0/24 ip4:80.237.138.0/24 ip4:83.169.24.0/21 ip4:87.230.40.0/21 ip4:87.230.60.0/22 ip4:87.230.104.0/22 ip4:91.250.64.0/21 include:spfb.server-he.de -all v=spf1 ip4:5.35.225.0/24 ip4:5.35.226.0/24 ip4:5.35.232.0/22 ip4:5.175.14.0/24 ip4:176.28.32.0/21 ip4:178.77.80.0/21 include:spfc.server-he.de include:secureserver.net -all v=spf1 ip4:178.77.104.0/21 ip4:92.51.170.64/27 ip4:178.77.112.0/21 ip4:80.67.16.0/20 ip4:134.119.228.0/19 ip6:2a00:1158:400:1::/120 ip6:2a01:488::/32 ip4:91.216.90.0/24 -all v=spf1 include:spf-0.secureserver.net -all v=spf1 ip4:64.202.168.0/24 ip4:97.74.135.0/24 ip4:72.167.238.0/24 ip4:72.167.234.0/24 ip4:72.167.218.0/24 ip4:68.178.252.0/24 ip4:68.178.213.0/24 ip4:216.69.139.0/24 ip4:208.109.80.0/24 ip4:92.204.81.0/24 ip4:198.71.224.0/19 ip4:184.168.224.0/24 ip4:184.168.200.0/24 ip4:184.168.131.0/24 ip4:184.168.128.0/24 ip4:92.204.65.0/28 ip4:182.50.132.0/24 ip4:173.201.192.0/23 ip4:72.167.168.0/24 ip4:92.204.71.0/24 ip4:132.148.124.0/24 ip4:72.167.172.0/24 ip4:188.121.52.0/24 ip4:188.121.53.0/24 ip4:52.89.65.132 ip4:54.214.222.76 ip4:54.184.82.65 ip4:52.26.164.15 ip4:68.178.181.0/24 ip4:50.63.8.0/22 ip4:208.109.194.0/24 ip4:80.237.138.192/26 include:spf.protection.outlook.com -all",
- "mx_asns":[
- 51907
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberaegeri.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberaegeri.ch"
+ ],
+ "guess":[
+ "oberaegeri.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1707":{
"bfs":"1707",
"name":"Risch",
"canton":"Kanton Zug",
- "domain":"zg.ch",
+ "domain":"rischrotkreuz.ch",
"mx":[
"mail1.zg.ch",
"mail2.zg.ch"
],
- "spf":"v=spf1 mx ip6:2a10:8244:1000:1800::5001/128 ip6:2a10:8244:1000:1800::5002/128 ip6:2a10:8244:4:600::/64 ip4:159.144.81.1 ip4:159.144.81.2 ip4:193.134.14.50/32 include:spf.secemail.ch include:spf.protection.outlook.com include:spf.privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip6:2a10:8244:1000:1800::5001/128 ip6:2a10:8244:1000:1800::5002/128 ip6:2a10:8244:4:600::/64 ip4:159.144.81.1 ip4:159.144.81.2 ip4:193.134.14.50/32 include:spf.secemail.ch include:spf.protection.outlook.com include:spf.privasphere.com -all v=spf1 ip4:159.144.36.106 ip4:159.144.218.143 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "spf":"v=spf1 a mx include:spf.taginet.com ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "rischrotkreuz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1708":{
"bfs":"1708",
@@ -11835,16 +39576,33 @@
"canton":"Kanton Zug",
"domain":"steinhausen.ch",
"mx":[
- "mail.zg.ch",
"mail1.zg.ch",
"mail2.zg.ch"
],
"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 ip4:193.134.13.61 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 ip4:193.134.13.61 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all v=spf1 mx:zg.ch mx:admin.ch/24 mx:ag.ch/24 ip6:2a10:8244:4:600::/64 ip4:193.134.14.50/32 v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.privasphere.com ip4:83.150.2.35/32 ip4:83.150.7.191/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "steinhausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1709":{
"bfs":"1709",
@@ -11857,10 +39615,35 @@
],
"spf":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:_spf.i-web.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 51907
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "unteraegeri.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unteraegeri.ch"
+ ],
+ "guess":[
+ "unteraegeri.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1710":{
"bfs":"1710",
@@ -11873,10 +39656,29 @@
],
"spf":"v=spf1 a:mail.zg.ch a:mail1.zg.ch a:mail2.zg.ch ip4:193.134.12.15 ip4:193.134.26.182 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 ip4:193.134.26.181 include:spf.zg.ch include:privasphere.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a:mail.zg.ch a:mail1.zg.ch a:mail2.zg.ch ip4:193.134.12.15 ip4:193.134.26.182 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 ip4:193.134.26.181 include:spf.zg.ch include:privasphere.com -all v=spf1 mx:zg.ch mx:admin.ch/24 mx:ag.ch/24 ip6:2a10:8244:4:600::/64 ip4:193.134.14.50/32 v=spf1 include:spf.privasphere.com ip4:83.150.2.35/32 ip4:83.150.7.191/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "walchwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walchwil.ch"
+ ],
+ "guess":[
+ "walchwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"1711":{
"bfs":"1711",
@@ -11884,73 +39686,208 @@
"canton":"Kanton Zug",
"domain":"stadtzug.ch",
"mx":[
- "mail.zg.ch",
"mail1.zg.ch",
"mail2.zg.ch"
],
"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 ip4:193.134.13.61 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf.zg.ch include:_spf.senders.scnem.com include:privasphere.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 ip4:193.134.13.61 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf.zg.ch include:_spf.senders.scnem.com include:privasphere.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx:zg.ch mx:admin.ch/24 mx:ag.ch/24 ip6:2a10:8244:4:600::/64 ip4:193.134.14.50/32 v=spf1 ip4:80.190.118.0/24 ip4:80.190.129.128/25 ip4:80.190.157.128/25 -all v=spf1 include:spf.privasphere.com ip4:83.150.2.35/32 ip4:83.150.7.191/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 51907
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stadtzug.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadtzug.ch"
+ ],
+ "guess":[
+ "zug.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2008":{
"bfs":"2008",
- "name":"Châtillon",
- "canton":"",
+ "name":"Châtillon (FR)",
+ "canton":"Kanton Freiburg",
"domain":"chatillon-broye.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chatillon-broye.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chatillon-broye.ch"
+ ],
+ "guess":[
+ "chatillon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2011":{
"bfs":"2011",
- "name":"Cugy",
- "canton":"",
- "domain":"cugy-fr.ch",
+ "name":"Cugy (FR)",
+ "canton":"Kanton Freiburg",
+ "domain":"hemmer.ch",
"mx":[
"mx1.spamvor.com",
"mx2.spamvor.com"
],
- "spf":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 +mx +a -all",
+ "spf":"v=spf1 include:_spf.ch-dns.net ip4:185.151.164.55 +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
"gateway":"spamvor",
- "mx_asns":[
- 29222
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cugy-fr.ch"
+ ],
+ "guess":[
+ "cugy.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2022":{
"bfs":"2022",
"name":"Gletterens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"gletterens.ch",
"mx":[
"gletterens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gletterens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gletterens.ch"
+ ],
+ "guess":[
+ "gletterens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2025":{
"bfs":"2025",
- "name":"Lully FR",
+ "name":"Lully (FR)",
"canton":"Kanton Freiburg",
"domain":"lully-fr.ch",
"mx":[
@@ -11958,86 +39895,361 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lullyfr-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "lully-fr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lully-fr.ch"
+ ],
+ "guess":[
+ "lully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2029":{
"bfs":"2029",
- "name":"Montagny",
- "canton":"",
+ "name":"Montagny (FR)",
+ "canton":"Kanton Freiburg",
"domain":"montagny-fr.ch",
"mx":[
"montagnyfr-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:evok.ch include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:evok.ch include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX montagnyfr-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.montagny-fr.ch CNAME → selector1-montagnyfr-ch02b._domainkey.communedemontagnyfr.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.montagny-fr.ch CNAME → selector2-montagnyfr-ch02b._domainkey.communedemontagnyfr.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montagny-fr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montagny-fr.ch"
+ ],
+ "guess":[
+ "montagny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2035":{
"bfs":"2035",
"name":"Nuvilly",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"nuvilly.ch",
"mx":[
"nuvilly-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nuvilly-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.nuvilly.ch CNAME → selector1-nuvilly-ch._domainkey.nuvilly.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.nuvilly.ch CNAME → selector2-nuvilly-ch._domainkey.nuvilly.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "nuvilly.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nuvilly.ch"
+ ],
+ "guess":[
+ "nuvilly.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2038":{
"bfs":"2038",
"name":"Prévondavaux",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"prevondavaux.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "prevondavaux.ch"
+ ],
+ "guess":[
+ "prevondavaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2041":{
"bfs":"2041",
- "name":"Saint-Aubin",
- "canton":"",
- "domain":"st-aubin.ch",
+ "name":"Saint-Aubin (FR)",
+ "canton":"Kanton Freiburg",
+ "domain":"saint-aubin.ch",
"mx":[
- "mx1.spamvor.com",
- "mx2.spamvor.com"
+ "mailfilter.evok.ch"
],
- "spf":"",
- "provider":"independent",
- "gateway":"spamvor",
- "mx_asns":[
- 29222
+ "spf":"v=spf1 a mx ip4:193.108.54.58 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "saint-aubin.ch"
+ ],
+ "redirect":[
+ "saint-aubin.ch"
+ ],
+ "wikidata":[
+ "st-aubin.ch"
+ ],
+ "guess":[
+ "saint-aubin.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2043":{
"bfs":"2043",
"name":"Sévaz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"sevaz.ch",
"mx":[
"mx1.spamvor.com",
@@ -12045,52 +40257,157 @@
],
"spf":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
"gateway":"spamvor",
- "mx_asns":[
- 29222
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sevaz.ch"
+ ],
+ "guess":[
+ "sevaz.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2044":{
"bfs":"2044",
"name":"Surpierre",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"surpierre-fr.ch",
"mx":[
"surpierrefr-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX surpierrefr-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "surpierre-fr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "surpierre-fr.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2045":{
"bfs":"2045",
"name":"Vallon",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"vallon.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
- "spf":"v=spf1 include:spf.infomaniak.ch ?all",
+ "spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vallon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vallon.ch"
+ ],
+ "guess":[
+ "vallon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2050":{
"bfs":"2050",
"name":"Les Montets",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"les-montets.ch",
"mx":[
"mx1.spamvor.com",
@@ -12098,29 +40415,60 @@
],
"spf":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
"gateway":"spamvor",
- "mx_asns":[
- 29222
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "les-montets.ch"
+ ],
+ "guess":[
+ "les-montets.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2051":{
"bfs":"2051",
"name":"Delley-Portalban",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"delley-portalban.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:evok.ch include:_spf.ch-dns.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch include:_spf.ch-dns.net -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "delley-portalban.ch",
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "delley-portalban.ch"
+ ],
+ "guess":[
+ "delley-portalban.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2053":{
"bfs":"2053",
@@ -12132,116 +40480,318 @@
],
"spf":"v=spf1 a mx include:evok.ch include:_spf.ch-dns.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch include:_spf.ch-dns.net -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "belmont-broye.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "belmont-broye.ch"
+ ],
+ "guess":[
+ "belmont-broye.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2054":{
"bfs":"2054",
"name":"Estavayer",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"estavayer.ch",
"mx":[
"mps.telecomservices.ch"
],
"spf":"v=spf1 ip4:94.126.16.46 ip4:84.253.32.226 ip4:94.126.16.47 ip4:94.126.16.48 ip4:212.71.120.144/28 a:mail.estavayer.ch a:mps.telecomservices.ch include:spf.protection.outlook.com include:smtproutes.com include:smtpout.com include:_spf.ch-dns.net include:spf.brevo.com mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:94.126.16.46 ip4:84.253.32.226 ip4:94.126.16.47 ip4:94.126.16.48 ip4:212.71.120.144/28 a:mail.estavayer.ch a:mps.telecomservices.ch include:spf.protection.outlook.com include:smtproutes.com include:smtpout.com include:_spf.ch-dns.net include:spf.brevo.com mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 redirect=spf.mtaroutes.com v=spf1 redirect=spf.mtaroutes.com v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 include:spf.antispamcloud.com -all v=spf1 ip4:130.117.251.9 ip4:130.117.251.10 ip6:2001:978:2:6::20:10 ip6:2001:978:2:6::20:a ip4:94.75.244.176/27 ip4:94.75.192.139/27 ip4:95.211.2.195/26 ip4:95.211.2.198/26 ip4:95.211.2.199/26 ip4:95.211.2.201/26 ip4:95.211.2.202/26 ip4:95.211.2.204/26 ip4:94.75.244.183/27 ip4:94.75.244.184/27 ip6:2001:1af8:4400:a047:6::1 ip4:37.58.58.55/27 ip4:199.115.117.7/27 ip4:199.115.117.10/27 ip4:199.115.117.11/27 ip6:2604:9a00:2010:a024:21::1 ip4:185.201.16.0/22 ip4:192.69.18.0/24 ip4:208.70.90.0/24 ip4:45.91.121.0/24 ip4:45.93.148.0/24 ip4:45.131.180.0/24 ip4:45.140.132.0/24 ip4:193.41.32.0/24 ip4:185.225.27.0/24 ip4:80.91.219.0/24 ip4:188.190.113.0/24 ip4:45.147.95.0/24 ip4:46.229.240.0/24 ip4:87.236.163.0/24 ip4:188.190.112.0/24 ip4:192.69.19.0/24 ip4:208.70.91.0/24 ip4:185.209.51.0/24 ip4:185.218.226.0/24 -all",
- "mx_asns":[
- 43800
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "estavayer.ch"
+ ],
+ "guess":[
+ "estavayer.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2055":{
"bfs":"2055",
"name":"Cheyres-Châbles",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"cheyres-chables.ch",
"mx":[
"cheyreschables-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cheyreschables-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cheyres-chables.ch CNAME → selector1-cheyreschables-ch01i._domainkey.cheyreschablesfr.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cheyres-chables.ch CNAME → selector2-cheyreschables-ch01i._domainkey.cheyreschablesfr.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cheyres-chables.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cheyres-chables.ch"
+ ],
+ "guess":[
+ "cheyres-chables.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2056":{
"bfs":"2056",
"name":"Fétigny-Ménières",
"canton":"Kanton Freiburg",
"domain":"fetigny-menieres.ch",
- "mx":[],
- "spf":"",
- "provider":"microsoft"
- },
- "2061":{
- "bfs":"2061",
- "name":"Auboranges",
- "canton":"",
- "domain":"auboranges.ch",
"mx":[
- "auboranges-ch.mail.protection.outlook.com"
+ "fetignymenieres-ch01i.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fetignymenieres-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "fetigny-menieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2063":{
"bfs":"2063",
"name":"Billens-Hennens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"billens-hennens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
- },
- "2066":{
- "bfs":"2066",
- "name":"Chapelle",
- "canton":"Kanton Freiburg",
- "domain":"chapelle.ch",
- "mx":[
- "chapelle-ch.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "billens-hennens.ch"
+ ],
+ "guess":[
+ "billens-hennens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2067":{
"bfs":"2067",
- "name":"Le Châtelard FR",
+ "name":"Le Châtelard",
"canton":"Kanton Freiburg",
"domain":"le-chatelard.ch",
"mx":[
@@ -12249,13 +40799,71 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lechatelard-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "le-chatelard.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "le-chatelard.ch"
+ ],
+ "guess":[
+ "le-chatelard.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2068":{
"bfs":"2068",
@@ -12267,226 +40875,815 @@
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
- },
- "2072":{
- "bfs":"2072",
- "name":"Ecublens",
- "canton":"Kanton Freiburg",
- "domain":"ecublens.ch",
- "mx":[
- "ecublens-ch.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 ip4:62.2.153.110 include:spf.ganesh-hosting.ch include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mailjet.com include:spf-eu.emailsignatures365.com a:c.spf.service-now.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:62.2.153.110 include:spf.ganesh-hosting.ch include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mailjet.com include:spf-eu.emailsignatures365.com a:c.spf.service-now.com -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:13.74.137.176 ip4:52.138.216.130 ip4:40.114.221.220 ip4:40.113.3.253 ip4:23.100.56.64 ip4:137.116.240.241 ip4:13.74.144.83 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chatonnaye-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chatonnaye.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chatonnaye.ch"
+ ],
+ "guess":[
+ "chatonnaye.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2079":{
"bfs":"2079",
"name":"Grangettes",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"grangettes-pres-romont.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grangettes-pres-romont.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grangettes-pres-romont.ch"
+ ],
+ "guess":[
+ "grangettes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2086":{
"bfs":"2086",
"name":"Massonnens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"massonnens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "massonnens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "massonnens.ch"
+ ],
+ "guess":[
+ "massonnens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2087":{
"bfs":"2087",
- "name":"Mézières",
- "canton":"",
- "domain":"mezieres-fr.ch",
- "mx":[
- "mezieresfr-ch02b.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 include:spf.protection.outlook.com mx a a:mail.senselan.ch a:mailcustom.infosynergie.ch -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com mx a a:mail.senselan.ch a:mailcustom.infosynergie.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
- },
- "2089":{
- "bfs":"2089",
- "name":"Montet",
- "canton":"",
- "domain":"montet.ch",
+ "name":"Mézières (FR)",
+ "canton":"Kanton Freiburg",
+ "domain":"mezieres-fr.ch",
"mx":[
- "mail.montet.ch"
- ],
- "spf":"v=spf1 include:spf.mail.webland.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mail.webland.ch -all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all",
- "mx_asns":[
- 25563
+ "mezieresfr-ch02b.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.montet.ch"
- }
+ "spf":"v=spf1 include:spf.protection.outlook.com mx a a:mail.senselan.ch a:mailcustom.infosynergie.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mezieresfr-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mezieres-fr.ch",
+ "romontregion.ch",
+ "sante-glane.ch",
+ "torny2025.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mezieres-fr.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2096":{
"bfs":"2096",
- "name":"Romont",
- "canton":"",
+ "name":"Romont (FR)",
+ "canton":"Kanton Freiburg",
"domain":"romont.ch",
"mx":[
"romont-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.62.202.194 ip4:46.16.202.90 include:spf.infomaniak.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.202.194 ip4:46.16.202.90 include:spf.infomaniak.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX romont-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "romont.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "romont.ch"
+ ],
+ "guess":[
+ "romont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2097":{
"bfs":"2097",
"name":"Rue",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"rue.ch",
"mx":[
"rue-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:212.71.120.144/28 ip4:128.65.195.91/32 include:communederue.roomingit.fr include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ip4:212.71.120.144/28 ip4:128.65.195.91/32 include:communederue.roomingit.fr include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rue-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rue.ch CNAME → selector1-rue-ch._domainkey.communerue.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rue.ch CNAME → selector2-rue-ch._domainkey.communerue.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rue.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rue.ch"
+ ],
+ "guess":[
+ "rue.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2099":{
"bfs":"2099",
"name":"Siviriez",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"siviriez.ch",
"mx":[
"siviriez-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 ip4:212.90.219.210 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 ip4:212.90.219.210 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX siviriez-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.siviriez.ch CNAME → selector1-siviriez-ch._domainkey.siviriez.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.siviriez.ch CNAME → selector2-siviriez-ch._domainkey.siviriez.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "siviriez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "siviriez.ch"
+ ],
+ "guess":[
+ "siviriez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2102":{
"bfs":"2102",
"name":"Ursy",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"ursy.ch",
"mx":[
"ursy-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ursy-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ursy.ch CNAME → selector1-ursy-ch._domainkey.ursyfr.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ursy.ch CNAME → selector2-ursy-ch._domainkey.ursyfr.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ursy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ursy.ch"
+ ],
+ "guess":[
+ "ursy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2113":{
"bfs":"2113",
"name":"Vuisternens-devant-Romont",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"vuisternens-devant-romont.ch",
"mx":[
"vuisternens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vuisternens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[
+ "vuisternens.ch"
+ ],
+ "wikidata":[
+ "vuisternens-devant-romont.ch"
+ ],
+ "guess":[
+ "vuisternens-devant-romont.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2114":{
"bfs":"2114",
"name":"Villorsonnens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"villorsonnens.ch",
"mx":[
"villorsonnens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villorsonnens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "villorsonnens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2115":{
"bfs":"2115",
"name":"Torny",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"torny.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 ip4:80.74.154.186 ip4:80.74.153.24 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 ip4:80.74.154.186 ip4:80.74.153.24 -all v=spf1 ip4:193.33.30.81/32 ip4:193.33.30.87/32 ip4:193.33.30.91/32 ip4:193.33.30.92/32 ip4:193.33.30.124/32 ip4:193.33.30.125/32 ip4:185.122.238.197/32 ip4:185.122.238.201/32 ip4:185.122.238.202/32 include:seppmail.evok.ch -all v=spf1 ip4:193.33.30.89/32 ip4:185.122.238.200/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "torny.ch"
+ ],
+ "guess":[
+ "torny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2117":{
"bfs":"2117",
@@ -12498,139 +41695,645 @@
],
"spf":"v=spf1 a mx include:evok.ch include:_spf.i-web.ch a:mailgate2.ti-informatique.com ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch include:_spf.i-web.ch a:mailgate2.ti-informatique.com ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "communevillaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "communevillaz.ch"
+ ],
+ "guess":[
+ "villaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2121":{
"bfs":"2121",
"name":"Haut-Intyamon",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"haut-intyamon.ch",
"mx":[
"hautintyamon-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hautintyamon-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "haut-intyamon.ch",
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haut-intyamon.ch"
+ ],
+ "guess":[
+ "haut-intyamon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2122":{
"bfs":"2122",
"name":"Pont-en-Ogoz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"pont-en-ogoz.ch",
"mx":[
"pontenogoz-ch01j.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.62.149.214 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.149.214 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pontenogoz-ch01j.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.pont-en-ogoz.ch CNAME → selector1-pontenogoz-ch01j._domainkey.communepeo.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.pont-en-ogoz.ch CNAME → selector2-pontenogoz-ch01j._domainkey.communepeo.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pont-en-ogoz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pont-en-ogoz.ch"
+ ],
+ "guess":[
+ "pont-en-ogoz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2123":{
"bfs":"2123",
"name":"Botterens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"botterens.ch",
"mx":[
"botterens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX botterens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "botterens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "botterens.ch"
+ ],
+ "guess":[
+ "botterens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2124":{
"bfs":"2124",
"name":"Broc",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"broc.ch",
"mx":[
"broc-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX broc-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.broc.ch CNAME → selector1-broc-ch._domainkey.brocch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.broc.ch CNAME → selector2-broc-ch._domainkey.brocch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "broc.ch"
+ ],
+ "guess":[
+ "broc.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2125":{
"bfs":"2125",
"name":"Bulle",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"bulle.ch",
"mx":[
"bulle-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch ip4:85.90.3.67 ip4:195.65.10.12 ip4:128.65.195.12 ip4:194.56.218.154 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch ip4:85.90.3.67 ip4:195.65.10.12 ip4:128.65.195.12 ip4:194.56.218.154 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bulle-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bulle.ch CNAME → selector1-bulle-ch._domainkey.communebulle.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bulle.ch CNAME → selector2-bulle-ch._domainkey.communebulle.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bulle.ch"
+ ],
+ "guess":[
+ "bulle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2128":{
"bfs":"2128",
"name":"Châtel-sur-Montsalvens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"chatel-montsalvens.ch",
"mx":[
"chatelmontsalvens-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chatelmontsalvens-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chatel-montsalvens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chatel-montsalvens.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2129":{
"bfs":"2129",
"name":"Corbières",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"corbieres.ch",
"mx":[
"corbieres-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corbieres-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corbieres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corbieres.ch"
+ ],
+ "guess":[
+ "corbieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2130":{
"bfs":"2130",
@@ -12642,143 +42345,552 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.147.132 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.147.132 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cresuz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cresuz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cresuz.ch"
+ ],
+ "guess":[
+ "cresuz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2131":{
"bfs":"2131",
"name":"Echarlens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"echarlens.ch",
"mx":[
"echarlens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.google.com include:spf.infomaniak.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.google.com include:spf.infomaniak.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX echarlens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "echarlens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "echarlens.ch"
+ ],
+ "guess":[
+ "echarlens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2134":{
"bfs":"2134",
"name":"Grandvillard",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"grandvillard.ch",
"mx":[
"grandvillard-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.customer.swiss-egov.cloud -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grandvillard-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grandvillard.ch"
+ ],
+ "guess":[
+ "grandvillard.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2135":{
"bfs":"2135",
- "name":"Greyerz",
- "canton":"",
+ "name":"Gruyères",
+ "canton":"Kanton Freiburg",
"domain":"gruyeres.ch",
"mx":[
"gruyeres-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gruyeres-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gruyeres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gruyeres.ch"
+ ],
+ "guess":[
+ "gruyeres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2137":{
"bfs":"2137",
"name":"Hauteville",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"hauteville.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hauteville.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hauteville.ch"
+ ],
+ "guess":[
+ "hauteville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2138":{
"bfs":"2138",
"name":"Jaun",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"jaun.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jaun.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jaun.ch"
+ ],
+ "guess":[
+ "jaun.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2140":{
"bfs":"2140",
"name":"Marsens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"marsens.ch",
"mx":[
"mps.telecomservices.ch"
],
"spf":"v=spf1 a:email.marsens.ch a:mps.telecomservices.ch ~all",
"provider":"independent",
- "mx_asns":[
- 43800
- ],
- "autodiscover":{
- "autodiscover_cname":"email.marsens.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "marsens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "marsens.ch"
+ ],
+ "guess":[
+ "marsens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2143":{
"bfs":"2143",
"name":"Morlon",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"morlon.ch",
"mx":[
"morlon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX morlon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "morlon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "morlon.ch"
+ ],
+ "guess":[
+ "morlon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2145":{
"bfs":"2145",
- "name":"Le Pâquier FR",
+ "name":"Le Pâquier (FR)",
"canton":"Kanton Freiburg",
"domain":"lepaquier.ch",
"mx":[
@@ -12786,17 +42898,79 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lepaquier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lepaquier.ch"
+ ],
+ "guess":[
+ "lepaquier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2147":{
"bfs":"2147",
- "name":"Pont-la-Ville FR",
+ "name":"Pont-la-Ville",
"canton":"Kanton Freiburg",
"domain":"pont-la-ville.ch",
"mx":[
@@ -12804,49 +42978,206 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pont-la-ville.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pont-la-ville.ch"
+ ],
+ "guess":[
+ "pont-la-ville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2148":{
"bfs":"2148",
"name":"Riaz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"riaz.ch",
"mx":[
"riaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX riaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "riaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "riaz.ch"
+ ],
+ "guess":[
+ "riaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2149":{
"bfs":"2149",
"name":"La Roche",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"la-roche.ch",
"mx":[
"laroche-ch0e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laroche-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "la-roche.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "la-roche.ch"
+ ],
+ "guess":[
+ "la-roche.ch",
+ "laroche.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2152":{
"bfs":"2152",
@@ -12858,90 +43189,418 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sales-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sales.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sales.ch"
+ ],
+ "guess":[
+ "sales.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2153":{
"bfs":"2153",
"name":"Sorens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"sorens.ch",
"mx":[
"sorens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.ch-dns.net include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.ch-dns.net include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sorens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.sorens.ch CNAME → selector1-sorens-ch._domainkey.communesorens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.sorens.ch CNAME → selector2-sorens-ch._domainkey.communesorens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sorens.ch"
+ ],
+ "guess":[
+ "sorens.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2155":{
"bfs":"2155",
"name":"Vaulruz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"vaulruz.ch",
"mx":[
"vaulruz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:185.48.146.23 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:185.48.146.23 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vaulruz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vaulruz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vaulruz.ch"
+ ],
+ "guess":[
+ "vaulruz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2160":{
"bfs":"2160",
"name":"Vuadens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"vuadens.ch",
"mx":[
"vuadens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vuadens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vuadens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vuadens.ch"
+ ],
+ "guess":[
+ "vuadens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2162":{
"bfs":"2162",
"name":"Bas-Intyamon",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"bas-intyamon.ch",
"mx":[
"basintyamon-ch0i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX basintyamon-ch0i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bas-intyamon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bas-intyamon.ch"
+ ],
+ "guess":[
+ "bas-intyamon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2163":{
"bfs":"2163",
"name":"Val-de-Charmey",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"val-de-charmey.ch",
"mx":[
"cleanmail.safecenter.ch",
@@ -12949,191 +43608,856 @@
],
"spf":"v=spf1 ip4:81.62.232.242/32 a:val-de-charmey.ch a:cleanmail.safecenter.ch include:_spf.i-web.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.232.242/32 a:val-de-charmey.ch a:cleanmail.safecenter.ch include:_spf.i-web.ch include:spf.protection.outlook.com ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"cleanmail",
- "mx_asns":[
- 8075,
- 31736
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX valdecharmey-ch0ie.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.val-de-charmey.ch CNAME → selector1-valdecharmey-ch0ie._domainkey.valdecharmey.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.val-de-charmey.ch CNAME → selector2-valdecharmey-ch0ie._domainkey.valdecharmey.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"cleanmail",
+ "sources_detail":{
+ "scrape":[
+ "val-de-charmey.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "val-de-charmey.ch"
+ ],
+ "guess":[
+ "val-de-charmey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2173":{
"bfs":"2173",
"name":"Autigny",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"autigny.ch",
"mx":[
"autigny-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.14.34.46 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.14.34.46 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX autigny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "autigny.ch"
+ ],
+ "guess":[
+ "autigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2174":{
"bfs":"2174",
"name":"Avry",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"avry.ch",
"mx":[
"mps.telecomservices.ch"
],
- "spf":"v=spf1 a:email.avry.ch a:mps.telecomservices.ch include:telecomservices.ch include:_spf.i-web.ch ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 a:email.avry.ch a:mps.telecomservices.ch include:telecomservices.ch include:_spf.i-web.ch ~all v=spf1 include:fwdsc.swisscenter.com a:mail.telecomservices.ch a:mps.telecomservices.ch a:smtp.peoplefone.com a:esg1.ofac.ch a:esg2.ofac.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all",
- "mx_asns":[
- 43800
- ],
- "autodiscover":{
- "autodiscover_cname":"email.avry.ch"
- }
+ "spf":"v=spf1 a:email.avry.ch a:mps.telecomservices.ch include:telecomservices.ch include:_spf.i-web.ch include:spf.protection.outlook.com ipv4:46.14.47.178 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "avry.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "avry.ch"
+ ],
+ "guess":[
+ "avry.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2175":{
"bfs":"2175",
"name":"Belfaux",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"belfaux.ch",
"mx":[
"belfaux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX belfaux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "belfaux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "belfaux.ch"
+ ],
+ "guess":[
+ "belfaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2177":{
"bfs":"2177",
"name":"Chénens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"chenens.ch",
"mx":[
"chenens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net include:ti-informatique.com +mx +a ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net include:ti-informatique.com +mx +a ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chenens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chenens.ch"
+ ],
+ "guess":[
+ "chenens.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2183":{
"bfs":"2183",
"name":"Corminboeuf",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"corminboeuf.ch",
"mx":[
"corminboeuf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:94.126.17.132 ip4:46.14.29.162 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:94.126.17.132 ip4:46.14.29.162 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corminboeuf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.corminboeuf.ch CNAME → selector1-corminboeuf-ch._domainkey.corminboeufcommune.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.corminboeuf.ch CNAME → selector2-corminboeuf-ch._domainkey.corminboeufcommune.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corminboeuf.ch",
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corminboeuf.ch"
+ ],
+ "guess":[
+ "corminboeuf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2186":{
"bfs":"2186",
- "name":"Cottens",
- "canton":"",
+ "name":"Cottens (FR)",
+ "canton":"Kanton Freiburg",
"domain":"cottens-fr.ch",
"mx":[
"cottensfr-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cottensfr-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cottens-fr.ch CNAME → selector1-cottensfr-ch01i._domainkey.admincottens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cottens-fr.ch CNAME → selector2-cottensfr-ch01i._domainkey.admincottens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "cottens-fr.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2194":{
"bfs":"2194",
"name":"Ferpicloz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"ferpicloz.ch",
"mx":[
"mail.ferpicloz.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch include:_spf.blk.ymc.swiss ip4:212.71.120.144/28 ip4:212.71.120.28 +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch include:_spf.blk.ymc.swiss ip4:212.71.120.144/28 ip4:212.71.120.28 +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ferpicloz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ferpicloz.ch"
+ ],
+ "guess":[
+ "ferpicloz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2196":{
"bfs":"2196",
- "name":"Freiburg im Üechtland",
- "canton":"",
- "domain":"ville-fribourg.ch",
+ "name":"Fribourg",
+ "canton":"Kanton Freiburg",
+ "domain":"ville-fr.ch",
"mx":[
"mail.ville-fr.ch"
],
- "spf":"v=spf1 include:spf.infomaniak.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 3303
+ "spf":"v=spf1 mx ip4:217.193.211.0/24 ip4:156.25.4.0/24 include:spf1.ne.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ville-fr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ville-fribourg.ch"
+ ],
+ "guess":[
+ "fribourg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2197":{
"bfs":"2197",
"name":"Givisiez",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"givisiez.ch",
"mx":[
"givisiez-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX givisiez-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "givisiez.ch"
+ ],
+ "guess":[
+ "givisiez.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2198":{
"bfs":"2198",
"name":"Granges-Paccot",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"granges-paccot.ch",
"mx":[
"grangespaccot-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grangespaccot-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "granges-paccot.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "granges-paccot.ch"
+ ],
+ "guess":[
+ "granges-paccot.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2206":{
"bfs":"2206",
"name":"Marly",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"marly.ch",
"mx":[
"marly-ch-1.fortimailcloud.com",
@@ -13141,125 +44465,546 @@
],
"spf":"v=spf1 include:_spf.fortimailcloud.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.fortimailcloud.com -all v=spf1 ip4:66.35.19.192/26 ip4:204.101.161.204 ip4:154.52.2.128/27 ip4:154.52.2.224/27 ip4:154.52.3.128/27 ip4:154.52.14.128/27 ip4:154.52.29.128/27 ip4:154.52.16.128/27 ip4:154.52.13.0/25 ip4:209.52.38.228 ip4:154.52.20.191 ip4:154.52.20.193 ip4:154.52.22.128/27 ip4:154.52.23.160/27 ip4:23.249.57.128/27 ip4:38.21.198.128/27 ip4:38.21.201.128/27 ip4:212.119.11.128/27 ip4:38.150.20.128/27 ip4:209.40.107.0/24 ip4:154.52.23.224/27 ip4:154.52.3.192/27 ip4:69.167.119.141 ip4:69.167.119.142 ip4:148.230.56.0/24 ip4:148.230.57.0/24 ip4:38.21.198.192/27 ip4:159.48.178.0/24 ip4:159.48.185.0/24 ip4:159.48.188.0/24 -all",
- "mx_asns":[
- 40934
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "marly.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "marly.ch"
+ ],
+ "guess":[
+ "marly.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2208":{
"bfs":"2208",
"name":"Matran",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"matran.ch",
"mx":[
"matran-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net include:icarus2.ch-dns.net ip4:80.74.159.66 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net include:icarus2.ch-dns.net ip4:80.74.159.66 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX matran-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "matran.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "matran.ch"
+ ],
+ "guess":[
+ "matran.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2211":{
"bfs":"2211",
- "name":"Neyruz",
- "canton":"",
+ "name":"Neyruz (FR)",
+ "canton":"Kanton Freiburg",
"domain":"neyruz.ch",
"mx":[
"neyruz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com ip4:62.202.1.53 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com ip4:62.202.1.53 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neyruz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neyruz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neyruz.ch"
+ ],
+ "guess":[
+ "neyruz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2216":{
"bfs":"2216",
"name":"Pierrafortscha",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"pierrafortscha.ch",
"mx":[
"pierrafortscha-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pierrafortscha-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "pierrafortscha.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pierrafortscha.ch"
+ ],
+ "guess":[
+ "pierrafortscha.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2220":{
"bfs":"2220",
"name":"Le Mouret",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"le-mouret.ch",
"mx":[
"lemouret-ch0e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:83.222.141.163 ip4:83.173.228.17 +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:83.222.141.163 ip4:83.173.228.17 +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lemouret-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.le-mouret.ch CNAME → selector1-lemouret-ch0e._domainkey.gdelemouret.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.le-mouret.ch CNAME → selector2-lemouret-ch0e._domainkey.gdelemouret.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "le-mouret.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "le-mouret.ch"
+ ],
+ "guess":[
+ "le-mouret.ch",
+ "lemouret.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2226":{
"bfs":"2226",
"name":"Treyvaux",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"treyvaux.ch",
"mx":[
"mps.telecomservices.ch"
],
"spf":"v=spf1 a:mail.treyvaux.ch a:mps.telecomservices.ch ~all",
"provider":"independent",
- "mx_asns":[
- 43800
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.treyvaux.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "treyvaux.ch"
+ ],
+ "guess":[
+ "treyvaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2228":{
"bfs":"2228",
"name":"Villars-sur-Glâne",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"villars-sur-glane.ch",
"mx":[
"villarssurglane-ch01ii.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:mail.villars-sur-glane.ch a:mps.telecomservices.ch a:smtpzh.witecom.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:mail.villars-sur-glane.ch a:mps.telecomservices.ch a:smtpzh.witecom.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villarssurglane-ch01ii.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.villars-sur-glane.ch CNAME → selector1-villarssurglane-ch01ii._domainkey.adminvillarssurglane.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.villars-sur-glane.ch CNAME → selector2-villarssurglane-ch01ii._domainkey.adminvillarssurglane.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "villars-sur-glane.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "villars-sur-glane.ch"
+ ],
+ "guess":[
+ "villars-sur-glane.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2230":{
"bfs":"2230",
"name":"Villarsel-sur-Marly",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"villarsel-sur-marly.ch",
"mx":[
"mx01.senselan.ch",
@@ -13268,188 +45013,790 @@
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 31736
+ "category":"swiss-based",
+ "classification_confidence":60.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "le-mouret.ch",
+ "sochs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "villarsel-sur-marly.ch"
+ ],
+ "guess":[
+ "villarsel-sur-marly.ch",
+ "villarselsurmarly.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2233":{
"bfs":"2233",
- "name":"Hauterive",
- "canton":"",
+ "name":"Hauterive (FR)",
+ "canton":"Kanton Freiburg",
"domain":"hauterivefr.ch",
"mx":[
"hauterivefr-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hauterivefr-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hauterivefr.ch CNAME → selector1-hauterivefr-ch._domainkey.communehauterive.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hauterivefr.ch CNAME → selector2-hauterivefr-ch._domainkey.communehauterive.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hauterivefr.ch",
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hauterivefr.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2234":{
"bfs":"2234",
"name":"La Brillaz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"labrillaz.ch",
"mx":[
"cleanmail.safecenter.ch"
],
"spf":"v=spf1 ip4:195.186.136.1/24 include:spf.protection.outlook.com include:spf.infomaniak.ch a:cleanmail.safecenter.ch ip4:83.222.130.150 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.186.136.1/24 include:spf.protection.outlook.com include:spf.infomaniak.ch a:cleanmail.safecenter.ch ip4:83.222.130.150 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "gateway":"cleanmail",
- "mx_asns":[
- 31736
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"cleanmail",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "labrillaz.ch"
+ ],
+ "guess":[
+ "labrillaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2235":{
"bfs":"2235",
"name":"La Sonnaz",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"lasonnaz.ch",
"mx":[
"lasonnaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lasonnaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lasonnaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lasonnaz.ch"
+ ],
+ "guess":[
+ "lasonnaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2236":{
"bfs":"2236",
"name":"Gibloux",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"commune-gibloux.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_cname":"webgate.xpertcloud.ch",
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "commune-gibloux.ch",
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "commune-gibloux.ch"
+ ],
+ "guess":[
+ "commune-de-gibloux.ch",
+ "gibloux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2237":{
"bfs":"2237",
"name":"Prez",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"prez.ch",
"mx":[
"prez-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.159.65 ip4:213.180.180.30 +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.159.65 ip4:213.180.180.30 +mx +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX prez-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch",
+ "prez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "prez.ch"
+ ],
+ "guess":[
+ "prez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2238":{
"bfs":"2238",
- "name":"Bois-d’Amont",
- "canton":"",
+ "name":"Bois-d'Amont",
+ "canton":"Kanton Freiburg",
"domain":"bois-damont.ch",
"mx":[
"boisdamont-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spfcloud.letsignit.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spfcloud.letsignit.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:spf-us.letsignit.com include:spf-ca.letsignit.com ip4:40.66.63.89/32 ip4:40.66.63.90/32 ip4:40.66.63.91/32 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:52.226.140.66 ip4:52.185.66.245 ip4:13.86.124.154 ip4:40.90.242.172 ip4:104.45.169.33 ~all v=spf1 ip4:40.80.240.101/32 ip4:52.155.24.145 ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boisdamont-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bois-damont.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bois-damont.ch"
+ ],
+ "guess":[
+ "bois-damont.ch",
+ "boisdamont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2239":{
"bfs":"2239",
"name":"Grolley-Ponthaux",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"grolley-ponthaux.ch",
"mx":[
"grolleyponthaux-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grolleyponthaux-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.grolley-ponthaux.ch CNAME → selector1-grolleyponthaux-ch01i._domainkey.communedegrolley.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.grolley-ponthaux.ch CNAME → selector2-grolleyponthaux-ch01i._domainkey.communedegrolley.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grolley-ponthaux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grolley-ponthaux.ch"
+ ],
+ "guess":[
+ "grolley-ponthaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2250":{
"bfs":"2250",
- "name":"Gurwolf",
- "canton":"",
- "domain":"courgevaux-gurwolf.ch",
+ "name":"Courgevaux",
+ "canton":"Kanton Freiburg",
+ "domain":"courgevaux.ch",
"mx":[
- "mail.courgevaux-gurwolf.ch"
+ "courgevaux-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
+ "spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX courgevaux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.courgevaux.ch CNAME → selector1-courgevaux-ch._domainkey.courgevauxfr.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.courgevaux.ch CNAME → selector2-courgevaux-ch._domainkey.courgevauxfr.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[
+ "courgevaux.ch"
+ ],
+ "wikidata":[
+ "courgevaux-gurwolf.ch"
+ ],
+ "guess":[
+ "courgevaux.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2254":{
"bfs":"2254",
"name":"Courtepin",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"courtepin.ch",
"mx":[
"courtepin-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:s064.cyon.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:s064.cyon.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX courtepin-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "courtepin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "courtepin.ch"
+ ],
+ "guess":[
+ "courtepin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2257":{
"bfs":"2257",
- "name":"Cressier",
- "canton":"",
+ "name":"Cressier (FR)",
+ "canton":"Kanton Freiburg",
"domain":"cressier.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "cressier.ch",
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cressier.ch"
+ ],
+ "guess":[
+ "cressier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2258":{
"bfs":"2258",
@@ -13461,13 +45808,75 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fraeschels-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fraeschels.ch"
+ ],
+ "guess":[
+ "fraeschels.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2261":{
"bfs":"2261",
@@ -13479,50 +45888,212 @@
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf.sesamnet.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf.sesamnet.ch -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:83.222.130.50 ip4:185.64.116.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX greng-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.greng.ch CNAME → selector1-greng-ch._domainkey.gemeindegreng.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.greng.ch CNAME → selector2-greng-ch._domainkey.gemeindegreng.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "greng.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "greng.ch"
+ ],
+ "guess":[
+ "greng.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2262":{
"bfs":"2262",
"name":"Gurmels",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"gurmels.ch",
"mx":[
"gurmels-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gurmels-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gurmels.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gurmels.ch"
+ ],
+ "guess":[
+ "gurmels.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2265":{
"bfs":"2265",
"name":"Kerzers",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"kerzers.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx ip4:77.59.194.34 ip4:194.126.200.0/24 ip4:149.126.0.0/21 include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:77.59.194.34 ip4:194.126.200.0/24 ip4:149.126.0.0/21 include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kerzers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kerzers.ch"
+ ],
+ "guess":[
+ "kerzers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2266":{
"bfs":"2266",
@@ -13534,113 +46105,428 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kleinboesingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kleinboesingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kleinboesingen.ch"
+ ],
+ "guess":[
+ "kleinboesingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2271":{
"bfs":"2271",
- "name":"Merlach",
- "canton":"",
- "domain":"merlach.ch",
+ "name":"Meyriez",
+ "canton":"Kanton Freiburg",
+ "domain":"meyriez.ch",
"mx":[
- "mail.merlach.ch",
- "mail2.merlach.ch"
+ "mx1.rufcloud.ch",
+ "mx2.rufcloud.ch"
],
- "spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch -all",
- "provider":"swiss-isp",
- "mx_cnames":{
- "mail.merlach.ch":"mx1.rufcloud.ch",
- "mail2.merlach.ch":"mx2.rufcloud.ch"
+ "spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meyriez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "merlach.ch"
+ ],
+ "guess":[
+ "meyriez.ch"
+ ]
},
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "resolve_flags":[
+ "sources_disagree",
+ "website_mismatch"
+ ]
},
"2272":{
"bfs":"2272",
"name":"Misery-Courtion",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"misery-courtion.ch",
"mx":[
"miserycourtion-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX miserycourtion-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "misery-courtion.ch"
+ ],
+ "redirect":[
+ "miserycourtion.ch"
+ ],
+ "wikidata":[
+ "misery-courtion.ch"
+ ],
+ "guess":[
+ "misery-courtion.ch",
+ "miserycourtion.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2274":{
"bfs":"2274",
"name":"Muntelier",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"muntelier.ch",
"mx":[
"muntelier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muntelier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muntelier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muntelier.ch"
+ ],
+ "guess":[
+ "muntelier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2275":{
"bfs":"2275",
"name":"Murten",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"murten-morat.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "murten-morat.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "murten-morat.ch"
+ ],
+ "guess":[
+ "murten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2276":{
"bfs":"2276",
"name":"Ried bei Kerzers",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"ried.ch",
"mx":[
"ried-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ried-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ried.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ried.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2284":{
"bfs":"2284",
"name":"Mont-Vully",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"mont-vully.ch",
"mx":[
"montvully-ch01b.mail.protection.outlook.com",
@@ -13649,18 +46535,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.149.192 +mx +a ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.149.192 +mx +a ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX montvully-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mont-vully.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mont-vully.ch"
+ ],
+ "guess":[
+ "mont-vully.ch",
+ "montvully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2292":{
"bfs":"2292",
"name":"Brünisried",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"bruenisried.ch",
"mx":[
"mx01.senselan.ch",
@@ -13669,141 +46614,499 @@
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 31736
- ]
+ "category":"swiss-based",
+ "classification_confidence":62.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bruenisried.ch"
+ ],
+ "guess":[
+ "bruenisried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2293":{
"bfs":"2293",
"name":"Düdingen",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"duedingen.ch",
"mx":[
"duedingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX duedingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "duedingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duedingen.ch"
+ ],
+ "guess":[
+ "duedingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2294":{
"bfs":"2294",
"name":"Giffers",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"giffers.ch",
"mx":[
"giffers-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX giffers-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "giffers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "giffers.ch"
+ ],
+ "guess":[
+ "giffers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2295":{
"bfs":"2295",
"name":"Bösingen",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"boesingen.ch",
"mx":[
"boesingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:mx.dvbern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:mx.dvbern.ch -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boesingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boesingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boesingen.ch"
+ ],
+ "guess":[
+ "boesingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2296":{
"bfs":"2296",
"name":"Heitenried",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"heitenried.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "heitenried.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "heitenried.ch"
+ ],
+ "guess":[
+ "heitenried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2299":{
"bfs":"2299",
"name":"Plaffeien",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"plaffeien.ch",
"mx":[
"plaffeien-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX plaffeien-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "plaffeien.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "plaffeien.ch"
+ ],
+ "guess":[
+ "plaffeien.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2300":{
"bfs":"2300",
"name":"Plasselb",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"plasselb.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "plasselb.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "plasselb.ch"
+ ],
+ "guess":[
+ "plasselb.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2301":{
"bfs":"2301",
"name":"Rechthalten",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"rechthalten.ch",
"mx":[
"rechthalten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rechthalten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rechthalten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rechthalten.ch"
+ ],
+ "guess":[
+ "rechthalten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2303":{
"bfs":"2303",
- "name":"St. Silvester FR",
+ "name":"St. Silvester",
"canton":"Kanton Freiburg",
"domain":"stsilvester.ch",
"mx":[
@@ -13811,215 +47114,799 @@
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stsilvester-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stsilvester.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stsilvester.ch"
+ ],
+ "guess":[
+ "stsilvester.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2304":{
"bfs":"2304",
"name":"St. Ursen",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"stursen.ch",
"mx":[
"stursen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stursen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stursen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stursen.ch"
+ ],
+ "guess":[
+ "stursen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2305":{
"bfs":"2305",
- "name":"Schmitten",
- "canton":"",
+ "name":"Schmitten (FR)",
+ "canton":"Kanton Freiburg",
"domain":"schmitten.ch",
"mx":[
"schmitten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schmitten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schmitten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schmitten.ch"
+ ],
+ "guess":[
+ "schmitten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2306":{
"bfs":"2306",
"name":"Tafers",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"tafers.ch",
"mx":[
"tafers-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tafers-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tafers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tafers.ch"
+ ],
+ "guess":[
+ "tafers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2307":{
"bfs":"2307",
"name":"Tentlingen",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"tentlingen.ch",
"mx":[
"tentlingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tentlingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tentlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tentlingen.ch"
+ ],
+ "guess":[
+ "tentlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2308":{
"bfs":"2308",
"name":"Ueberstorf",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"ueberstorf.ch",
"mx":[
"ueberstorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ueberstorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ueberstorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ueberstorf.ch"
+ ],
+ "guess":[
+ "ueberstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2309":{
"bfs":"2309",
"name":"Wünnewil-Flamatt",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"wuennewil-flamatt.ch",
"mx":[
"wuennewilflamatt-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wuennewilflamatt-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wuennewil-flamatt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wuennewil-flamatt.ch"
+ ],
+ "guess":[
+ "wuennewil-flamatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2321":{
"bfs":"2321",
"name":"Attalens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"attalens.ch",
"mx":[
"attalens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX attalens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "attalens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "attalens.ch"
+ ],
+ "guess":[
+ "attalens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2323":{
"bfs":"2323",
"name":"Bossonnens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"bossonnens.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bossonnens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bossonnens.ch"
+ ],
+ "guess":[
+ "bossonnens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2325":{
"bfs":"2325",
"name":"Châtel-Saint-Denis",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"chatel-st-denis.ch",
"mx":[
"chatelstdenis-ch01ec.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf1.ne.ch ip4:81.63.156.66 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf1.ne.ch ip4:81.63.156.66 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.chatel-st-denis.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chatelstdenis-ch01ec.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chatel-st-denis.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2328":{
"bfs":"2328",
- "name":"Granges",
- "canton":"",
+ "name":"Granges (Veveyse)",
+ "canton":"Kanton Freiburg",
"domain":"granges-veveyse.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.81/32 ip4:193.33.30.87/32 ip4:193.33.30.91/32 ip4:193.33.30.92/32 ip4:193.33.30.124/32 ip4:193.33.30.125/32 ip4:185.122.238.197/32 ip4:185.122.238.201/32 ip4:185.122.238.202/32 include:seppmail.evok.ch -all v=spf1 ip4:193.33.30.89/32 ip4:185.122.238.200/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "granges-veveyse.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "granges-veveyse.ch"
+ ],
+ "guess":[
+ "granges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2333":{
"bfs":"2333",
"name":"Remaufens",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"remaufens.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 include:evok.ch include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:evok.ch include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "remaufens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "remaufens.ch"
+ ],
+ "guess":[
+ "remaufens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2335":{
"bfs":"2335",
- "name":"Saint-Martin FR",
+ "name":"Saint-Martin (FR)",
"canton":"Kanton Freiburg",
"domain":"saint-martin-fr.ch",
"mx":[
@@ -14027,31 +47914,119 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX saintmartinfr-ch01c1b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "croix-rouge-fr.ch",
+ "saint-martin-fr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saint-martin-fr.ch"
+ ],
+ "guess":[
+ "saint-martin.ch",
+ "saintmartin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2336":{
"bfs":"2336",
"name":"Semsales",
- "canton":"",
+ "canton":"Kanton Freiburg",
"domain":"semsales.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 ip4:80.74.159.118/32 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 ip4:80.74.159.118/32 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "semsales.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "semsales.ch"
+ ],
+ "guess":[
+ "semsales.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2337":{
"bfs":"2337",
@@ -14061,110 +48036,513 @@
"mx":[
"leflon-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 +a +mx -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 +a +mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 ip4:193.108.54.58 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 +a +mx -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leflon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leflon.ch"
+ ],
+ "guess":[
+ "leflon.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2338":{
"bfs":"2338",
"name":"La Verrerie",
"canton":"Kanton Freiburg",
- "domain":"laverrerie.ch",
+ "domain":"la-verrerie.ch",
"mx":[
- "laverrerie-ch.mail.protection.outlook.com"
+ "laverrerie-ch0e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laverrerie-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "la-verrerie.ch"
+ ],
+ "redirect":[
+ "la-verrerie.ch"
+ ],
+ "wikidata":[
+ "laverrerie.ch"
+ ],
+ "guess":[
+ "la-verrerie.ch",
+ "laverrerie.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2401":{
"bfs":"2401",
"name":"Egerkingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"egerkingen.ch",
"mx":[
"egerkingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:46.14.41.126 include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:46.14.41.126 include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX egerkingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.egerkingen.ch CNAME → selector1-egerkingen-ch._domainkey.gemeindeegerkingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.egerkingen.ch CNAME → selector2-egerkingen-ch._domainkey.gemeindeegerkingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "egerkingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "egerkingen.ch"
+ ],
+ "guess":[
+ "egerkingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2402":{
"bfs":"2402",
"name":"Härkingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"haerkingen.ch",
"mx":[
"haerkingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX haerkingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "haerkingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haerkingen.ch"
+ ],
+ "guess":[
+ "haerkingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2403":{
"bfs":"2403",
"name":"Kestenholz",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"kestenholz.ch",
"mx":[
"kestenholz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kestenholz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kestenholz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kestenholz.ch"
+ ],
+ "guess":[
+ "kestenholz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2404":{
"bfs":"2404",
"name":"Neuendorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"neuendorf.ch",
"mx":[
"neuendorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.it64.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.it64.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:176.10.107.100 ip4:176.10.107.102 ip4:46.140.44.30 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX neuendorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neuendorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neuendorf.ch"
+ ],
+ "guess":[
+ "neuendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2405":{
"bfs":"2405",
"name":"Niederbuchsiten",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"niederbuchsiten.ch",
"mx":[
"mail.format-ag.ch",
@@ -14174,36 +48552,122 @@
],
"spf":"v=spf1 a mx include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederbuchsiten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederbuchsiten.ch"
+ ],
+ "guess":[
+ "niederbuchsiten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2406":{
"bfs":"2406",
"name":"Oberbuchsiten",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"oberbuchsiten.ch",
"mx":[
"oberbuchsiten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberbuchsiten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberbuchsiten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberbuchsiten.ch"
+ ],
+ "guess":[
+ "oberbuchsiten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2407":{
"bfs":"2407",
"name":"Oensingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"oensingen.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -14213,39 +48677,123 @@
],
"spf":"v=spf1 mx a include:spf.protection.outlook.com include:spf.hornetsecurity.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:spf.protection.outlook.com include:spf.hornetsecurity.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "oensingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oensingen.ch"
+ ],
+ "guess":[
+ "oensingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2408":{
"bfs":"2408",
"name":"Wolfwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"wolfwil.ch",
"mx":[
"wolfwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wolfwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wolfwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wolfwil.ch"
+ ],
+ "guess":[
+ "wolfwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2421":{
"bfs":"2421",
"name":"Aedermannsdorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"aedermannsdorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -14255,18 +48803,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aedermannsdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aedermannsdorf.ch"
+ ],
+ "guess":[
+ "aedermannsdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2422":{
"bfs":"2422",
"name":"Balsthal",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"balsthal.ch",
"mx":[
"mail.format-ag.ch",
@@ -14274,54 +48844,204 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "balsthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "balsthal.ch"
+ ],
+ "guess":[
+ "balsthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2424":{
"bfs":"2424",
"name":"Herbetswil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"herbetswil.ch",
"mx":[
"herbetswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX herbetswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.herbetswil.ch CNAME → selector1-herbetswil-ch._domainkey.herbetswil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.herbetswil.ch CNAME → selector2-herbetswil-ch._domainkey.herbetswil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "herbetswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herbetswil.ch"
+ ],
+ "guess":[
+ "herbetswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2425":{
"bfs":"2425",
- "name":"Holderbank",
- "canton":"",
+ "name":"Holderbank (SO)",
+ "canton":"Kanton Solothurn",
"domain":"holderbank-so.ch",
"mx":[
"holderbankso-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX holderbankso-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "holderbank-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "holderbank-so.ch"
+ ],
+ "guess":[
+ "holderbank.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2426":{
"bfs":"2426",
"name":"Laupersdorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"laupersdorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -14331,72 +49051,300 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "laupersdorf.ch"
+ ],
+ "guess":[
+ "laupersdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2427":{
"bfs":"2427",
"name":"Matzendorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"matzendorf.ch",
"mx":[
"matzendorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX matzendorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "matzendorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "matzendorf.ch"
+ ],
+ "guess":[
+ "matzendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2428":{
"bfs":"2428",
"name":"Mümliswil-Ramiswil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"muemliswil-ramiswil.ch",
"mx":[
"muemliswilramiswil-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muemliswilramiswil-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.muemliswil-ramiswil.ch CNAME → selector1-muemliswilramiswil-ch02e._domainkey.gemeindemuemliswil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.muemliswil-ramiswil.ch CNAME → selector2-muemliswilramiswil-ch02e._domainkey.gemeindemuemliswil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muemliswil-ramiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muemliswil-ramiswil.ch"
+ ],
+ "guess":[
+ "muemliswil-ramiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2430":{
"bfs":"2430",
"name":"Welschenrohr-Gänsbrunnen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"welschenrohr.ch",
"mx":[
"welschenrohr-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.221.233.0/23 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.221.233.0/23 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX welschenrohr-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "welschenrohr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "welschenrohr.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2445":{
"bfs":"2445",
"name":"Biezwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"biezwil.ch",
"mx":[
"mx1.jimdo.com",
@@ -14404,69 +49352,236 @@
],
"spf":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 ip4:108.166.43.0/24 ip4:146.20.86.8 ip4:146.20.161.0/25 ip4:161.47.34.7 ip4:173.203.187.0/25 ip4:184.106.54.0/25 ip4:204.232.172.40 ~all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "mx_asns":[
- 19994,
- 27357
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.emailsrvr.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "biezwil.ch"
+ ],
+ "guess":[
+ "biezwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2455":{
"bfs":"2455",
"name":"Lüterkofen-Ichertswil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"lueterkofen-ichertswil.ch",
"mx":[
"lueterkofenichertswil-ch02i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lueterkofenichertswil-ch02i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lueterkofen-ichertswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lueterkofen-ichertswil.ch"
+ ],
+ "guess":[
+ "lueterkofen-ichertswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2457":{
"bfs":"2457",
"name":"Messen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"messen.ch",
"mx":[
"messen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:mail.tcnet.ch ip4:195.48.58.75 ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:_spf.talus.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mail.tcnet.ch ip4:195.48.58.75 ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:_spf.talus.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX messen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.messen.ch CNAME → selector1-messen-ch._domainkey.messen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.messen.ch CNAME → selector2-messen-ch._domainkey.messen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "messen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "messen.ch"
+ ],
+ "guess":[
+ "messen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2461":{
"bfs":"2461",
"name":"Schnottwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"schnottwil.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "schnottwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2463":{
"bfs":"2463",
@@ -14478,86 +49593,302 @@
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "unterramsern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unterramsern.ch"
+ ],
+ "guess":[
+ "unterramsern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2464":{
"bfs":"2464",
"name":"Lüsslingen-Nennigkofen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"luesslingen-nennigkofen.ch",
"mx":[
"luesslingennennigkofen-ch02i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX luesslingennennigkofen-ch02i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "luesslingen-nennigkofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luesslingen-nennigkofen.ch"
+ ],
+ "guess":[
+ "luesslingen-nennigkofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2465":{
"bfs":"2465",
"name":"Buchegg",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"buchegg-so.ch",
"mx":[
"bucheggso-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bucheggso-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchegg-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchegg-so.ch"
+ ],
+ "guess":[
+ "buchegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2471":{
"bfs":"2471",
"name":"Bättwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"baettwil.ch",
"mx":[
"mail.baettwil.ch"
],
"spf":"v=spf1 a mx a:msscript1.webland.ch ~all",
"provider":"independent",
- "mx_asns":[
- 25563
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.baettwil.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "baettwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baettwil.ch"
+ ],
+ "guess":[
+ "baettwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2472":{
"bfs":"2472",
- "name":"Büren",
- "canton":"",
+ "name":"Büren (SO)",
+ "canton":"Kanton Solothurn",
"domain":"bueren-so.ch",
"mx":[
"buerenso-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:tiberius2.sui-inter.net a:tiberius.sui-inter.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:tiberius2.sui-inter.net a:tiberius.sui-inter.net include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buerenso-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bueren-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bueren-so.ch"
+ ],
+ "guess":[
+ "bren.ch",
+ "bueren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2473":{
"bfs":"2473",
"name":"Dornach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"dornach.ch",
"mx":[
"mail.format-ag.ch",
@@ -14567,304 +49898,1223 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dornach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dornach.ch"
+ ],
+ "guess":[
+ "dornach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2474":{
"bfs":"2474",
"name":"Gempen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"gempen.ch",
"mx":[
"gempen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gempen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gempen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gempen.ch"
+ ],
+ "guess":[
+ "gempen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2475":{
"bfs":"2475",
"name":"Hochwald",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"hochwald.ch",
"mx":[
"hochwald-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud a:genf.alixon.ch a:goldau.alixon.ch include:rzmail.hi-ag.ch include:spf.iway.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud a:genf.alixon.ch a:goldau.alixon.ch include:rzmail.hi-ag.ch include:spf.iway.ch include:spf.protection.outlook.com ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hochwald-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hochwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hochwald.ch"
+ ],
+ "guess":[
+ "hochwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2476":{
"bfs":"2476",
"name":"Hofstetten-Flüh",
- "canton":"",
- "domain":"hofstettenflueh.ch",
+ "canton":"Kanton Solothurn",
+ "domain":"hofstetten-flueh.ch",
"mx":[
- "mail.hofstettenflueh.ch"
+ "mail.hofstetten-flueh.ch",
+ "mail2.hofstetten-flueh.ch"
],
- "spf":"",
+ "spf":"v=spf1 mx include:_spf.i-web.ch -all",
"provider":"independent",
- "mx_asns":[
- 1836
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hofstetten-flueh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hofstettenflueh.ch"
+ ],
+ "guess":[
+ "hofstetten-flueh.ch",
+ "hofstettenflueh.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"2477":{
"bfs":"2477",
"name":"Metzerlen-Mariastein",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"metzerlen.ch",
"mx":[
"metzerlen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud include:_spf.blk.ymc.swiss -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud include:_spf.blk.ymc.swiss -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX metzerlen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "metzerlen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "metzerlen.ch"
+ ],
+ "guess":[
+ "metzerlen-mariastein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2478":{
"bfs":"2478",
"name":"Nuglar-St. Pantaleon",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"nuglar.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 include:spf1.egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 include:spf1.egeko.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nuglar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nuglar.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2479":{
"bfs":"2479",
"name":"Rodersdorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"rodersdorf.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.blk.ymc.swiss include:_spf.kreativmedia.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.blk.ymc.swiss include:_spf.kreativmedia.ch include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rodersdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rodersdorf.ch"
+ ],
+ "guess":[
+ "rodersdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2480":{
"bfs":"2480",
"name":"Seewen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"seewen.ch",
"mx":[
"seewen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mta1.asp.ruf.ch a:mta2.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail.asp.ruf.ch a:mta1.asp.ruf.ch a:mta2.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX seewen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seewen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seewen.ch"
+ ],
+ "guess":[
+ "seewen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2481":{
"bfs":"2481",
"name":"Witterswil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"witterswil.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "witterswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "witterswil.ch"
+ ],
+ "guess":[
+ "witterswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2491":{
"bfs":"2491",
"name":"Hauenstein-Ifenthal",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"hauenstein-ifenthal.ch",
"mx":[
"hauensteinifenthal-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hauensteinifenthal-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hauenstein-ifenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hauenstein-ifenthal.ch"
+ ],
+ "guess":[
+ "hauenstein-ifenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2492":{
"bfs":"2492",
"name":"Kienberg",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"kienberg.ch",
"mx":[
"mail.kienberg.ch"
],
"spf":"v=spf1 include:spf.mail.webland.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mail.webland.ch -all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all",
- "mx_asns":[
- 25563
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.kienberg.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kienberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kienberg.ch"
+ ],
+ "guess":[
+ "kienberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2493":{
"bfs":"2493",
"name":"Lostorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"lostorf.ch",
"mx":[
"lostorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lostorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.lostorf.ch CNAME → selector1-lostorf-ch._domainkey.einwohnergemeindelostorf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.lostorf.ch CNAME → selector2-lostorf-ch._domainkey.einwohnergemeindelostorf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lostorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lostorf.ch"
+ ],
+ "guess":[
+ "lostorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2495":{
"bfs":"2495",
"name":"Niedergösgen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"niedergoesgen.ch",
"mx":[
"niedergoesgen-ch.mail.eo.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"exchange.mtfcloud.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.niedergoesgen.ch CNAME → selector1-niedergoesgen-ch._domainkey.niedergoesgench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.niedergoesgen.ch CNAME → selector2-niedergoesgen-ch._domainkey.niedergoesgench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niedergoesgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niedergoesgen.ch"
+ ],
+ "guess":[
+ "niedergoesgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2497":{
"bfs":"2497",
"name":"Obergösgen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"obergoesgen.ch",
"mx":[
"obergoesgen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX obergoesgen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "obergoesgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "obergoesgen.ch"
+ ],
+ "guess":[
+ "obergoesgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2499":{
"bfs":"2499",
"name":"Stüsslingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"stuesslingen.ch",
"mx":[
"stuesslingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stuesslingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stuesslingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stuesslingen.ch"
+ ],
+ "guess":[
+ "stuesslingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2500":{
"bfs":"2500",
"name":"Trimbach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"trimbach.ch",
"mx":[
"trimbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX trimbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.trimbach.ch CNAME → selector1-trimbach-ch._domainkey.gemeindetrimbach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.trimbach.ch CNAME → selector2-trimbach-ch._domainkey.gemeindetrimbach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trimbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trimbach.ch"
+ ],
+ "guess":[
+ "trimbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2501":{
"bfs":"2501",
"name":"Winznau",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"winznau.ch",
"mx":[
"winznau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:mail.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:mail.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX winznau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.winznau.ch CNAME → selector1-winznau-ch._domainkey.winznau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.winznau.ch CNAME → selector2-winznau-ch._domainkey.winznau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "winznau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "winznau.ch"
+ ],
+ "guess":[
+ "winznau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2502":{
"bfs":"2502",
- "name":"Wisen",
+ "name":"Wisen (SO)",
"canton":"Kanton Solothurn",
"domain":"wisen.ch",
"mx":[
@@ -14872,18 +51122,27 @@
],
"spf":"v=spf1 +a +mx +a:node7.nhost.ch include:spf.lanpool.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 +a +mx +a:node7.nhost.ch include:spf.lanpool.ch include:_spf.i-web.ch -all v=spf1 ip4:5.57.206.42 ip4:93.174.184.0/21 ip4:213.193.111.66 ip4:213.193.98.98 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 47506
- ],
- "autodiscover":{
- "autodiscover_srv":"node7.mxconfig.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "wisen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wisen.ch"
+ ],
+ "guess":[
+ "wisen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2503":{
"bfs":"2503",
- "name":"Erlinsbach",
- "canton":"",
+ "name":"Erlinsbach (SO)",
+ "canton":"Kanton Solothurn",
"domain":"erlinsbach-so.ch",
"mx":[
"erlinsbach-so.ch.1.0001.arsmtp.com",
@@ -14891,37 +51150,110 @@
],
"spf":"v=spf1 include:edgepilot.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:edgepilot.com ~all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com ~all v=spf1 ip4:204.232.250.0/24 ip4:5.152.185.0/24 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:72.3.212.195 ip4:5.152.188.0/24 ip4:174.37.170.192/27 ~all v=spf1 ip4:75.126.84.128/26 ip4:67.228.8.0/25 ip4:67.227.149.19 ip4:64.56.208.32/27 ip4:67.228.91.90 ip4:67.228.158.174 ip4:174.36.44.116/30 ip4:50.201.66.168 ip4:63.71.8.0/21 ip4:199.30.232.0/21 ip4:74.203.184.0/23 ip4:207.195.176.0/20 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 59519,
- 203160
- ],
- "autodiscover":{
- "autodiscover_cname":"adr.exghost.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "erlinsbach-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "erlinsbach-so.ch"
+ ],
+ "guess":[
+ "erlinsbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2511":{
"bfs":"2511",
- "name":"Aeschi",
- "canton":"",
+ "name":"Aeschi (SO)",
+ "canton":"Kanton Solothurn",
"domain":"aeschi-so.ch",
"mx":[
"aeschiso-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aeschiso-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aeschi-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aeschi-so.ch"
+ ],
+ "guess":[
+ "aeschi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2513":{
"bfs":"2513",
"name":"Biberist",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"biberist.ch",
"mx":[
"mail.format-ag.ch",
@@ -14931,13 +51263,41 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "biberist.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "biberist.ch"
+ ],
+ "guess":[
+ "biberist.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2514":{
"bfs":"2514",
@@ -14949,46 +51309,198 @@
],
"spf":"v=spf1 a mx ~all",
"provider":"independent",
- "mx_asns":[
- 24940
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "bolken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bolken.ch"
+ ],
+ "guess":[
+ "bolken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2516":{
"bfs":"2516",
"name":"Deitingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"deitingen.ch",
"mx":[
"deitingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:93.174.18.97 include:spf.hstex.comp-sys.net include:spf.nl2go.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:93.174.18.97 include:spf.hstex.comp-sys.net include:spf.nl2go.com include:spf.protection.outlook.com -all v=spf1 ip4:93.174.16.0/23 ip6:2a04:a2c0:2::/48 -all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"ex.hstex.comp-sys.net"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX deitingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "deitingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "deitingen.ch"
+ ],
+ "guess":[
+ "deitingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2517":{
"bfs":"2517",
"name":"Derendingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"derendingen.ch",
"mx":[
"derendingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:turbo-smtp.com include:_spf.talus.ch include:_spf.sui-inter.net ip4:199.187.173.138 ip4:185.227.39.122 ip4:212.60.62.49 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:turbo-smtp.com include:_spf.talus.ch include:_spf.sui-inter.net ip4:199.187.173.138 ip4:185.227.39.122 ip4:212.60.62.49 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a mx ip4:199.187.172.0/22 ip4:199.244.72.0/22 ip4:185.228.36.0/22 ip4:78.46.210.192/27 ip4:5.83.159.0/24 ip4:89.144.43.0/24 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX derendingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.derendingen.ch CNAME → selector1-derendingen-ch._domainkey.derendingench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.derendingen.ch CNAME → selector2-derendingen-ch._domainkey.derendingench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "derendingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "derendingen.ch"
+ ],
+ "guess":[
+ "derendingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2518":{
"bfs":"2518",
@@ -15000,32 +51512,124 @@
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "etziken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "etziken.ch"
+ ],
+ "guess":[
+ "etziken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2519":{
"bfs":"2519",
"name":"Gerlafingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"gerlafingen.ch",
"mx":[
"gerlafingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gerlafingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gerlafingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gerlafingen.ch"
+ ],
+ "guess":[
+ "gerlafingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2523":{
"bfs":"2523",
@@ -15037,84 +51641,310 @@
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "horriwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "horriwil.ch"
+ ],
+ "guess":[
+ "horriwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2524":{
"bfs":"2524",
"name":"Hüniken",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"hueniken.ch",
"mx":[
"elara.kreativmedia.ch"
],
"spf":"v=spf1 +mx +a include:_spf.mail.hostserv.eu include:_spf.kreativmedia.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 +mx +a include:_spf.mail.hostserv.eu include:_spf.kreativmedia.ch ~all v=spf1 a:mailhost.hostserv.eu a:mailhost.hosttech.eu include:_spf.v4.hosttech.eu include:_spf.v6.1.hosttech.eu include:_spf.v6.2.hosttech.eu ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:193.203.253.22 ip4:193.203.253.23 ip4:193.203.253.24 ip4:193.203.253.25 ip4:193.203.253.26 ip4:193.203.253.27 ip4:45.131.252.247 ip4:45.131.252.248 ip4:45.131.252.249 ip4:45.131.253.4 ip4:45.131.253.5 ip4:45.131.253.7 ~all v=spf1 ip6:2001:1680:101:83a::79 ip6:2001:1680:101:83a::8f ip6:2001:1680:101:83a::91 ip6:2001:1680:101:83a::95 ip6:2001:1680:101:83a::9d ip6:2001:1680:101:83a::d6 ~all v=spf1 ip6:2a11:8b80:1000:1::46 ip6:2a11:8b80:1000:1::47 ip6:2a11:8b80:1000:1::48 ip6:2a11:8b80:1000:1::49 ip6:2a11:8b80:1000:1::4a ip6:2a11:8b80:1000:1::4b ~all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hueniken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hueniken.ch"
+ ],
+ "guess":[
+ "hueniken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2525":{
"bfs":"2525",
"name":"Kriegstetten",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"kriegstetten.ch",
"mx":[
"kriegstetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kriegstetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kriegstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kriegstetten.ch"
+ ],
+ "guess":[
+ "kriegstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2526":{
"bfs":"2526",
"name":"Lohn-Ammannsegg",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"lohn-ammannsegg.ch",
"mx":[
"lohnammannsegg-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lohnammannsegg-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lohn-ammannsegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lohn-ammannsegg.ch"
+ ],
+ "guess":[
+ "lohn-ammannsegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2527":{
"bfs":"2527",
"name":"Luterbach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"luterbach.ch",
"mx":[
"luterbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX luterbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "luterbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luterbach.ch"
+ ],
+ "guess":[
+ "luterbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2528":{
"bfs":"2528",
@@ -15126,56 +51956,212 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX obergerlafingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "obergerlafingen.ch",
+ "tim-gatzky.de"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "obergerlafingen.ch"
+ ],
+ "guess":[
+ "obergerlafingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2530":{
"bfs":"2530",
"name":"Recherswil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"recherswil.ch",
"mx":[
"recherswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX recherswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "recherswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "recherswil.ch"
+ ],
+ "guess":[
+ "recherswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2532":{
"bfs":"2532",
"name":"Subingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"subingen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
- "spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud a:webcms.ruf.ch include:spf.cloudrexx.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud a:webcms.ruf.ch include:spf.cloudrexx.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:80.74.136.182 ip4:80.74.128.231 ip4:80.74.128.204 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch a:webcms.ruf.ch include:spf.cloudrexx.com -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "subingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "subingen.ch"
+ ],
+ "guess":[
+ "subingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2534":{
"bfs":"2534",
"name":"Zuchwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"zuchwil.ch",
"mx":[
"mail.format-ag.ch",
@@ -15185,33 +52171,126 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:146483490.spf03.hubspotemail.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:146483490.spf03.hubspotemail.net -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:3.93.157.0/24 ip4:3.210.190.0/24 ip4:18.208.124.128/25 ip4:54.174.52.0/24 ip4:54.174.57.0/24 ip4:54.174.59.0/24 ip4:54.174.60.0/23 ip4:54.174.63.0/24 ip4:108.179.144.0/20 ip4:139.180.17.0/24 ip4:141.193.184.32/27 ip4:141.193.184.64/26 ip4:141.193.184.128/25 ip4:141.193.185.32/27 ip4:141.193.185.64/26 ip4:141.193.185.128/25 ip4:143.244.80.0/20 ip4:158.247.16.0/20 ip4:216.139.64.0/19 -all",
- "mx_asns":[
- 202035
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "zuchwil.ch"
+ ],
+ "guess":[
+ "zuchwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2535":{
"bfs":"2535",
"name":"Drei Höfe",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"dreihoefe.ch",
"mx":[
"dreihoefe-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dreihoefe-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dreihoefe.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dreihoefe.ch"
+ ],
+ "guess":[
+ "dreihoefe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2541":{
"bfs":"2541",
"name":"Balm bei Günsberg",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"balm-balmberg.ch",
"mx":[
"mx03.solnet.ch",
@@ -15219,33 +52298,107 @@
],
"spf":"v=spf1 include:solnet.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:solnet.ch -all v=spf1 include:_spf.solnet.ch include:_spf-cust.solnet.ch include:spf.protection.outlook.com -all v=spf1 ip4:82.220.4.128/25 ip4:212.101.4.128/25 ip6:2001:1680:2::/64 -all v=spf1 ip4:82.220.17.64/27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 9044
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "balm-balmberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "balm-balmberg.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2542":{
"bfs":"2542",
"name":"Bellach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"bellach.ch",
"mx":[
"bellach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +a:mailsrv.dynabyte.ch +ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +a:mailsrv.dynabyte.ch +ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bellach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bellach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bellach.ch"
+ ],
+ "guess":[
+ "bellach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2543":{
"bfs":"2543",
"name":"Bettlach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"bettlach.ch",
"mx":[
"bettlach.ch.1.0001.arsmtp.com",
@@ -15253,86 +52406,353 @@
],
"spf":"v=spf1 include:exghost.com include:appriver.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:exghost.com include:appriver.com ~all v=spf1 ip4:204.232.236.0/23 ip4:204.232.250.0/24 ip4:207.97.230.0/24 ip4:5.152.185.0/24 ip4:50.56.144.0/24 ip4:72.32.253.64/26 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:92.52.89.64/26 ip4:72.3.212.195 ip4:198.37.147.129 include:stspg-customer.com ~all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com include:rnmk.com ~all v=spf1 ip4:23.253.182.103 ip4:23.253.183.145 ip4:23.253.183.146 ip4:23.253.183.147 ip4:23.253.183.148 ip4:23.253.183.150 ip4:166.78.68.221 ip4:167.89.46.159 ip4:167.89.64.9 ip4:167.89.65.0 ip4:167.89.65.53 ip4:167.89.65.100 ip4:167.89.74.233 ip4:167.89.75.33 ip4:167.89.75.126 ip4:167.89.75.136 ip4:167.89.75.164 ip4:192.237.159.42 ip4:192.237.159.43 ip4:159.112.242.162 ip4:159.135.228.10 ip4:198.244.56.107 ip4:198.244.56.108 ip4:198.244.56.109 ip4:198.244.56.111 ip4:198.244.56.112 ip4:198.244.56.113 ip4:198.244.56.114 ip4:198.244.56.115 ip4:204.220.181.105 ~all v=spf1 ip4:204.232.250.0/24 ip4:5.152.185.0/24 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:72.3.212.195 ip4:5.152.188.0/24 ip4:174.37.170.192/27 ~all v=spf1 ip4:75.126.84.128/26 ip4:67.228.8.0/25 ip4:67.227.149.19 ip4:64.56.208.32/27 ip4:67.228.91.90 ip4:67.228.158.174 ip4:174.36.44.116/30 ip4:50.201.66.168 ip4:63.71.8.0/21 ip4:199.30.232.0/21 ip4:74.203.184.0/23 ip4:207.195.176.0/20 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf-a.rnmk.com exists:%{i}.spf.rnmk.com -all v=spf1 ip4:129.148.164.0/25 ip4:129.148.215.0/25 ip4:129.149.6.0/25 ip4:129.149.38.0/25 ip4:138.1.170.0/24 ip4:147.154.32.0/25 ip4:147.154.63.0/24 ip4:147.154.126.0/24 ip4:147.154.191.0/24 ip4:162.88.24.0/23 ip4:192.29.72.0/25 ip4:192.29.88.0/25 ip4:192.29.103.128/25 ip4:192.29.134.0/25 ip4:155.248.148.0/25 ip4:131.186.12.0/25 ip4:139.177.108.0/25 ip4:162.88.4.0/23 ip4:162.88.8.0/24 ip4:162.88.36.0/24 ip4:208.76.62.0/23 ip4:216.146.32.0/23 ip4:207.211.132.0/25 ip4:165.1.100.0/25 ip4:158.247.100.0/25 ip4:192.29.172.0/25 ip4:192.29.24.0/25 ip4:192.29.232.0/25 ip4:192.29.248.0/25 ip4:192.29.216.0/25 ip4:192.29.44.0/25 ip4:192.29.151.128/25 ip4:129.148.135.0/25 ip4:129.148.148.0/25 ip4:129.149.126.0/25 ip4:129.148.180.0/25 ip4:129.149.52.0/25 ip4:159.13.4.0/25 ip4:84.8.68.0/25 ip4:192.29.200.0/25 ip4:138.1.108.0/25 ip4:130.35.116.0/25 ip4:192.29.178.0/25 ip4:129.149.22.0/25 ip4:129.149.118.0/25 ip4:129.149.100.0/25 ip4:129.149.84.0/25 ip4:129.149.68.0/25 ip4:155.248.135.128/25 ip4:155.248.140.0/25 -all",
- "mx_asns":[
- 59519,
- 203160
- ],
- "autodiscover":{
- "autodiscover_cname":"adr.exghost.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bettlach.ch"
+ ],
+ "guess":[
+ "bettlach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2544":{
"bfs":"2544",
"name":"Feldbrunnen-St. Niklaus",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"feldbrunnen.ch",
"mx":[
"feldbrunnen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:93.174.20.41 include:spf.protection.outlook.com include:spf.hstex.comp-sys.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:93.174.20.41 include:spf.protection.outlook.com include:spf.hstex.comp-sys.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:93.174.16.0/23 ip6:2a04:a2c0:2::/48 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX feldbrunnen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "feldbrunnen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "feldbrunnen.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2545":{
"bfs":"2545",
"name":"Flumenthal",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"flumenthal.ch",
"mx":[
"flumenthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX flumenthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "flumenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flumenthal.ch"
+ ],
+ "guess":[
+ "flumenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2546":{
"bfs":"2546",
"name":"Grenchen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"grenchen.ch",
"mx":[
"grenchen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grenchen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.grenchen.ch CNAME → selector1-grenchen-ch._domainkey.stadtgrenchen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.grenchen.ch CNAME → selector2-grenchen-ch._domainkey.stadtgrenchen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grenchen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grenchen.ch"
+ ],
+ "guess":[
+ "grenchen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2547":{
"bfs":"2547",
"name":"Günsberg",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"guensberg.ch",
"mx":[
"guensberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX guensberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "guensberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "guensberg.ch"
+ ],
+ "guess":[
+ "guensberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2548":{
"bfs":"2548",
@@ -15344,90 +52764,446 @@
],
"spf":"v=spf1 a mx ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hubersdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hubersdorf.ch CNAME → selector1-hubersdorf-ch._domainkey.hubersdorf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hubersdorf.ch CNAME → selector2-hubersdorf-ch._domainkey.hubersdorf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ggs.ch",
+ "hubersdorf.ch",
+ "vd.so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hubersdorf.ch"
+ ],
+ "guess":[
+ "hubersdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2549":{
"bfs":"2549",
"name":"Kammersrohr",
- "canton":"",
- "domain":"kammersrohr.ch",
- "mx":[
- "mx1.hostfactory.ch",
- "mx2.hostfactory.swiss",
- "mx3.hostfactory.ch",
- "mx4.hostfactory.swiss"
- ],
- "spf":"v=spf1 a:spf.hostfactory.ch -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 29691,
- 58222
- ]
+ "canton":"Kanton Solothurn",
+ "domain":"bluewin.ch",
+ "mx":[
+ "mx01.p.bluenet.ch",
+ "mx02.p.bluenet.ch"
+ ],
+ "spf":"v=spf1 redirect=_spf.bluewin.ch",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bluewin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2550":{
"bfs":"2550",
"name":"Langendorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"langendorf-so.ch",
"mx":[
"langendorfso-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:78.46.6.166 ip6:2a01:4f8:d0a:309a::2 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:78.46.6.166 ip6:2a01:4f8:d0a:309a::2 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX langendorfso-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "langendorf-so.ch"
+ ],
+ "guess":[
+ "langendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2551":{
"bfs":"2551",
"name":"Lommiswil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"lommiswil.ch",
"mx":[
"lommiswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:_spf.sui-inter.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:_spf.sui-inter.net -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lommiswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lommiswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lommiswil.ch"
+ ],
+ "guess":[
+ "lommiswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2553":{
"bfs":"2553",
- "name":"Oberdorf",
- "canton":"",
+ "name":"Oberdorf (SO)",
+ "canton":"Kanton Solothurn",
"domain":"oberdorf.ch",
"mx":[
"oberdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberdorf.ch"
+ ],
+ "guess":[
+ "oberdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2554":{
"bfs":"2554",
"name":"Riedholz",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"riedholz.ch",
"mx":[
"mail.format-ag.ch",
@@ -15437,220 +53213,968 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "riedholz.ch"
+ ],
+ "guess":[
+ "riedholz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2555":{
"bfs":"2555",
"name":"Rüttenen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"ruettenen.ch",
"mx":[
"ruettenen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:141207667.spf10.hubspotemail.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:141207667.spf10.hubspotemail.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:3.93.157.0/24 ip4:3.210.190.0/24 ip4:18.208.124.128/25 ip4:54.174.52.0/24 ip4:54.174.57.0/24 ip4:54.174.59.0/24 ip4:54.174.60.0/23 ip4:54.174.63.0/24 ip4:108.179.144.0/20 ip4:139.180.17.0/24 ip4:141.193.184.32/27 ip4:141.193.184.64/26 ip4:141.193.184.128/25 ip4:141.193.185.32/27 ip4:141.193.185.64/26 ip4:141.193.185.128/25 ip4:143.244.80.0/20 ip4:158.247.16.0/20 ip4:216.139.64.0/19 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ruettenen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ruettenen.ch CNAME → selector1-ruettenen-ch._domainkey.ruettenench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ruettenen.ch CNAME → selector2-ruettenen-ch._domainkey.ruettenench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruettenen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruettenen.ch"
+ ],
+ "guess":[
+ "ruettenen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2556":{
"bfs":"2556",
"name":"Selzach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"selzach.ch",
"mx":[
"selzach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX selzach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.selzach.ch CNAME → selector1-selzach-ch._domainkey.selzach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.selzach.ch CNAME → selector2-selzach-ch._domainkey.selzach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "selzach.ch"
+ ],
+ "guess":[
+ "selzach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2571":{
"bfs":"2571",
"name":"Boningen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"boningen.ch",
"mx":[
"boningen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boningen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.boningen.ch CNAME → selector1-boningen-ch._domainkey.gemeindeboningen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.boningen.ch CNAME → selector2-boningen-ch._domainkey.gemeindeboningen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boningen.ch"
+ ],
+ "guess":[
+ "boningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2572":{
"bfs":"2572",
"name":"Däniken",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"daeniken.ch",
"mx":[
"daeniken-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.exclaimer.net include:_spf.talus.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.exclaimer.net include:_spf.talus.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:104.40.229.156 ip4:52.169.0.179 ip4:191.237.4.149 ip4:104.209.35.28 ip4:104.210.80.79 ip4:13.70.157.244 ip4:51.140.37.132 ip4:51.141.5.228 ip4:52.233.37.155 ip4:52.242.32.10 ip4:20.233.10.24 ip4:20.74.156.16 ip4:20.52.124.58 ip4:20.113.192.118 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.daeniken.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX daeniken-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "daeniken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "daeniken.ch"
+ ],
+ "guess":[
+ "daeniken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2573":{
"bfs":"2573",
"name":"Dulliken",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"dulliken.ch",
"mx":[
"dulliken-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dulliken-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dulliken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dulliken.ch"
+ ],
+ "guess":[
+ "dulliken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2574":{
"bfs":"2574",
"name":"Eppenberg-Wöschnau",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"eppenberg-woeschnau.ch",
"mx":[
"eppenbergwoeschnau-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"hostcenter.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eppenbergwoeschnau-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eppenberg-woeschnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eppenberg-woeschnau.ch"
+ ],
+ "guess":[
+ "eppenberg-woeschnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2575":{
"bfs":"2575",
"name":"Fulenbach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"fulenbach.ch",
"mx":[
"fulenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fulenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fulenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fulenbach.ch"
+ ],
+ "guess":[
+ "fulenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2576":{
"bfs":"2576",
"name":"Gretzenbach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"gretzenbach.ch",
"mx":[
"gretzenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gretzenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gretzenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gretzenbach.ch"
+ ],
+ "guess":[
+ "gretzenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2578":{
"bfs":"2578",
"name":"Gunzgen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"gunzgen.ch",
"mx":[
"gunzgen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gunzgen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gunzgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gunzgen.ch"
+ ],
+ "guess":[
+ "gunzgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2579":{
"bfs":"2579",
"name":"Hägendorf",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"haegendorf.ch",
"mx":[
"haegendorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.tophost.ch include:_spf.tophost.ch include:relay.mailchannels.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.tophost.ch include:_spf.tophost.ch include:relay.mailchannels.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX haegendorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "haegendorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haegendorf.ch"
+ ],
+ "guess":[
+ "haegendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2580":{
"bfs":"2580",
- "name":"Kappel",
- "canton":"",
+ "name":"Kappel (SO)",
+ "canton":"Kanton Solothurn",
"domain":"kappel-so.ch",
"mx":[
"kappelso-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.smtp.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.smtp.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kappelso-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kappel-so.ch CNAME → selector1-kappelso-ch01e._domainkey.gemeindekappel.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kappel-so.ch CNAME → selector2-kappelso-ch01e._domainkey.gemeindekappel.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kappel-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kappel-so.ch"
+ ],
+ "guess":[
+ "kappel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2581":{
"bfs":"2581",
"name":"Olten",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"olten.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -15658,16 +54182,47 @@
],
"spf":"v=spf1 mx ip4:164.128.174.20 ip4:193.135.131.203 a:dispatch-eu.ppe-hosted.com include:_spf.i-web.ch include:spf1.egeko.ch include:spf.protection.outlook.com include:psm.knowbe4.com include:mx.dvbern.ch include:spf.omcomputer.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:164.128.174.20 ip4:193.135.131.203 a:dispatch-eu.ppe-hosted.com include:_spf.i-web.ch include:spf1.egeko.ch include:spf.protection.outlook.com include:psm.knowbe4.com include:mx.dvbern.ch include:spf.omcomputer.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:34.199.159.209 ip4:34.197.134.60 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 ip4:34.251.106.174 -all v=spf1 ip4:185.125.165.24/31 -all v=spf1 ip4:194.56.218.154 -all",
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
"gateway":"proofpoint",
- "mx_asns":[
- 52129
- ]
+ "sources_detail":{
+ "scrape":[
+ "olten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "olten.ch"
+ ],
+ "guess":[
+ "olten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2582":{
"bfs":"2582",
- "name":"Rickenbach",
- "canton":"",
+ "name":"Rickenbach (SO)",
+ "canton":"Kanton Solothurn",
"domain":"rickenbachso.ch",
"mx":[
"mail.format-ag.ch",
@@ -15677,54 +54232,216 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rickenbachso.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rickenbachso.ch"
+ ],
+ "guess":[
+ "rickenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2583":{
"bfs":"2583",
"name":"Schönenwerd",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"schoenenwerd.ch",
"mx":[
"schoenenwerd-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schoenenwerd-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.schoenenwerd.ch CNAME → selector1-schoenenwerd-ch._domainkey.gemeindeschoenenwerd.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.schoenenwerd.ch CNAME → selector2-schoenenwerd-ch._domainkey.gemeindeschoenenwerd.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoenenwerd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoenenwerd.ch"
+ ],
+ "guess":[
+ "schoenenwerd.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2584":{
"bfs":"2584",
"name":"Starrkirch-Wil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"starrkirch-wil.ch",
"mx":[
"starrkirchwil-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:217.148.4.244 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:217.148.4.244 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX starrkirchwil-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.starrkirch-wil.ch CNAME → selector1-starrkirchwil-ch02e._domainkey.starrkirchwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.starrkirch-wil.ch CNAME → selector2-starrkirchwil-ch02e._domainkey.starrkirchwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "starrkirch-wil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "starrkirch-wil.ch"
+ ],
+ "guess":[
+ "starrkirch-wil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2585":{
"bfs":"2585",
- "name":"Walterswil",
- "canton":"",
+ "name":"Walterswil (SO)",
+ "canton":"Kanton Solothurn",
"domain":"walterswil.ch",
"mx":[
"mx01.servicehoster.ch",
@@ -15732,56 +54449,171 @@
],
"spf":"v=spf1 include:servicehoster.ch a ip4:193.135.56.6 mx ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:servicehoster.ch a ip4:193.135.56.6 mx ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 1836
- ],
- "autodiscover":{
- "autodiscover_cname":"redirect-autodiscover.cloudpit.io"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "walterswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walterswil.ch"
+ ],
+ "guess":[
+ "walterswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2586":{
"bfs":"2586",
"name":"Wangen bei Olten",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"wangenbo.ch",
"mx":[
"wangenbo-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.mail.hostpoint.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.mail.hostpoint.ch include:spf.protection.outlook.com ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wangenbo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wangenbo.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wangenbo.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2601":{
"bfs":"2601",
"name":"Solothurn",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"solothurn.ch",
"mx":[
"solothurn-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx a include:_spf.ch.seppmail.cloud include:spf.nl2go.com include:_spf.i-web.ch include:_spf.zimpel.de include:spf.umantis.com ip4:194.48.244.4 ip4:185.73.240.214 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:_spf.ch.seppmail.cloud include:spf.nl2go.com include:_spf.i-web.ch include:_spf.zimpel.de include:spf.umantis.com ip4:194.48.244.4 ip4:185.73.240.214 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.201.168.38/32 ip4:193.201.168.170/31 v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "solothurn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "solothurn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2611":{
"bfs":"2611",
"name":"Bärschwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"baerschwil.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -15789,51 +54621,101 @@
],
"spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch v=spf1 include:spf.mail.hostpoint.ch ?all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "baerschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baerschwil.ch"
+ ],
+ "guess":[
+ "baerschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2612":{
"bfs":"2612",
- "name":"Beinwil",
- "canton":"",
+ "name":"Beinwil (SO)",
+ "canton":"Kanton Solothurn",
"domain":"beinwil-so.ch",
"mx":[
"mail.beinwil-so.ch"
],
"spf":"v=spf1 +a +mx +a:rlx1.loginserver.ch -all",
"provider":"independent",
- "mx_asns":[
- 24940
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "beinwil-so.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "beinwil-so.ch"
+ ],
+ "guess":[
+ "beinwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2613":{
"bfs":"2613",
"name":"Breitenbach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"breitenbach.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "breitenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "breitenbach.ch"
+ ],
+ "guess":[
+ "breitenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2614":{
"bfs":"2614",
"name":"Büsserach",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"buesserach.ch",
"mx":[
"mail.format-ag.ch",
@@ -15843,18 +54725,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buesserach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buesserach.ch"
+ ],
+ "guess":[
+ "buesserach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2615":{
"bfs":"2615",
"name":"Erschwil",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"erschwil.ch",
"mx":[
"erschwil.ch.1.0001.arsmtp.com",
@@ -15862,14 +54766,29 @@
],
"spf":"v=spf1 a:erschwil.ch mx include:exghost.com include:appriver.com include:edgepilot.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a:erschwil.ch mx include:exghost.com include:appriver.com include:edgepilot.com ~all v=spf1 ip4:204.232.236.0/23 ip4:204.232.250.0/24 ip4:207.97.230.0/24 ip4:5.152.185.0/24 ip4:50.56.144.0/24 ip4:72.32.253.64/26 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:92.52.89.64/26 ip4:72.3.212.195 ip4:198.37.147.129 include:stspg-customer.com ~all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com include:rnmk.com ~all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com ~all v=spf1 ip4:23.253.182.103 ip4:23.253.183.145 ip4:23.253.183.146 ip4:23.253.183.147 ip4:23.253.183.148 ip4:23.253.183.150 ip4:166.78.68.221 ip4:167.89.46.159 ip4:167.89.64.9 ip4:167.89.65.0 ip4:167.89.65.53 ip4:167.89.65.100 ip4:167.89.74.233 ip4:167.89.75.33 ip4:167.89.75.126 ip4:167.89.75.136 ip4:167.89.75.164 ip4:192.237.159.42 ip4:192.237.159.43 ip4:159.112.242.162 ip4:159.135.228.10 ip4:198.244.56.107 ip4:198.244.56.108 ip4:198.244.56.109 ip4:198.244.56.111 ip4:198.244.56.112 ip4:198.244.56.113 ip4:198.244.56.114 ip4:198.244.56.115 ip4:204.220.181.105 ~all v=spf1 ip4:204.232.250.0/24 ip4:5.152.185.0/24 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:72.3.212.195 ip4:5.152.188.0/24 ip4:174.37.170.192/27 ~all v=spf1 ip4:75.126.84.128/26 ip4:67.228.8.0/25 ip4:67.227.149.19 ip4:64.56.208.32/27 ip4:67.228.91.90 ip4:67.228.158.174 ip4:174.36.44.116/30 ip4:50.201.66.168 ip4:63.71.8.0/21 ip4:199.30.232.0/21 ip4:74.203.184.0/23 ip4:207.195.176.0/20 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf-a.rnmk.com exists:%{i}.spf.rnmk.com -all v=spf1 ip4:129.148.164.0/25 ip4:129.148.215.0/25 ip4:129.149.6.0/25 ip4:129.149.38.0/25 ip4:138.1.170.0/24 ip4:147.154.32.0/25 ip4:147.154.63.0/24 ip4:147.154.126.0/24 ip4:147.154.191.0/24 ip4:162.88.24.0/23 ip4:192.29.72.0/25 ip4:192.29.88.0/25 ip4:192.29.103.128/25 ip4:192.29.134.0/25 ip4:155.248.148.0/25 ip4:131.186.12.0/25 ip4:139.177.108.0/25 ip4:162.88.4.0/23 ip4:162.88.8.0/24 ip4:162.88.36.0/24 ip4:208.76.62.0/23 ip4:216.146.32.0/23 ip4:207.211.132.0/25 ip4:165.1.100.0/25 ip4:158.247.100.0/25 ip4:192.29.172.0/25 ip4:192.29.24.0/25 ip4:192.29.232.0/25 ip4:192.29.248.0/25 ip4:192.29.216.0/25 ip4:192.29.44.0/25 ip4:192.29.151.128/25 ip4:129.148.135.0/25 ip4:129.148.148.0/25 ip4:129.149.126.0/25 ip4:129.148.180.0/25 ip4:129.149.52.0/25 ip4:159.13.4.0/25 ip4:84.8.68.0/25 ip4:192.29.200.0/25 ip4:138.1.108.0/25 ip4:130.35.116.0/25 ip4:192.29.178.0/25 ip4:129.149.22.0/25 ip4:129.149.118.0/25 ip4:129.149.100.0/25 ip4:129.149.84.0/25 ip4:129.149.68.0/25 ip4:155.248.135.128/25 ip4:155.248.140.0/25 -all",
- "mx_asns":[
- 59519,
- 203160
- ],
- "autodiscover":{
- "autodiscover_cname":"adr.exghost.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "erschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "erschwil.ch"
+ ],
+ "guess":[
+ "erschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2616":{
"bfs":"2616",
@@ -15881,103 +54800,501 @@
],
"spf":"v=spf1 ip4:185.66.108.55 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.66.108.55 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fehren-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.fehren.ch CNAME → selector1-fehren-ch._domainkey.fehren.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.fehren.ch CNAME → selector2-fehren-ch._domainkey.fehren.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fehren.ch"
+ ],
+ "guess":[
+ "fehren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2617":{
"bfs":"2617",
"name":"Grindel",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"grindel.ch",
"mx":[
"grindel-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grindel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grindel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grindel.ch"
+ ],
+ "guess":[
+ "grindel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2618":{
"bfs":"2618",
"name":"Himmelried",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"himmelried.ch",
"mx":[
"himmelried-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX himmelried-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.himmelried.ch CNAME → selector1-himmelried-ch._domainkey.himmelried.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.himmelried.ch CNAME → selector2-himmelried-ch._domainkey.himmelried.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "himmelried.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "himmelried.ch"
+ ],
+ "guess":[
+ "himmelried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2619":{
"bfs":"2619",
"name":"Kleinlützel",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"kleinluetzel.ch",
"mx":[
"kleinluetzel-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:195.48.58.75 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.48.58.75 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kleinluetzel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kleinluetzel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kleinluetzel.ch"
+ ],
+ "guess":[
+ "kleinluetzel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2620":{
"bfs":"2620",
"name":"Meltingen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"meltingen.ch",
"mx":[
"meltingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX meltingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "meltingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "meltingen.ch"
+ ],
+ "guess":[
+ "meltingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2621":{
"bfs":"2621",
"name":"Nunningen",
- "canton":"",
+ "canton":"Kanton Solothurn",
"domain":"nunningen.ch",
"mx":[
"nunningen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nunningen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "nunningen.ch"
+ ],
+ "guess":[
+ "nunningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2622":{
"bfs":"2622",
@@ -15989,13 +55306,75 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zullwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "zullwil.ch"
+ ],
+ "guess":[
+ "zullwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2701":{
"bfs":"2701",
@@ -16008,14 +55387,68 @@
"mail20.swisscom.com"
],
"spf":"v=spf1 a:mx.kundenserver.de a:spf.bs.ch include:spf.swisscom.com include:spf.crsend.com include:spf.appmail.swisscom.com include:servers.mcsv.net include:spf.nextron.ch include:_spf.jpberlin.de include:newsmailservice.de include:_spfip.oriented.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:mx.kundenserver.de a:spf.bs.ch include:spf.swisscom.com include:spf.crsend.com include:spf.appmail.swisscom.com include:servers.mcsv.net include:spf.nextron.ch include:_spf.jpberlin.de include:newsmailservice.de include:_spfip.oriented.ch -all v=spf1 ip4:138.188.176.0/26 ip4:138.188.176.128/26 ip4:138.188.166.96/27 ~all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all v=spf1 ip4:138.188.166.160/27 ip4:138.188.163.96/28 ~all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:193.108.137.0/24 ip4:80.74.149.0/24 ip4:194.150.248.30 -all v=spf1 ip4:80.241.56.0/21 ip4:91.198.250.0/24 ip4:195.10.208.0/24 ip6:2001:67c:2050::/48 ~all v=spf1 mx ip4:5.75.140.191 ip4:5.75.240.187 ip4:5.75.240.190 ip4:5.75.170.61 ip4:91.99.17.215 ip4:46.224.113.54 ~all v=spf1 ip4:185.15.230.184 ip4:185.15.230.188 ip4:185.15.230.224 ip4:185.214.155.122 ip4:62.2.197.119 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.bs.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bs.ch"
+ ],
+ "guess":[
+ "gemeinde-basel.ch"
+ ]
+ },
+ "resolve_flags":[
+ "website_mismatch"
+ ]
},
"2702":{
"bfs":"2702",
@@ -16028,14 +55461,58 @@
"mail20.swisscom.com"
],
"spf":"v=spf1 a mx include:spf.swisscom.com ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx include:spf.swisscom.com ~all v=spf1 ip4:138.188.176.0/26 ip4:138.188.176.128/26 ip4:138.188.166.96/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.bs.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bettingen.ch"
+ ],
+ "guess":[
+ "bettingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2703":{
"bfs":"2703",
@@ -16048,18 +55525,68 @@
"mail20.swisscom.com"
],
"spf":"v=spf1 include:spf.swisscom.com include:spf.abacus.ch include:spf.amazee.io ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.swisscom.com include:spf.abacus.ch include:spf.amazee.io ~all v=spf1 ip4:138.188.176.0/26 ip4:138.188.176.128/26 ip4:138.188.166.96/27 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 -all v=spf1 ip4:5.102.145.30 ip6:2a06:c01:1:1102::30 ip4:5.102.151.229 ip6:2a06:c00::56fd ?all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.bs.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "riehen.ch"
+ ],
+ "guess":[
+ "riehen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2761":{
"bfs":"2761",
- "name":"Aesch",
+ "name":"Aesch (BL)",
"canton":"Kanton Basel-Landschaft",
"domain":"aesch.bl.ch",
"mx":[
@@ -16069,30 +55596,96 @@
"ktvmx04.mail.admin.ch"
],
"spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf.protection.outlook.com include:spf.abacuscity.ch ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf.protection.outlook.com include:spf.abacuscity.ch ~all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.aesch.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aesch.bl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aesch.bl.ch"
+ ],
+ "guess":[
+ "aesch.bl.ch",
+ "aesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2762":{
"bfs":"2762",
"name":"Allschwil",
- "canton":"",
- "domain":"allschwil.ch",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"allschwil.bl.ch",
"mx":[
- "212.120.53.8"
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "spf":"",
- "provider":"independent"
+ "spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:_spf.talus.ch ip4:178.174.17.194 a:smtp-inca.allschwil.bl.ch include:spf.protection.outlook.com ~all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "allschwil.bl.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2763":{
"bfs":"2763",
"name":"Arlesheim",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"arlesheim.ch",
"mx":[
"\\032nt.datacomm.ch",
@@ -16100,18 +55693,81 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX arlesheim-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "arlesheim.ch"
+ ],
+ "guess":[
+ "arlesheim.bl.ch",
+ "arlesheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2764":{
"bfs":"2764",
"name":"Biel-Benken",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"biel-benken.ch",
"mx":[
"mail.format-ag.ch",
@@ -16121,32 +55777,66 @@
],
"spf":"v=spf1 include:_spf.talus.ch ip4:193.135.56.6 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.talus.ch ip4:193.135.56.6 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "biel-benken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "biel-benken.ch"
+ ],
+ "guess":[
+ "biel-benken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2765":{
"bfs":"2765",
"name":"Binningen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"binningen.ch",
"mx":[
"smtp.backslash.ch"
],
"spf":"v=spf1 ip4:193.135.56.0/24 -all",
"provider":"independent",
- "mx_asns":[
- 207143
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "binningen.ch"
+ ],
+ "guess":[
+ "binningen.bl.ch",
+ "binningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2766":{
"bfs":"2766",
"name":"Birsfelden",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"birsfelden.ch",
"mx":[
"mx1.naveum.services",
@@ -16154,73 +55844,295 @@
],
"spf":"v=spf1 mx a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services ip4:194.56.218.181 include:spf.abacuscity.ch include:_spf.talus.ch include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services ip4:194.56.218.181 include:spf.abacuscity.ch include:_spf.talus.ch include:_spf.i-web.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 205737
- ],
- "autodiscover":{
- "autodiscover_cname":"mail01.axc.biz"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "birsfelden.ch"
+ ],
+ "guess":[
+ "birsfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2767":{
"bfs":"2767",
"name":"Bottmingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"bottmingen.ch",
"mx":[
"bottmingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a include:spf.protection.outlook.com include:_spf.talus.ch include:spf.etermin.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:spf.protection.outlook.com include:_spf.talus.ch include:spf.etermin.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:52.157.149.216 ip4:20.52.138.252 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bottmingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bottmingen.ch CNAME → selector1-bottmingen-ch._domainkey.ms365bottmingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bottmingen.ch CNAME → selector2-bottmingen-ch._domainkey.ms365bottmingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bottmingen.ch"
+ ],
+ "guess":[
+ "bottmingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2768":{
"bfs":"2768",
"name":"Ettingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"ettingen.ch",
"mx":[
"ettingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:web23.internezzo.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:web23.internezzo.ch include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ettingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ettingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ettingen.ch"
+ ],
+ "guess":[
+ "ettingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2769":{
"bfs":"2769",
"name":"Münchenstein",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"muenchenstein.ch",
"mx":[
"mstein.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 a mx a:mail.muenchenstein.ch ip4:212.120.52.22 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_netblocks1.admin.ch include:_netblocks3.admin.ch include:_spf.talus.ch include:spf.abacuscity.ch include:spf.tmes.trendmicro.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx a:mail.muenchenstein.ch ip4:212.120.52.22 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_netblocks1.admin.ch include:_netblocks3.admin.ch include:_spf.talus.ch include:spf.abacuscity.ch include:spf.tmes.trendmicro.com -all v=spf1 ~all v=spf1 ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:18.208.22.64/26 ip4:18.208.22.128/25 ip4:18.185.115.128/26 ip4:18.185.115.0/25 ip4:13.238.202.0/25 ip4:13.238.202.128/26 ip4:18.176.203.128/25 ip4:13.213.174.128/25 ip4:18.177.156.0/25 ip4:13.213.220.0/25 include:spfb.tmes.trendmicro.com ~all v=spf1 ip4:107.22.223.18 ip4:52.70.252.86 ip4:35.156.245.132 ip4:18.156.0.20 ip4:3.72.196.143 ip4:54.146.4.63 ip4:54.174.82.86 ip6:2600:1f18:42fe:5c00::/60 ip6:2a05:d014:10e:d900::/60 ip6:2406:da1c:1ef6:1c00::/60 include:spfc.tmes.trendmicro.com ~all v=spf1 ip4:18.188.9.192/26 ip4:18.188.239.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:15.168.56.0/25 ip4:15.168.49.64/26 ip4:15.168.56.128/26 ip4:18.97.0.160/27 ip4:18.96.32.128/27 ip6:2406:da14:194d:a200::/60 ip6:2406:da18:4ed:be00::/60 ~all",
- "gateway":"trendmicro",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.muenchenstein.ch"
- }
+ "gateway":"trendmicro",
+ "sources_detail":{
+ "scrape":[
+ "muenchenstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muenchenstein.ch"
+ ],
+ "guess":[
+ "muenchenstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2770":{
"bfs":"2770",
"name":"Muttenz",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"muttenz.ch",
"mx":[
"mail.format-ag.ch",
@@ -16230,143 +56142,601 @@
],
"spf":"v=spf1 a include:_spf.talus.ch a:mail.i-web.ch ip4:87.102.253.202 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch a:mail.i-web.ch ip4:87.102.253.202 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muttenz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muttenz.ch"
+ ],
+ "guess":[
+ "muttenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2771":{
"bfs":"2771",
- "name":"Oberwil",
- "canton":"",
+ "name":"Oberwil (BL)",
+ "canton":"Kanton Basel-Landschaft",
"domain":"oberwil.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.i-web.ch include:spf.protection.outlook.com ip4:212.103.71.210 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.i-web.ch include:spf.protection.outlook.com ip4:212.103.71.210 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "oberwil.ch"
+ ],
+ "guess":[
+ "oberwil.bl.ch",
+ "oberwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2772":{
"bfs":"2772",
"name":"Pfeffingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"pfeffingen.ch",
"mx":[
"pfeffingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pfeffingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pfeffingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pfeffingen.ch"
+ ],
+ "guess":[
+ "pfeffingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2773":{
"bfs":"2773",
- "name":"Reinach",
- "canton":"",
+ "name":"Reinach (BL)",
+ "canton":"Kanton Basel-Landschaft",
"domain":"reinach-bl.ch",
"mx":[
"reinach-bl-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx a:mail.format-ag.ch a:eu1.smtp.exclaimer.net a:eu2.smtp.exclaimer.net include:spf.protection.outlook.com include:spf.umantis.com include:_spf.ch.seppmail.cloud ip4:162.12.200.200 ip4:162.12.202.20 ip4:162.12.202.6 ip4:162.12.203.214 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail.format-ag.ch a:eu1.smtp.exclaimer.net a:eu2.smtp.exclaimer.net include:spf.protection.outlook.com include:spf.umantis.com include:_spf.ch.seppmail.cloud ip4:162.12.200.200 ip4:162.12.202.20 ip4:162.12.202.6 ip4:162.12.203.214 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
- ]
+ "sources_detail":{
+ "scrape":[
+ "reinach-bl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reinach-bl.ch"
+ ],
+ "guess":[
+ "reinach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2774":{
"bfs":"2774",
"name":"Schönenbuch",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"schoenenbuch.ch",
"mx":[
"schoenenbuch-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schoenenbuch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoenenbuch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoenenbuch.ch"
+ ],
+ "guess":[
+ "schoenenbuch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2775":{
"bfs":"2775",
"name":"Therwil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"therwil.ch",
"mx":[
"therwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:146.4.42.27 ip4:212.120.37.100 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:146.4.42.27 ip4:212.120.37.100 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX therwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.therwil.ch CNAME → selector1-therwil-ch._domainkey.therwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.therwil.ch CNAME → selector2-therwil-ch._domainkey.therwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "therwil.ch"
+ ],
+ "guess":[
+ "gemeinde-therwil.ch",
+ "therwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2781":{
"bfs":"2781",
"name":"Blauen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"blauen.ch",
"mx":[
"blauen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX blauen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "blauen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "blauen.ch"
+ ],
+ "guess":[
+ "blauen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2782":{
"bfs":"2782",
"name":"Brislach",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"brislach.ch",
"mx":[
"brislach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brislach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brislach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brislach.ch"
+ ],
+ "guess":[
+ "brislach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2783":{
"bfs":"2783",
"name":"Burg im Leimental",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"burg-il.ch",
"mx":[
"mail.format-ag.ch",
@@ -16376,394 +56746,1697 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.vtx.ch",
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "burg-il.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2784":{
"bfs":"2784",
"name":"Dittingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"dittingen.ch",
"mx":[
"dittingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dittingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.dittingen.ch CNAME → selector1-dittingen-ch._domainkey.gemeindedittingench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.dittingen.ch CNAME → selector2-dittingen-ch._domainkey.gemeindedittingench.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dittingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dittingen.ch"
+ ],
+ "guess":[
+ "dittingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2785":{
"bfs":"2785",
"name":"Duggingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"duggingen.ch",
"mx":[
"duggingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.liveapp.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX duggingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "duggingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duggingen.ch"
+ ],
+ "guess":[
+ "duggingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2786":{
"bfs":"2786",
"name":"Grellingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"grellingen.ch",
"mx":[
"grellingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch a:svce-mail.softec.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch a:svce-mail.softec.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grellingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grellingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grellingen.ch"
+ ],
+ "guess":[
+ "grellingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2787":{
"bfs":"2787",
"name":"Laufen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"laufen-bl.ch",
"mx":[
"laufenbl-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laufenbl-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "laufen-bl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "laufen-bl.ch"
+ ],
+ "guess":[
+ "laufen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2788":{
"bfs":"2788",
"name":"Liesberg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"liesberg.ch",
"mx":[
"liesberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX liesberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "liesberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "liesberg.ch"
+ ],
+ "guess":[
+ "liesberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2789":{
"bfs":"2789",
"name":"Nenzlingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"nenzlingen.ch",
"mx":[
"nenzlingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nenzlingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "nenzlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2790":{
"bfs":"2790",
"name":"Roggenburg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"roggenburg.ch",
"mx":[
"roggenburg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX roggenburg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "roggenburg.ch"
+ ],
+ "guess":[
+ "roggenburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2791":{
"bfs":"2791",
"name":"Röschenz",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"roeschenz.ch",
"mx":[
"roeschenz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:85.4.210.100 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:85.4.210.100 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX roeschenz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roeschenz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roeschenz.ch"
+ ],
+ "guess":[
+ "roeschenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2792":{
"bfs":"2792",
"name":"Wahlen",
- "canton":"",
- "domain":"wahlen.ch",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"gemeinde-wahlen.ch",
"mx":[
- "mx1.mailstation.ch",
- "mx2.mailstation.ch"
+ "gemeindewahlen-ch02b.mail.protection.outlook.com"
],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 29097
- ]
+ "spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindewahlen-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeinde-wahlen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2793":{
"bfs":"2793",
"name":"Zwingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"zwingen.ch",
"mx":[
"zwingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zwingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zwingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zwingen.ch"
+ ],
+ "guess":[
+ "zwingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2821":{
"bfs":"2821",
"name":"Arisdorf",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"arisdorf.ch",
"mx":[
"arisdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX arisdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.arisdorf.ch CNAME → selector1-arisdorf-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.arisdorf.ch CNAME → selector2-arisdorf-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "arisdorf.ch"
+ ],
+ "guess":[
+ "arisdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2822":{
"bfs":"2822",
"name":"Augst",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"augst.ch",
"mx":[
"augst-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX augst-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.augst.ch CNAME → selector1-augst-ch._domainkey.gemeindeaugstch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.augst.ch CNAME → selector2-augst-ch._domainkey.gemeindeaugstch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "augst.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2823":{
"bfs":"2823",
"name":"Bubendorf",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"bubendorf.swiss",
"mx":[
"bubendorf-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.talus.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.talus.ch include:spf.protection.outlook.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.bubendorf.swiss"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bubendorf-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bubendorf.swiss"
+ ],
+ "guess":[
+ "bubendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2824":{
"bfs":"2824",
"name":"Frenkendorf",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"frenkendorf.ch",
"mx":[
"frenkendorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:communication.backslash.ch +a:psm.knowbe4.com +a:de.knowbe4.com +A -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:communication.backslash.ch +a:psm.knowbe4.com +a:de.knowbe4.com +A -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX frenkendorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.frenkendorf.ch CNAME → selector1-frenkendorf-ch._domainkey.frenkendorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.frenkendorf.ch CNAME → selector2-frenkendorf-ch._domainkey.frenkendorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "frenkendorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "frenkendorf.ch"
+ ],
+ "guess":[
+ "frenkendorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2825":{
"bfs":"2825",
"name":"Füllinsdorf",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"fuellinsdorf.ch",
"mx":[
"fuellinsdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_netblocks1.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_netblocks1.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fuellinsdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fuellinsdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fuellinsdorf.ch"
+ ],
+ "guess":[
+ "fuellinsdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2826":{
"bfs":"2826",
"name":"Giebenach",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"giebenach.ch",
"mx":[
"giebenach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX giebenach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "giebenach.ch"
+ ],
+ "guess":[
+ "giebenach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2827":{
"bfs":"2827",
"name":"Hersberg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"hersberg.ch",
"mx":[
"hersberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hersberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hersberg.ch CNAME → selector1-hersberg-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hersberg.ch CNAME → selector2-hersberg-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "hersberg.ch"
+ ],
+ "guess":[
+ "hersberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2828":{
"bfs":"2828",
"name":"Lausen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"lausen.ch",
"mx":[
"lausen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.talus.ch ip4:46.140.120.238 ip4:194.56.218.181 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.talus.ch ip4:46.140.120.238 ip4:194.56.218.181 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lausen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lausen.ch"
+ ],
+ "guess":[
+ "lausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2829":{
"bfs":"2829",
"name":"Liestal",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"liestal.ch",
"mx":[
"mx3.armacom.ch"
],
"spf":"v=spf1 mx include:spf.armacom.ch a:mail.liestal.ch include:_spf.i-web.ch include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.armacom.ch a:mail.liestal.ch include:_spf.i-web.ch include:_spf.talus.ch -all v=spf1 ip4:213.188.251.246 ip6:2001:4060:1006:50::35 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 6772
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "esb-bl.ch",
+ "liestal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "liestal.ch"
+ ],
+ "guess":[
+ "liestal.bl.ch",
+ "liestal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2830":{
"bfs":"2830",
"name":"Lupsingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"lupsingen.ch",
"mx":[
"lupsingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lupsingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lupsingen.ch"
+ ],
+ "guess":[
+ "lupsingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2831":{
"bfs":"2831",
"name":"Pratteln",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"pratteln.ch",
"mx":[
- "rrmx.imp.ch"
- ],
- "spf":"v=spf1 ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:213.188.248.154 a:mail01.refline.ch a:mail02.refline.ch ~all",
- "provider":"independent",
- "mx_asns":[
- 6772
+ "mx3.armacom.ch"
],
- "autodiscover":{
- "autodiscover_cname":"mail.pratteln.ch"
- }
+ "spf":"v=spf1 a:mail01.refline.ch a:mail02.refline.ch ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:213.188.248.154 include:spf.armacom.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pratteln.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pratteln.ch"
+ ],
+ "guess":[
+ "pratteln.bl.ch",
+ "pratteln.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2832":{
"bfs":"2832",
"name":"Ramlinsburg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"ramlinsburg.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -16771,72 +58444,314 @@
],
"spf":"v=spf1 redirect=spf.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ramlinsburg.ch"
+ ],
+ "guess":[
+ "ramlinsburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2833":{
"bfs":"2833",
"name":"Seltisberg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"seltisberg.ch",
"mx":[
"seltisberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:77.59.226.194 ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:77.59.226.194 ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX seltisberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seltisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seltisberg.ch"
+ ],
+ "guess":[
+ "seltisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2834":{
"bfs":"2834",
"name":"Ziefen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"ziefen.ch",
"mx":[
"ziefen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:194.0.212.0/24 ip4:193.135.56.6 ip4:195.48.58.75 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:194.0.212.0/24 ip4:193.135.56.6 ip4:195.48.58.75 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ziefen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ziefen.ch CNAME → selector1-ziefen-ch._domainkey.gemeindeziefench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ziefen.ch CNAME → selector2-ziefen-ch._domainkey.gemeindeziefench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ziefen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ziefen.ch"
+ ],
+ "guess":[
+ "ziefen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2841":{
"bfs":"2841",
"name":"Anwil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"anwil.ch",
"mx":[
"anwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX anwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "anwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "anwil.ch"
+ ],
+ "guess":[
+ "anwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2842":{
"bfs":"2842",
"name":"Böckten",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"boeckten.ch",
"mx":[
"mx01.servicehoster.ch",
@@ -16844,69 +58759,313 @@
],
"spf":"v=spf1 include:servicehoster.ch a mx ip4:195.48.58.75 ip4:193.135.56.6 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:servicehoster.ch a mx ip4:195.48.58.75 ip4:193.135.56.6 ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 1836
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "boeckten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boeckten.ch"
+ ],
+ "guess":[
+ "boeckten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2843":{
"bfs":"2843",
"name":"Buckten",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"buckten.ch",
"mx":[
"buckten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.tmes.trendmicro.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.tmes.trendmicro.com include:spf.protection.outlook.com -all v=spf1 ip4:18.208.22.64/26 ip4:18.208.22.128/25 ip4:18.185.115.128/26 ip4:18.185.115.0/25 ip4:13.238.202.0/25 ip4:13.238.202.128/26 ip4:18.176.203.128/25 ip4:13.213.174.128/25 ip4:18.177.156.0/25 ip4:13.213.220.0/25 include:spfb.tmes.trendmicro.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:107.22.223.18 ip4:52.70.252.86 ip4:35.156.245.132 ip4:18.156.0.20 ip4:3.72.196.143 ip4:54.146.4.63 ip4:54.174.82.86 ip6:2600:1f18:42fe:5c00::/60 ip6:2a05:d014:10e:d900::/60 ip6:2406:da1c:1ef6:1c00::/60 include:spfc.tmes.trendmicro.com ~all v=spf1 ip4:18.188.9.192/26 ip4:18.188.239.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:15.168.56.0/25 ip4:15.168.49.64/26 ip4:15.168.56.128/26 ip4:18.97.0.160/27 ip4:18.96.32.128/27 ip6:2406:da14:194d:a200::/60 ip6:2406:da18:4ed:be00::/60 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buckten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buckten.ch CNAME → selector1-buckten-ch._domainkey.gemeindebucktench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buckten.ch CNAME → selector2-buckten-ch._domainkey.gemeindebucktench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buckten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buckten.ch"
+ ],
+ "guess":[
+ "buckten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2844":{
"bfs":"2844",
"name":"Buus",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"buus.ch",
"mx":[
"buus-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:62.202.29.62 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:62.202.29.62 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buus-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buus.ch CNAME → selector1-buus-ch._domainkey.gemeindebuusch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buus.ch CNAME → selector2-buus-ch._domainkey.gemeindebuusch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buus.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buus.ch"
+ ],
+ "guess":[
+ "buus.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2845":{
"bfs":"2845",
"name":"Diepflingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"diepflingen.ch",
"mx":[
"diepflingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX diepflingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.diepflingen.ch CNAME → selector1-diepflingen-ch._domainkey.gemeindediepflingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.diepflingen.ch CNAME → selector2-diepflingen-ch._domainkey.gemeindediepflingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "diepflingen.ch"
+ ],
+ "guess":[
+ "diepflingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2846":{
"bfs":"2846",
"name":"Gelterkinden",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"gelterkinden.ch",
"mx":[
"mail.format-ag.ch",
@@ -16916,51 +59075,172 @@
],
"spf":"v=spf1 mx a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gelterkinden.ch"
+ ],
+ "guess":[
+ "gelterkinden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2847":{
"bfs":"2847",
"name":"Häfelfingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"haefelfingen.ch",
"mx":[
"haefelfingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX haefelfingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.haefelfingen.ch CNAME → selector1-haefelfingen-ch._domainkey.gemeindehaefelfingench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.haefelfingen.ch CNAME → selector2-haefelfingen-ch._domainkey.gemeindehaefelfingench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "haefelfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haefelfingen.ch"
+ ],
+ "guess":[
+ "haefelfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2848":{
"bfs":"2848",
"name":"Hemmiken",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"hemmiken.ch",
"mx":[
"rrmx.imp.ch"
],
"spf":"v=spf1 include:_mailspf.imp.ch include:spf1.egeko.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_mailspf.imp.ch include:spf1.egeko.ch -all v=spf1 ip6:2001:4060:1:1001::/64 ip4:157.161.12.0/22 v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 6772
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmiken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hemmiken.ch"
+ ],
+ "guess":[
+ "hemmiken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2849":{
"bfs":"2849",
"name":"Itingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"itingen.ch",
"mx":[
"itingen-ch.mail.protection.outlook.com",
@@ -16968,211 +59248,1014 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730,
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX itingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "itingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "itingen.ch"
+ ],
+ "guess":[
+ "itingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2850":{
"bfs":"2850",
"name":"Känerkinden",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"kaenerkinden.ch",
"mx":[
"kaenerkinden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kaenerkinden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kaenerkinden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kaenerkinden.ch"
+ ],
+ "guess":[
+ "kaenerkinden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2851":{
"bfs":"2851",
- "name":"Kilchberg",
- "canton":"",
- "domain":"kilchberg-bl.ch",
+ "name":"Kilchberg (BL)",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"verbund-schafmatt.ch",
"mx":[
- "inbound-smtp.eu-west-1.amazonaws.com"
+ "verbundschafmatt-ch01i.mail.protection.outlook.com"
],
- "spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all",
- "provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "verbund-schafmatt.ch"
+ ],
+ "redirect":[
+ "rue-ki-ze.ch"
+ ],
+ "wikidata":[
+ "kilchberg-bl.ch"
+ ],
+ "guess":[
+ "kilchberg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2852":{
"bfs":"2852",
"name":"Läufelfingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"laeufelfingen.ch",
"mx":[
"laeufelfingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch +include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch +include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laeufelfingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "laeufelfingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "laeufelfingen.ch"
+ ],
+ "guess":[
+ "laeufelfingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2853":{
"bfs":"2853",
"name":"Maisprach",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"maisprach.ch",
"mx":[
"maisprach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX maisprach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.maisprach.ch CNAME → selector1-maisprach-ch._domainkey.gemeindemaisprachch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.maisprach.ch CNAME → selector2-maisprach-ch._domainkey.gemeindemaisprachch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "maisprach.ch"
+ ],
+ "guess":[
+ "maisprach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2854":{
"bfs":"2854",
"name":"Nusshof",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"nusshof.ch",
"mx":[
"nusshof-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nusshof-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.nusshof.ch CNAME → selector1-nusshof-ch._domainkey.gemeindenusshofch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.nusshof.ch CNAME → selector2-nusshof-ch._domainkey.gemeindenusshofch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "nusshof.ch"
+ ],
+ "guess":[
+ "nusshof.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2855":{
"bfs":"2855",
"name":"Oltingen",
- "canton":"",
- "domain":"oltingen.ch",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"verbund-schafmatt.ch",
"mx":[
- "oltingen-ch.mail.protection.outlook.com"
+ "verbundschafmatt-ch01i.mail.protection.outlook.com"
],
- "spf":"v=spf1 a mx ip4:109.164.206.143 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:109.164.206.143 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "verbund-schafmatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2856":{
"bfs":"2856",
"name":"Ormalingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"ormalingen.ch",
"mx":[
"ormalingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ormalingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ormalingen.ch CNAME → selector1-ormalingen-ch._domainkey.gemeindeormalingench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ormalingen.ch CNAME → selector2-ormalingen-ch._domainkey.gemeindeormalingench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gelterkinden.ch",
+ "ormalingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ormalingen.ch"
+ ],
+ "guess":[
+ "ormalingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2857":{
"bfs":"2857",
- "name":"Rickenbach",
- "canton":"",
+ "name":"Rickenbach (BL)",
+ "canton":"Kanton Basel-Landschaft",
"domain":"rickenbach-bl.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 a mx ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:195.48.58.75 include:egeko.ch include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 a mx ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:195.48.58.75 include:egeko.ch include:rzmail.hi-ag.ch -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rickenbach-bl.ch",
+ "rickenbach-bl.org"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rickenbach-bl.ch"
+ ],
+ "guess":[
+ "rickenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2858":{
"bfs":"2858",
"name":"Rothenfluh",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"rothenfluh.ch",
"mx":[
"rothenfluh-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:195.48.58.75 include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:195.48.58.75 include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rothenfluh-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rothenfluh.ch CNAME → selector1-rothenfluh-ch._domainkey.gemeinderothenfluhch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rothenfluh.ch CNAME → selector2-rothenfluh-ch._domainkey.gemeinderothenfluhch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rothenfluh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rothenfluh.ch"
+ ],
+ "guess":[
+ "rothenfluh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2859":{
"bfs":"2859",
"name":"Rümlingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"ruemlingen.ch",
"mx":[
"mail.ruemlingen.ch"
],
"spf":"v=spf1 a mx +include:spf1.egeko.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx +include:spf1.egeko.ch ~all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 9044
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruemlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruemlingen.ch"
+ ],
+ "guess":[
+ "ruemlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2860":{
"bfs":"2860",
"name":"Rünenberg",
- "canton":"",
- "domain":"ruenenberg.ch",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"verbund-schafmatt.ch",
"mx":[
- "inbound-smtp.eu-west-1.amazonaws.com"
+ "verbundschafmatt-ch01i.mail.protection.outlook.com"
],
- "spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all",
- "provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ]
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "verbund-schafmatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2861":{
"bfs":"2861",
"name":"Sissach",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"sissach.ch",
"mx":[
"mail.format-ag.ch",
@@ -17180,198 +60263,921 @@
],
"spf":"v=spf1 mx a:mail.ostendis.ch include:_spf.talus.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mail.ostendis.ch include:_spf.talus.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sissach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sissach.ch"
+ ],
+ "guess":[
+ "sissach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2862":{
"bfs":"2862",
"name":"Tecknau",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"tecknau.ch",
"mx":[
"tecknau-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 mx a ip4:193.135.56.22 include:smtp.backslash.ch include:spf.protection.outlook.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:193.135.56.22 include:smtp.backslash.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.135.56.0/24 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 mx a ip4:193.135.56.22 include:smtp.backslash.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tecknau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tecknau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tecknau.ch"
+ ],
+ "guess":[
+ "tecknau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2863":{
"bfs":"2863",
"name":"Tenniken",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"tenniken.ch",
"mx":[
"tenniken-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tenniken-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.tenniken.ch CNAME → selector1-tenniken-ch._domainkey.gemeindetennikench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.tenniken.ch CNAME → selector2-tenniken-ch._domainkey.gemeindetennikench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tenniken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tenniken.ch"
+ ],
+ "guess":[
+ "tenniken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2864":{
"bfs":"2864",
"name":"Thürnen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"thuernen.ch",
"mx":[
"thuernen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX thuernen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.thuernen.ch CNAME → selector1-thuernen-ch._domainkey.thuernen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.thuernen.ch CNAME → selector2-thuernen-ch._domainkey.thuernen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thuernen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thuernen.ch"
+ ],
+ "guess":[
+ "thuernen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2865":{
"bfs":"2865",
"name":"Wenslingen",
- "canton":"",
- "domain":"wenslingen.ch",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"verbund-schafmatt.ch",
"mx":[
- "wenslingen-ch.mail.protection.outlook.com"
+ "verbundschafmatt-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "verbund-schafmatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2866":{
"bfs":"2866",
"name":"Wintersingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"wintersingen.ch",
"mx":[
"wintersingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wintersingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wintersingen.ch CNAME → selector1-wintersingen-ch._domainkey.gemeindewintersingench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wintersingen.ch CNAME → selector2-wintersingen-ch._domainkey.gemeindewintersingench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bl.ch",
+ "wintersingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wintersingen.ch"
+ ],
+ "guess":[
+ "wintersingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2867":{
"bfs":"2867",
"name":"Wittinsburg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"wittinsburg.ch",
"mx":[
"wittinsburg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wittinsburg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wittinsburg.ch"
+ ],
+ "guess":[
+ "wittinsburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2868":{
"bfs":"2868",
"name":"Zeglingen",
- "canton":"",
- "domain":"zeglingen.ch",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"verbund-schafmatt.ch",
"mx":[
- "inbound-smtp.eu-west-1.amazonaws.com"
- ],
- "spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all",
- "provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
+ "verbundschafmatt-ch01i.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "verbund-schafmatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2869":{
"bfs":"2869",
"name":"Zunzgen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"zunzgen.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 ip4:193.33.128.160 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +ip4:62.202.27.236 +ip4:162.23.37.176 +ip4:162.23.37.177 +ip4:162.23.97.167 +ip4:162.23.97.166 +include:_netblocks1.admin.ch +include:_netblocks3.admin.ch +include:_netblocks4.admin.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 ip4:193.33.128.160 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +ip4:62.202.27.236 +ip4:162.23.37.176 +ip4:162.23.37.177 +ip4:162.23.97.167 +ip4:162.23.97.166 +include:_netblocks1.admin.ch +include:_netblocks3.admin.ch +include:_netblocks4.admin.ch -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.zunzgen.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zunzgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zunzgen.ch"
+ ],
+ "guess":[
+ "zunzgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2881":{
"bfs":"2881",
"name":"Arboldswil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"arboldswil.ch",
"mx":[
"arboldswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:194.150.248.121 include:_spf.tophost.ch include:relay.mailchannels.net mx a ip4:194.150.248.30 ip4:194.150.248.92 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.150.248.121 include:_spf.tophost.ch include:relay.mailchannels.net mx a ip4:194.150.248.30 ip4:194.150.248.92 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX arboldswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.arboldswil.ch CNAME → selector1-arboldswil-ch._domainkey.gemeindearboldswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.arboldswil.ch CNAME → selector2-arboldswil-ch._domainkey.gemeindearboldswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "arboldswil.ch"
+ ],
+ "guess":[
+ "arboldswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2882":{
"bfs":"2882",
"name":"Bennwil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"bennwil.ch",
"mx":[
"bennwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bennwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bennwil.ch CNAME → selector1-bennwil-ch._domainkey.gemeindebennwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bennwil.ch CNAME → selector2-bennwil-ch._domainkey.gemeindebennwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bennwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bennwil.ch"
+ ],
+ "guess":[
+ "bennwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2883":{
"bfs":"2883",
"name":"Bretzwil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"bretzwil.ch",
"mx":[
"mx01.tophost.ch",
@@ -17379,123 +61185,471 @@
],
"spf":"v=spf1 a mx ip4:193.33.128.146 include:_spf.tophost.ch include:relay.mailchannels.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:193.33.128.146 include:_spf.tophost.ch include:relay.mailchannels.net -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all",
- "mx_asns":[
- 35206
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bretzwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bretzwil.ch"
+ ],
+ "guess":[
+ "bretzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2884":{
"bfs":"2884",
"name":"Diegten",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"diegten.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "diegten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "diegten.ch"
+ ],
+ "guess":[
+ "diegten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2885":{
"bfs":"2885",
"name":"Eptingen",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"eptingen.ch",
"mx":[
"mail.eptingen.ch"
],
"spf":"v=spf1 ip4:149.126.4.35 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
"provider":"independent",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eptingen.ch"
+ ],
+ "guess":[
+ "eptingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2886":{
"bfs":"2886",
"name":"Hölstein",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"hoelstein.ch",
"mx":[
"hoelstein-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hoelstein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hoelstein.ch CNAME → selector1-hoelstein-ch._domainkey.gemeindehoelsteinch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hoelstein.ch CNAME → selector2-hoelstein-ch._domainkey.gemeindehoelsteinch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hoelstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hoelstein.ch"
+ ],
+ "guess":[
+ "hoelstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2887":{
"bfs":"2887",
"name":"Lampenberg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"lampenberg.ch",
"mx":[
"lampenberg.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 include:spf.tmes.trendmicro.com include:egeko.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.tmes.trendmicro.com include:egeko.ch -all v=spf1 ip4:18.208.22.64/26 ip4:18.208.22.128/25 ip4:18.185.115.128/26 ip4:18.185.115.0/25 ip4:13.238.202.0/25 ip4:13.238.202.128/26 ip4:18.176.203.128/25 ip4:13.213.174.128/25 ip4:18.177.156.0/25 ip4:13.213.220.0/25 include:spfb.tmes.trendmicro.com ~all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:107.22.223.18 ip4:52.70.252.86 ip4:35.156.245.132 ip4:18.156.0.20 ip4:3.72.196.143 ip4:54.146.4.63 ip4:54.174.82.86 ip6:2600:1f18:42fe:5c00::/60 ip6:2a05:d014:10e:d900::/60 ip6:2406:da1c:1ef6:1c00::/60 include:spfc.tmes.trendmicro.com ~all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:18.188.9.192/26 ip4:18.188.239.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:15.168.56.0/25 ip4:15.168.49.64/26 ip4:15.168.56.128/26 ip4:18.97.0.160/27 ip4:18.96.32.128/27 ip6:2406:da14:194d:a200::/60 ip6:2406:da18:4ed:be00::/60 ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ }
+ ],
"gateway":"trendmicro",
- "mx_asns":[
- 16509
- ]
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lampenberg.ch"
+ ],
+ "guess":[
+ "lampenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2888":{
"bfs":"2888",
"name":"Langenbruck",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"langenbruck.ch",
"mx":[
"langenbruck-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:149.126.4.36 +a +mx +ip4:195.48.58.75 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:149.126.4.36 +a +mx +ip4:195.48.58.75 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX langenbruck-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.langenbruck.ch CNAME → selector1-langenbruck-ch._domainkey.gemeindelangenbruckch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.langenbruck.ch CNAME → selector2-langenbruck-ch._domainkey.gemeindelangenbruckch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "langenbruck.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "langenbruck.ch"
+ ],
+ "guess":[
+ "langenbruck.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2889":{
"bfs":"2889",
"name":"Lauwil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"lauwil.ch",
"mx":[
"lauwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:194.150.248.81 include:_spf.tophost.ch include:relay.mailchannels.net +mx +a +ip4:194.150.248.139 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.150.248.81 include:_spf.tophost.ch include:relay.mailchannels.net +mx +a +ip4:194.150.248.139 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lauwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nvrl.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lauwil.ch"
+ ],
+ "guess":[
+ "lauwil.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2890":{
"bfs":"2890",
"name":"Liedertswil",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"liedertswil.ch",
"mx":[
"mx01.servicehoster.ch",
@@ -17503,72 +61657,242 @@
],
"spf":"v=spf1 include:servicehoster.ch a mx ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:servicehoster.ch a mx ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 1836
- ],
- "autodiscover":{
- "autodiscover_cname":"redirect-autodiscover.cloudpit.io"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "liedertswil.ch"
+ ],
+ "guess":[
+ "liedertswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2891":{
"bfs":"2891",
"name":"Niederdorf",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"niederdorf.ch",
"mx":[
"niederdorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf.vtx.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf.vtx.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:194.38.175.0/24 ip4:194.38.166.0/27 ip4:212.40.2.0/25 ip4:212.109.85.192/27 ip4:212.147.10.0/26 ip4:212.147.62.64/26 ip4:212.147.62.128/27 ip4:212.147.99.24/29 ip4:194.148.30.0/24 ip4:195.15.4.240/28 include:_spf-24x.romandie.hosting -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 a:catcher-241.romandie.hosting a:catcher-242.romandie.hosting ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niederdorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederdorf.ch"
+ ],
+ "guess":[
+ "niederdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2892":{
"bfs":"2892",
- "name":"Oberdorf",
- "canton":"",
- "domain":"oberdorf.ch",
+ "name":"Oberdorf (BL)",
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"bl.ch",
"mx":[
- "oberdorf-ch.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 ip4:193.47.168.33 ip4:178.209.55.12 ip4:93.187.192.135 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf.umantis.com include:spf.appmail.swisscom.com include:spf.mail.webland.ch include:spf.mail.hostpoint.ch include:spf.sendinblue.com -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bl.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2893":{
"bfs":"2893",
"name":"Reigoldswil",
- "canton":"",
- "domain":"reigoldswil.ch",
- "mx":[
- "mx01.tophost.ch",
- "mx02.tophost.ch"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 35206
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "canton":"Kanton Basel-Landschaft",
+ "domain":"gde-reigoldswil.ch",
+ "mx":[
+ "gdereigoldswil-ch0i.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 mx ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gdereigoldswil-ch0i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gde-reigoldswil.ch CNAME → selector1-gdereigoldswil-ch0i._domainkey.gemeindereigoldswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gde-reigoldswil.ch CNAME → selector2-gdereigoldswil-ch0i._domainkey.gemeindereigoldswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gde-reigoldswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2894":{
"bfs":"2894",
"name":"Titterten",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"titterten.ch",
"mx":[
"mx01.tophost.ch",
@@ -17576,18 +61900,34 @@
],
"spf":"v=spf1 ip4:194.150.248.81 include:_spf.tophost.ch include:relay.mailchannels.net ip4:194.150.248.139 +mx +a ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:194.150.248.81 include:_spf.tophost.ch include:relay.mailchannels.net ip4:194.150.248.139 +mx +a ~all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all",
- "mx_asns":[
- 35206
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "titterten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "titterten.ch"
+ ],
+ "guess":[
+ "titterten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2895":{
"bfs":"2895",
"name":"Waldenburg",
- "canton":"",
+ "canton":"Kanton Basel-Landschaft",
"domain":"waldenburg.ch",
"mx":[
"mail.format-ag.ch",
@@ -17597,13 +61937,35 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.blk.ymc.swiss include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.blk.ymc.swiss include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "waldenburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "waldenburg.ch"
+ ],
+ "guess":[
+ "waldenburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2901":{
"bfs":"2901",
@@ -17615,14 +61977,44 @@
"miraculix2.ksd.ch"
],
"spf":"v=spf1 mx a mx:triwdata.ch/27 include:spf.umantis.com include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx a mx:triwdata.ch/27 include:spf.umantis.com include:spf.protection.outlook.com -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gaechlingen.ch",
+ "schule-gaechlingen.ch",
+ "srk-schaffhausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gaechlingen.ch"
+ ],
+ "guess":[
+ "gaechlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2903":{
"bfs":"2903",
@@ -17634,14 +62026,48 @@
"miraculix2.ksd.ch"
],
"spf":"v=spf1 ip4:195.246.245.125 ip4:195.246.245.126 include:spf.protection.outlook.com include:spf.mail.webland.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:195.246.245.125 ip4:195.246.245.126 include:spf.protection.outlook.com include:spf.mail.webland.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "loehningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "loehningen.ch"
+ ],
+ "guess":[
+ "loehningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2904":{
"bfs":"2904",
@@ -17654,12 +62080,35 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neunkirch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neunkirch.ch"
+ ],
+ "guess":[
+ "neunkirch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2914":{
"bfs":"2914",
@@ -17671,13 +62120,78 @@
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buettenhardt-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bruehlmannberatungen.ch",
+ "buettenhardt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buettenhardt.ch"
+ ],
+ "guess":[
+ "buettenhardt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2915":{
"bfs":"2915",
@@ -17690,17 +62204,26 @@
],
"spf":"v=spf1 ip4:193.135.56.6 redirect=spf.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "doerflingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "doerflingen.ch"
+ ],
+ "guess":[
+ "doerflingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2917":{
"bfs":"2917",
- "name":"Lohn SH",
+ "name":"Lohn (SH)",
"canton":"Kanton Schaffhausen",
"domain":"lohn.ch",
"mx":[
@@ -17708,17 +62231,24 @@
],
"spf":"v=spf1 include:spf.protection.cyon.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lohn.ch"
+ ],
+ "guess":[
+ "lohn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2919":{
"bfs":"2919",
- "name":"Stetten",
+ "name":"Stetten (SH)",
"canton":"Kanton Schaffhausen",
"domain":"stetten.ch",
"mx":[
@@ -17726,19 +62256,47 @@
"miraculix2.ksd.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:178.250.24.196 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com ip4:178.250.24.196 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stetten.ch"
+ ],
+ "guess":[
+ "stetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2920":{
"bfs":"2920",
"name":"Thayngen",
- "canton":"",
+ "canton":"Kanton Schaffhausen",
"domain":"thayngen.ch",
"mx":[
"mx1.mtfcloud.ch",
@@ -17746,50 +62304,129 @@
],
"spf":"v=spf1 ip4:195.226.6.102 include:spf.mtfweb.ch include:_spf.sui-inter.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:195.226.6.102 include:spf.mtfweb.ch include:_spf.sui-inter.net -all v=spf1 a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 20988
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.thayngen.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sh.ch",
+ "thayngen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thayngen.ch"
+ ],
+ "guess":[
+ "thayngen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2931":{
"bfs":"2931",
- "name":"Bargen",
- "canton":"",
+ "name":"Bargen (SH)",
+ "canton":"Kanton Schaffhausen",
"domain":"bargen.ch",
"mx":[
"mx.bargen.ch"
],
"spf":"v=spf1 mx ip4:178.250.24.196 include:spf.protection.cyon.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:178.250.24.196 include:spf.protection.cyon.net -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bargen.ch"
+ ],
+ "guess":[
+ "bargen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2932":{
"bfs":"2932",
"name":"Beringen",
- "canton":"",
+ "canton":"Kanton Schaffhausen",
"domain":"beringen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf.mandrillapp.com include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf.mandrillapp.com include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.beringen.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "beringen.ch"
+ ],
+ "guess":[
+ "beringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2933":{
"bfs":"2933",
@@ -17801,13 +62438,89 @@
],
"spf":"v=spf1 ip4:46.245.188.35 ip4:193.135.58.35 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.245.188.35 ip4:193.135.58.35 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buchberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buchberg.ch CNAME → selector1-buchberg-ch._domainkey.buchbergsh.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buchberg.ch CNAME → selector2-buchberg-ch._domainkey.buchbergsh.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchberg.ch"
+ ],
+ "guess":[
+ "buchberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2936":{
"bfs":"2936",
@@ -17819,19 +62532,50 @@
"miraculix2.ksd.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "merishausen.ch",
+ "schule-merishausen.ch",
+ "sh.ch",
+ "tannerholz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "merishausen.ch"
+ ],
+ "guess":[
+ "merishausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2937":{
"bfs":"2937",
"name":"Neuhausen am Rheinfall",
- "canton":"",
+ "canton":"Kanton Schaffhausen",
"domain":"neuhausen.ch",
"mx":[
"miraculix1.ksd.ch",
@@ -17839,12 +62583,33 @@
],
"spf":"v=spf1 mx mx:hin.ch -all",
"provider":"independent",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neuhausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neuhausen.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"2938":{
"bfs":"2938",
@@ -17856,34 +62621,92 @@
"miraculix2.ksd.ch"
],
"spf":"v=spf1 mx ip4:178.250.24.196 ip4:159.144.81.1 a:mail.codx.ch include:spf.umantis.com include:spf.privasphere.com ip4:212.80.96.0/21 include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:178.250.24.196 ip4:159.144.81.1 a:mail.codx.ch include:spf.umantis.com include:spf.privasphere.com ip4:212.80.96.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "axa.ch",
+ "buchberg.ch",
+ "forst-rafzerfeld.ch",
+ "hallau.ch",
+ "ruedlingen.ch",
+ "sh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruedlingen.ch"
+ ],
+ "guess":[
+ "ruedlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2939":{
"bfs":"2939",
"name":"Schaffhausen",
"canton":"Kanton Schaffhausen",
- "domain":"stadt-schaffhausen.ch",
+ "domain":"stsh.ch",
"mx":[
"miraculix1.ksd.ch",
"miraculix2.ksd.ch"
],
- "spf":"v=spf1 mx -all",
- "provider":"independent",
- "mx_asns":[
- 196651
- ]
+ "spf":"v=spf1 mx include:_spf.mailersend.net ip4:178.250.24.196 mx:hin.ch include:_spf.taywa.ch include:spf.umantis.com include:spf.protection.outlook.com a:mx1.mtfweb.ch a:mx2.mtfweb.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "stsh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2951":{
"bfs":"2951",
"name":"Beggingen",
- "canton":"",
+ "canton":"Kanton Schaffhausen",
"domain":"beggingen.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -17891,13 +62714,41 @@
],
"spf":"v=spf1 include:spf1.egeko.ch redirect=spf.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf1.egeko.ch redirect=spf.mail.hostpoint.ch v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "beggingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "beggingen.ch"
+ ],
+ "guess":[
+ "beggingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2952":{
"bfs":"2952",
@@ -17911,47 +62762,118 @@
],
"spf":"v=spf1 include:spf.mtfcloud.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mtfcloud.ch -all v=spf1 a -all",
- "mx_asns":[
- 20988
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.mtfcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schleitheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schleitheim.ch"
+ ],
+ "guess":[
+ "schleitheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2953":{
"bfs":"2953",
"name":"Siblingen",
- "canton":"",
+ "canton":"Kanton Schaffhausen",
"domain":"siblingen.ch",
"mx":[
"miraculix1.ksd.ch",
"miraculix2.ksd.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 196651
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.sh.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schulesiblingen.ch",
+ "siblingen.ch",
+ "spitex-klettgau-randen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "siblingen.ch"
+ ],
+ "guess":[
+ "siblingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2961":{
"bfs":"2961",
- "name":"Buch",
- "canton":"",
+ "name":"Buch (SH)",
+ "canton":"Kanton Schaffhausen",
"domain":"buch-sh.ch",
"mx":[
"mail.buch-sh.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buch-sh.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buch-sh.ch"
+ ],
+ "guess":[
+ "buch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2962":{
"bfs":"2962",
@@ -17963,10 +62885,29 @@
],
"spf":"v=spf1 +include:_spf.sui-inter.net +include:spf1.egeko.ch +a +mx -all",
"provider":"independent",
- "spf_resolved":"v=spf1 +include:_spf.sui-inter.net +include:spf1.egeko.ch +a +mx -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemishofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hemishofen.ch"
+ ],
+ "guess":[
+ "hemishofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2963":{
"bfs":"2963",
@@ -17978,13 +62919,89 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ramsen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ramsen.ch CNAME → selector1-ramsen-ch._domainkey.gemeinderamsen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ramsen.ch CNAME → selector2-ramsen-ch._domainkey.gemeinderamsen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ramsen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ramsen.ch"
+ ],
+ "guess":[
+ "ramsen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2964":{
"bfs":"2964",
@@ -17996,13 +63013,82 @@
],
"spf":"v=spf1 include:spf.mailjet.com include:_spf.rzobt.ch ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:193.135.56.6/32 ip4:46.231.200.190/32 ip4:46.231.200.191/32 include:spf.protection.outlook.com mx include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.mailjet.com include:_spf.rzobt.ch ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:193.135.56.6/32 ip4:46.231.200.190/32 ip4:46.231.200.191/32 include:spf.protection.outlook.com mx include:spf.abacuscity.ch -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX steinamrhein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "steinamrhein.ch"
+ ],
+ "guess":[
+ "stein-am-rhein.ch",
+ "steinamrhein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2971":{
"bfs":"2971",
@@ -18014,13 +63100,78 @@
],
"spf":"v=spf1 mx include:_spf.rzobt.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.rzobt.ch include:spf.protection.outlook.com -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hallau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hallau.ch",
+ "ksd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hallau.ch"
+ ],
+ "guess":[
+ "hallau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2972":{
"bfs":"2972",
@@ -18032,28 +63183,113 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberhallau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ksd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberhallau.ch"
+ ],
+ "guess":[
+ "oberhallau.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"2973":{
"bfs":"2973",
"name":"Trasadingen",
- "canton":"",
- "domain":"trasadingen.ch",
+ "canton":"Kanton Schaffhausen",
+ "domain":"ktsh.ch",
"mx":[
- "mail.trasadingen.ch"
+ "miraculix1.ksd.ch",
+ "miraculix2.ksd.ch"
],
- "spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "spf":"v=spf1 mx ip4:178.250.24.196 a:carmx01.bedag.ch a:mail.codx.ch include:spf.umantis.com include:spf.abxsec.com include:spf.privasphere.com mx:mtfweb.ch include:_spf.senders.scnem.com include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ktsh.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"2974":{
"bfs":"2974",
@@ -18065,56 +63301,148 @@
"miraculix2.ksd.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 196651
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "wilchingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3001":{
"bfs":"3001",
"name":"Herisau",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"herisau.ch",
+ "domain":"herisau.ar.ch",
"mx":[
- "mail2.i-web.ch",
- "mail3.i-web.ch"
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "spf":"v=spf1 include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.i-web.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 3303
+ "spf":"v=spf1 include:_spf.ari-ag.ch include:_spf.i-web.ch ip4:212.4.70.139 -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "herisau.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herisau.ch"
+ ],
+ "guess":[
+ "herisau.ar.ch",
+ "herisau.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3002":{
"bfs":"3002",
"name":"Hundwil",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"hundwil.ch",
+ "domain":"hundwil.ar.ch",
"mx":[
"dmzfml0001.ari-ag.ch",
"dmzfml0002.ari-ag.ch"
],
"spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hundwil.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hundwil.ch"
+ ],
+ "guess":[
+ "hundwil.ar.ch",
+ "hundwil.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3003":{
"bfs":"3003",
"name":"Schönengrund",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"schoenengrund.ch",
+ "domain":"schoenengrund.ar.ch",
"mx":[
- "mail.messaging.ch"
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "spf":"",
+ "spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "mx_asns":[
- 1836
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoenengrund.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoenengrund.ch"
+ ],
+ "guess":[
+ "schoenengrund.ar.ch",
+ "schoenengrund.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3004":{
@@ -18128,106 +63456,193 @@
],
"spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ar.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwellbrunn.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "schwellbrunn.ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3005":{
"bfs":"3005",
- "name":"Stein",
+ "name":"Stein (AR)",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"gemeinde-stein.ch",
+ "domain":"stein.ar.ch",
"mx":[
- "gemeindestein-ch02b.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch ~all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 include:_spf.ari-ag.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stein.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "gemeinde-stein.ch",
+ "stein.ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3006":{
"bfs":"3006",
"name":"Urnäsch",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"urnaesch.ch",
+ "domain":"ar.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 redirect=spf.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "spf":"v=spf1 include:_spf.ari-ag.ch a:ar03.snowflakehosting.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3007":{
"bfs":"3007",
"name":"Waldstatt",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"waldstatt.ch",
+ "domain":"waldstatt.ar.ch",
"mx":[
- "dmzfml0001-swi.ari-ag.ch",
"dmzfml0001.ari-ag.ch",
- "dmzfml0002-swi.ari-ag.ch",
"dmzfml0002.ari-ag.ch"
],
- "spf":"v=spf1 ip4:193.135.56.6 include:_spf.ari-ag.ch -all",
+ "spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "waldstatt.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "waldstatt.ch"
+ ],
+ "guess":[
+ "waldstatt.ar.ch",
+ "waldstatt.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3021":{
"bfs":"3021",
"name":"Bühler",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"buehlerar.ch",
+ "domain":"buehler.ar.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 redirect=spf.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "spf":"v=spf1 include:_spf.ari-ag.ch ip4:80.74.151.156 -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buehler.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buehlerar.ch"
+ ],
+ "guess":[
+ "buehler.ar.ch",
+ "buehler.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"3022":{
"bfs":"3022",
"name":"Gais",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"gais.ch",
+ "domain":"ar.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 ip4:217.26.58.163 redirect=spf.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:217.26.58.163 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "spf":"v=spf1 include:_spf.ari-ag.ch a:ar03.snowflakehosting.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3023":{
"bfs":"3023",
@@ -18240,76 +63655,174 @@
],
"spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ar.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "speicher.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "speicher.ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3024":{
"bfs":"3024",
- "name":"Teufen",
+ "name":"Teufen (AR)",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"teufen.ch",
+ "domain":"teufen.ar.ch",
"mx":[
- "smtp.backslash.ch"
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "spf":"",
+ "spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 207143
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "teufen.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "teufen.ch"
+ ],
+ "guess":[
+ "teufen.ar.ch",
+ "teufen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3025":{
"bfs":"3025",
"name":"Trogen",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"trogen.ch",
+ "domain":"trogen.ar.ch",
"mx":[
- "smtp.backslash.ch"
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "spf":"v=spf1 ip4:193.135.56.0/24 -all",
+ "spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "mx_asns":[
- 207143
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trogen.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trogen.ch"
+ ],
+ "guess":[
+ "trogen.ar.ch",
+ "trogen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3031":{
"bfs":"3031",
- "name":"Grub",
+ "name":"Grub (AR)",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"grub.ch",
+ "domain":"grub.ar.ch",
"mx":[
"dmzfml0001.ari-ag.ch",
"dmzfml0002.ari-ag.ch"
],
- "spf":"v=spf1 ip4:193.135.56.6 ip4:146.185.84.21 ip4:194.209.60.7 ip4:146.185.84.7 include:_spf.ari-ag.ch -all",
+ "spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 ip4:146.185.84.21 ip4:194.209.60.7 ip4:146.185.84.7 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grub.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "grub.ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3032":{
"bfs":"3032",
"name":"Heiden",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"heiden.ch",
+ "domain":"heiden.ar.ch",
"mx":[
- "mx01.servicehoster.ch",
- "mx02.servicehoster.ch"
- ],
- "spf":"v=spf1 include:servicehoster.ch a mx ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:servicehoster.ch a mx ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 1836
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.cloudpit.io"
- }
+ "spf":"v=spf1 include:_spf.ari-ag.ch include:_spf.i-web.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "heiden.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "heiden.ch"
+ ],
+ "guess":[
+ "heiden.ar.ch",
+ "heiden.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"3033":{
"bfs":"3033",
@@ -18324,27 +63837,65 @@
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 211452
- ]
+ "category":"swiss-based",
+ "classification_confidence":60.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "lutzenberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lutzenberg.ch"
+ ],
+ "guess":[
+ "lutzenberg.ar.ch",
+ "lutzenberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3034":{
"bfs":"3034",
"name":"Rehetobel",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"rehetobel.ch",
+ "domain":"rehetobel.ar.ch",
"mx":[
- "smtp.backslash.ch"
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 207143
+ "spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.223 -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rehetobel.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rehetobel.ch"
+ ],
+ "guess":[
+ "rehetobel.ar.ch",
+ "rehetobel.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3035":{
"bfs":"3035",
- "name":"Reute",
+ "name":"Reute (AR)",
"canton":"Kanton Appenzell Ausserrhoden",
"domain":"reute.ar.ch",
"mx":[
@@ -18353,17 +63904,31 @@
],
"spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ar.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "reute.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "reute.ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3036":{
"bfs":"3036",
- "name":"Wald",
+ "name":"Wald (AR)",
"canton":"Kanton Appenzell Ausserrhoden",
"domain":"wald.ar.ch",
"mx":[
@@ -18372,27 +63937,68 @@
],
"spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ari-ag.ch -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ar.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wald.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wald.ar.ch"
+ ],
+ "guess":[
+ "gemeinde-wald.ch",
+ "wald.ar.ch",
+ "wald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3037":{
"bfs":"3037",
"name":"Walzenhausen",
"canton":"Kanton Appenzell Ausserrhoden",
- "domain":"walzenhausen.ch",
+ "domain":"walzenhausen.ar.ch",
"mx":[
- "mail.walzenhausen.ch"
+ "dmzfml0001.ari-ag.ch",
+ "dmzfml0002.ari-ag.ch"
],
- "spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all",
+ "spf":"v=spf1 include:_spf.ari-ag.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "walzenhausen.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walzenhausen.ch"
+ ],
+ "guess":[
+ "walzenhausen.ar.ch",
+ "walzenhausen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3038":{
@@ -18406,32 +64012,85 @@
],
"spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all v=spf1 include:_spf1.ari-ag.ch include:_spf2.ari-ag.ch -all v=spf1 ip4:193.5.177.16/28 ip6:2a07:291b:500:900::/64 -all v=spf1 ip4:195.65.10.12 include:spf2.privasphere.com ip4:194.209.204.50 include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.2.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 211452
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.ar.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wolfhalden.ar.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "wolfhalden.ar.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3101":{
"bfs":"3101",
"name":"Appenzell",
"canton":"Kanton Appenzell Innerrhoden",
- "domain":"appenzell.org",
+ "domain":"appenzell.ai.ch",
"mx":[
- "mx01.servicehoster.ch",
- "mx02.servicehoster.ch"
- ],
- "spf":"v=spf1 include:servicehoster.ch a mx ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:servicehoster.ch a mx ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 1836
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.cloudpit.io"
- }
+ "spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ip4:194.147.134.3 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "appenzell.ai.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "appenzell.org"
+ ],
+ "guess":[
+ "appenzell.ai.ch",
+ "appenzell.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"3102":{
"bfs":"3102",
@@ -18443,13 +64102,49 @@
"mg05.newday.ch"
],
"spf":"v=spf1 a a:mg02.newday.ch -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 15576
- ],
- "autodiscover":{
- "autodiscover_cname":"gonten.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 15576 is Swiss ISP: NTS"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gonten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gonten.ch"
+ ],
+ "guess":[
+ "gonten.ai.ch",
+ "gonten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3104":{
"bfs":"3104",
@@ -18461,51 +64156,136 @@
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "schlatt-haslen.ch"
+ ],
+ "guess":[
+ "schlatt-haslen.ai.ch",
+ "schlatt-haslen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3111":{
"bfs":"3111",
"name":"Oberegg",
"canton":"Kanton Appenzell Innerrhoden",
- "domain":"oberegg.ch",
+ "domain":"oberegg.ai.ch",
"mx":[
- "smtp.backslash.ch"
+ "ktvmx01.mail.admin.ch",
+ "ktvmx02.mail.admin.ch",
+ "ktvmx03.mail.admin.ch",
+ "ktvmx04.mail.admin.ch"
],
- "spf":"v=spf1 ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:193.135.56.0/24 ~all",
- "provider":"independent",
- "mx_asns":[
- 207143
+ "spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ip4:194.147.134.3 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberegg.ai.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberegg.ch"
+ ],
+ "guess":[
+ "oberegg.ai.ch",
+ "oberegg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3112":{
"bfs":"3112",
"name":"Schwende-Rüte",
"canton":"Kanton Appenzell Innerrhoden",
- "domain":"schwende-ruete.ch",
+ "domain":"schwende-ruete.ai.ch",
"mx":[
"ktvmx01.mail.admin.ch",
"ktvmx02.mail.admin.ch",
"ktvmx03.mail.admin.ch",
"ktvmx04.mail.admin.ch"
],
- "spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ~all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ~all v=spf1 ~all v=spf1 ~all v=spf1 ~all v=spf1 ip4:162.23.22.128/25 ip4:162.23.23.128/25 ip4:162.23.22.201 ip4:162.23.24.16/26 ip4:162.23.128.43 ip4:162.23.128.65 ~all",
- "mx_asns":[
- 33845
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.ai.ch"
- }
+ "spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ip4:159.100.252.16 ip4:194.147.134.3 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwende-ruete.ai.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwende-ruete.ch"
+ ],
+ "guess":[
+ "schwende-ruete.ai.ch",
+ "schwende-ruete.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"3201":{
"bfs":"3201",
"name":"Häggenschwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"haeggenschwil.ch",
"mx":[
"mta1.abxsec.com",
@@ -18513,19 +64293,29 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "haeggenschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haeggenschwil.ch"
+ ],
+ "guess":[
+ "haeggenschwil.ch",
+ "haeggenschwil.sg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3202":{
"bfs":"3202",
"name":"Muolen",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"muolen.ch",
"mx":[
"mta1.abxsec.com",
@@ -18533,79 +64323,275 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "muolen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muolen.ch"
+ ],
+ "guess":[
+ "muolen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3203":{
"bfs":"3203",
"name":"St. Gallen",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"stadt.sg.ch",
"mx":[
"stadt-sg-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:spf.abxsec.com include:ict-sicherheit.stadt.sg.ch include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud include:mailgun.org ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.abxsec.com include:ict-sicherheit.stadt.sg.ch include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud include:mailgun.org ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:194.56.189.220 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 include:_spf.mailgun.org include:_spf.eu.mailgun.org -all v=spf1 include:_spf1.mailgun.org include:_spf2.mailgun.org ~all v=spf1 ip4:141.193.32.0/23 ip4:159.135.140.80/29 ip4:159.135.132.128/25 ip4:161.38.204.0/22 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:143.55.236.0/22 ip4:198.244.60.0/22 ip4:204.220.160.0/21 ~all v=spf1 ip4:209.61.151.0/24 ip4:166.78.68.0/22 ip4:198.61.254.0/23 ip4:192.237.158.0/23 ip4:23.253.182.0/23 ip4:104.130.96.0/28 ip4:146.20.113.0/24 ip4:146.20.191.0/24 ip4:159.135.224.0/20 ip4:69.72.32.0/20 ~all v=spf1 ip4:104.130.122.0/23 ip4:146.20.112.0/26 ip4:161.38.192.0/20 ip4:143.55.224.0/21 ip4:143.55.232.0/22 ip4:159.112.240.0/20 ip4:198.244.48.0/20 ip4:204.220.168.0/21 ip4:204.220.176.0/20 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover SRV → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "stadt.sg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadt.sg.ch"
+ ],
+ "guess":[
+ "st-gallen.ch",
+ "stgallen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "website_mismatch"
+ ]
},
"3204":{
"bfs":"3204",
"name":"Wittenbach",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"wittenbach.ch",
"mx":[
"wittenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:146.185.79.58 include:spf.abxsec.com include:spf.protection.outlook.com include:abx-net.net +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:146.185.79.58 include:spf.abxsec.com include:spf.protection.outlook.com include:abx-net.net +mx +a -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx include:_spf.abxsec.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wittenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wittenbach.ch CNAME → selector1-wittenbach-ch._domainkey.gemeindewittenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wittenbach.ch CNAME → selector2-wittenbach-ch._domainkey.gemeindewittenbach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wittenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wittenbach.ch"
+ ],
+ "guess":[
+ "wittenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3211":{
"bfs":"3211",
- "name":"Berg",
- "canton":"",
+ "name":"Berg (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"bergsg.ch",
"mx":[
"bergsg-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:83.173.233.138 include:_spf.abxsec.com include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:83.173.233.138 include:_spf.abxsec.com include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "bergsg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bergsg.ch"
+ ],
+ "guess":[
+ "berg.ch",
+ "gemeinde-berg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3212":{
"bfs":"3212",
"name":"Eggersriet",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"eggersriet.ch",
"mx":[
"mta1.abxsec.com",
@@ -18613,19 +64599,35 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "eggersriet.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eggersriet.ch"
+ ],
+ "guess":[
+ "eggersriet.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3213":{
"bfs":"3213",
- "name":"Goldach SG",
- "canton":"",
+ "name":"Goldach",
+ "canton":"Kanton St. Gallen",
"domain":"goldach.ch",
"mx":[
"mta1.abxsec.com",
@@ -18633,39 +64635,135 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.abacuscity.ch include:spf1.refline.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.abacuscity.ch include:spf1.refline.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 mx:refline.ch ip4:212.71.124.231 ip4:212.71.124.232 include:spf.iway.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "goldach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "goldach.ch"
+ ],
+ "guess":[
+ "goldach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3214":{
"bfs":"3214",
"name":"Mörschwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"moerschwil.ch",
"mx":[
- "mta1.abxsec.com",
- "mta2.abxsec.com"
+ "moerschwil-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX moerschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "moerschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moerschwil.ch"
+ ],
+ "guess":[
+ "moerschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3215":{
"bfs":"3215",
"name":"Rorschach",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"rorschach.ch",
"mx":[
"mta1.abxsec.com",
@@ -18673,19 +64771,53 @@
],
"spf":"v=spf1 ip4:217.162.10.22 include:_spf.abxsec.com include:spf.protection.outlook.com include:agenturserver.de include:_spf.i-web.ch include:spf.postal.e9li.io ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:217.162.10.22 include:_spf.abxsec.com include:spf.protection.outlook.com include:agenturserver.de include:_spf.i-web.ch include:spf.postal.e9li.io ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:188.94.249.240/28 ip4:188.94.250.248/29 ip4:188.94.251.248/29 ip4:188.94.252.252/30 ip4:185.15.192.32/27 ip4:178.16.56.32/27 ip4:185.15.192.32/28 ip4:153.92.196.160/28 ip4:37.202.1.52/30 ip4:37.202.6.52/30 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:195.15.223.58 ip6:2001:1600:13:101::ac3 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "rorschach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rorschach.ch"
+ ],
+ "guess":[
+ "rorschach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3216":{
"bfs":"3216",
"name":"Rorschacherberg",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"rorschacherberg.ch",
"mx":[
"mta1.abxsec.com",
@@ -18693,20 +64825,65 @@
],
"spf":"v=spf1 mx ip4:217.162.10.22 include:_spf.abxsec.com include:_spf.i-web.ch include:spf.protection.outlook.com redirect=spf.mail.hostpoint.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:217.162.10.22 include:_spf.abxsec.com include:_spf.i-web.ch include:spf.protection.outlook.com redirect=spf.mail.hostpoint.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rorschacherberg.ch CNAME → selector1-rorschacherberg-ch._domainkey.rorschacherbergch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rorschacherberg.ch CNAME → selector2-rorschacherberg-ch._domainkey.rorschacherbergch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.rorschacherberg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "rorschacherberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rorschacherberg.ch"
+ ],
+ "guess":[
+ "rorschacherberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3217":{
"bfs":"3217",
- "name":"Steinach SG",
- "canton":"",
+ "name":"Steinach",
+ "canton":"Kanton St. Gallen",
"domain":"steinach.ch",
"mx":[
"mta1.abxsec.com",
@@ -18714,19 +64891,53 @@
],
"spf":"v=spf1 include:_spf.mlsend.com mx include:_spf.abxsec.com include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.mlsend.com mx include:_spf.abxsec.com include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 ip4:185.249.220.0/24 ip4:185.225.161.0/24 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "steinach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "steinach.ch"
+ ],
+ "guess":[
+ "steinach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3218":{
"bfs":"3218",
"name":"Tübach",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"tuebach.ch",
"mx":[
"mta1.abxsec.com",
@@ -18738,19 +64949,65 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.mlsend.com mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.mlsend.com mx include:_spf.abxsec.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.249.220.0/24 ip4:185.225.161.0/24 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.tuebach.ch CNAME → selector1-tuebach-ch._domainkey.gemeindetuebach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.tuebach.ch CNAME → selector2-tuebach-ch._domainkey.gemeindetuebach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "tuebach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tuebach.ch"
+ ],
+ "guess":[
+ "tuebach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3219":{
"bfs":"3219",
"name":"Untereggen",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"untereggen.ch",
"mx":[
"mta1.abxsec.com",
@@ -18758,19 +65015,35 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "untereggen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "untereggen.ch"
+ ],
+ "guess":[
+ "untereggen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3231":{
"bfs":"3231",
- "name":"Au",
- "canton":"",
+ "name":"Au (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"au.ch",
"mx":[
"mta1.abxsec.com",
@@ -18778,19 +65051,40 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "override":[
+ "au.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3232":{
"bfs":"3232",
"name":"Balgach",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"balgach.ch",
"mx":[
"mta1.abxsec.com",
@@ -18798,19 +65092,35 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "balgach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "balgach.ch"
+ ],
+ "guess":[
+ "balgach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3233":{
"bfs":"3233",
"name":"Berneck",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"berneck.ch",
"mx":[
"mta1.abxsec.com",
@@ -18818,20 +65128,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "berneck.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "berneck.ch"
+ ],
+ "guess":[
+ "berneck.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3234":{
"bfs":"3234",
"name":"Diepoldsau",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"diepoldsau.ch",
"mx":[
"mta1.abxsec.com",
@@ -18839,20 +65176,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.6 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.6 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "diepoldsau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "diepoldsau.ch"
+ ],
+ "guess":[
+ "diepoldsau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3235":{
"bfs":"3235",
"name":"Rheineck",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"rheineck.ch",
"mx":[
"mta1.abxsec.com",
@@ -18860,16 +65224,53 @@
],
"spf":"v=spf1 ip4:81.62.128.114 include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.128.114 include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "rheineck.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rheineck.ch"
+ ],
+ "guess":[
+ "rheineck.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3236":{
"bfs":"3236",
"name":"St. Margrethen",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"stmargrethen.ch",
"mx":[
"mta1.abxsec.com",
@@ -18877,19 +65278,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "stmargrethen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stmargrethen.ch"
+ ],
+ "guess":[
+ "stmargrethen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3237":{
"bfs":"3237",
"name":"Thal",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"thal.ch",
"mx":[
"mta1.abxsec.com",
@@ -18897,19 +65326,63 @@
],
"spf":"v=spf1 ip4:146.185.76.0/29 ip4:213.167.225.80 ip4:157.173.127.37 a:mail01.axc.biz include:_spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:146.185.76.0/29 ip4:213.167.225.80 ip4:157.173.127.37 a:mail01.axc.biz include:_spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.thal.ch CNAME → selector1-thal-ch._domainkey.thalch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.thal.ch CNAME → selector2-thal-ch._domainkey.thalch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "thal.ch"
+ ],
+ "guess":[
+ "thal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3238":{
"bfs":"3238",
"name":"Widnau",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"widnau.ch",
"mx":[
"mta1.abxsec.com",
@@ -18917,19 +65390,53 @@
],
"spf":"v=spf1 ip4:194.11.218.40 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.i-web.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.11.218.40 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.i-web.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "widnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "widnau.ch"
+ ],
+ "guess":[
+ "widnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3251":{
"bfs":"3251",
"name":"Altstätten",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"altstaetten.ch",
"mx":[
"mta1.abxsec.com",
@@ -18937,16 +65444,41 @@
],
"spf":"v=spf1 mx ip4:217.67.134.194 include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:217.67.134.194 include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "altstaetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altstaetten.ch"
+ ],
+ "guess":[
+ "altstaetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3252":{
"bfs":"3252",
- "name":"Eichberg SG",
- "canton":"",
+ "name":"Eichberg",
+ "canton":"Kanton St. Gallen",
"domain":"eichberg.ch",
"mx":[
"mta1.abxsec.com",
@@ -18954,19 +65486,41 @@
],
"spf":"v=spf1 mx include:_spf.ch-dns.net include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.ch-dns.net include:_spf.abxsec.com ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "eichberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eichberg.ch"
+ ],
+ "guess":[
+ "eichberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3253":{
"bfs":"3253",
- "name":"Marbach",
- "canton":"",
+ "name":"Marbach (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"marbach.ch",
"mx":[
"mta1.abxsec.com",
@@ -18974,19 +65528,28 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "marbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "marbach.ch"
+ ],
+ "guess":[
+ "marbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3254":{
"bfs":"3254",
- "name":"Oberriet",
- "canton":"",
+ "name":"Oberriet (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"oberriet.ch",
"mx":[
"mta1.abxsec.com",
@@ -18994,20 +65557,41 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "oberriet.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberriet.ch"
+ ],
+ "guess":[
+ "oberriet.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3255":{
"bfs":"3255",
"name":"Rebstein",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"rebstein.ch",
"mx":[
"mta1.abxsec.com",
@@ -19015,19 +65599,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "rebstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rebstein.ch"
+ ],
+ "guess":[
+ "rebstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3256":{
"bfs":"3256",
- "name":"Rüthi",
- "canton":"",
+ "name":"Rüthi (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"ruethi.ch",
"mx":[
"mta1.abxsec.com",
@@ -19035,19 +65647,45 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ruethi.ch"
+ ],
+ "guess":[
+ "ruethi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3271":{
"bfs":"3271",
- "name":"Buchs",
- "canton":"",
+ "name":"Buchs (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"buchs-sg.ch",
"mx":[
"mta1.abxsec.com",
@@ -19055,51 +65693,193 @@
],
"spf":"v=spf1 a mx include:_spf.abxsec.com include:spf.postal.e9li.io include:spf.protection.outlook.com ip4:146.185.0.80/29 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:_spf.abxsec.com include:spf.postal.e9li.io include:spf.protection.outlook.com ip4:146.185.0.80/29 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.15.223.58 ip6:2001:1600:13:101::ac3 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buchs-sg.ch CNAME → selector1-buchssg-ch01c._domainkey.buchssg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buchs-sg.ch CNAME → selector2-buchssg-ch01c._domainkey.buchssg.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "buchs-sg.ch",
+ "schmid-fehr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchs-sg.ch"
+ ],
+ "guess":[
+ "buchs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3272":{
"bfs":"3272",
"name":"Gams",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"gams.ch",
"mx":[
"gams-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.abxsec.com ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.abxsec.com ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gams-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gams.ch CNAME → selector1-gams-ch._domainkey.gamsgemeinde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gams.ch CNAME → selector2-gams-ch._domainkey.gamsgemeinde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gams.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gams.ch"
+ ],
+ "guess":[
+ "gams.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3273":{
"bfs":"3273",
"name":"Grabs",
- "canton":"",
- "domain":"grabs.ch",
+ "canton":"Kanton St. Gallen",
+ "domain":"grabs.sg.ch",
"mx":[
- "smtasg01.abxsec.com",
- "smtazh01.abxsec.com"
+ "mta1.abxsec.com",
+ "mta2.abxsec.com"
],
- "spf":"v=spf1 include:turbo-smtp.com include:_spf.i-web.ch ~all",
+ "spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:turbo-smtp.com include:_spf.i-web.ch ~all v=spf1 a mx ip4:199.187.172.0/22 ip4:199.244.72.0/22 ip4:185.228.36.0/22 ip4:78.46.210.192/27 ip4:5.83.159.0/24 ip4:89.144.43.0/24 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
+ "sources_detail":{
+ "scrape":[
+ "grabs.sg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grabs.ch"
+ ],
+ "guess":[
+ "grabs.ch",
+ "grabs.sg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3274":{
"bfs":"3274",
"name":"Sennwald",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"sennwald.ch",
"mx":[
"mta1.abxsec.com",
@@ -19107,19 +65887,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "sennwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sennwald.ch"
+ ],
+ "guess":[
+ "sennwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3275":{
"bfs":"3275",
- "name":"Sevelen SG",
- "canton":"",
+ "name":"Sevelen",
+ "canton":"Kanton St. Gallen",
"domain":"sevelen.ch",
"mx":[
"mta1.abxsec.com",
@@ -19127,19 +65941,59 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com a include:spf.crsend.com a:mail01.refline.ch a:mail02.refline.ch include:spf.protection.outlook.com include:mail.kidesia.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com a include:spf.crsend.com a:mail01.refline.ch a:mail02.refline.ch include:spf.protection.outlook.com include:mail.kidesia.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a mx ip4:185.46.57.237 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "sevelen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sevelen.ch"
+ ],
+ "guess":[
+ "sevelen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3276":{
"bfs":"3276",
"name":"Wartau",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"wartau.ch",
"mx":[
"mta1.abxsec.com",
@@ -19147,19 +66001,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "wartau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wartau.ch"
+ ],
+ "guess":[
+ "wartau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3291":{
"bfs":"3291",
"name":"Bad Ragaz",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"badragaz.ch",
"mx":[
"mta1.abxsec.com",
@@ -19167,19 +66055,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "badragaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "badragaz.ch"
+ ],
+ "guess":[
+ "badragaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3292":{
"bfs":"3292",
"name":"Flums",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"flums.ch",
"mx":[
"mta1.abxsec.com",
@@ -19187,19 +66109,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "flums.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flums.ch"
+ ],
+ "guess":[
+ "flums.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3293":{
"bfs":"3293",
"name":"Mels",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"mels.ch",
"mx":[
"mta1.abxsec.com",
@@ -19207,19 +66163,65 @@
],
"spf":"v=spf1 mx include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "mels.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mels.ch"
+ ],
+ "guess":[
+ "mels.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3294":{
"bfs":"3294",
"name":"Pfäfers",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"pfaefers.ch",
"mx":[
"mta1.abxsec.com",
@@ -19227,19 +66229,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "pfaefers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pfaefers.ch"
+ ],
+ "guess":[
+ "pfaefers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3295":{
"bfs":"3295",
"name":"Quarten",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"quarten.ch",
"mx":[
"mta1.abxsec.com",
@@ -19247,19 +66277,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "quarten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "quarten.ch"
+ ],
+ "guess":[
+ "quarten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3296":{
"bfs":"3296",
"name":"Sargans",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"sargans.ch",
"mx":[
"mta1.abxsec.com",
@@ -19267,19 +66331,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "sargans.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sargans.ch"
+ ],
+ "guess":[
+ "sargans.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3297":{
"bfs":"3297",
"name":"Vilters-Wangs",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"vilters-wangs.ch",
"mx":[
"mta1.abxsec.com",
@@ -19287,19 +66385,48 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "vilters-wangs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vilters-wangs.ch"
+ ],
+ "guess":[
+ "vilters-wangs.ch",
+ "vilterswangs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3298":{
"bfs":"3298",
"name":"Walenstadt",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"walenstadt.ch",
"mx":[
"mta1.abxsec.com",
@@ -19307,19 +66434,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "walenstadt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "walenstadt.ch"
+ ],
+ "guess":[
+ "walenstadt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3311":{
"bfs":"3311",
"name":"Amden",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"amden.ch",
"mx":[
"mta1.abxsec.com",
@@ -19327,39 +66488,96 @@
],
"spf":"v=spf1 mx include:spf.sendinblue.com include:spf.mailjet.com include:_spf.abxsec.com include:_spf.bexio.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.sendinblue.com include:spf.mailjet.com include:_spf.abxsec.com include:_spf.bexio.com ~all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:149.72.212.100 ip4:167.89.3.126 ip4:159.183.225.3 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "amden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "amden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3312":{
"bfs":"3312",
- "name":"Benken",
- "canton":"",
- "domain":"benken.ch",
+ "name":"Benken (SG)",
+ "canton":"Kanton St. Gallen",
+ "domain":"benken.sg.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
+ "mta1.abxsec.com",
+ "mta2.abxsec.com"
],
- "spf":"v=spf1 redirect=spf.mail.hostpoint.ch include:_spf.i-web.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch include:_spf.i-web.ch v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "spf":"v=spf1 mx include:_spf.abxsec.com ~all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "benken.sg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "benken.ch"
+ ],
+ "guess":[
+ "benken.ch",
+ "benken.sg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"3313":{
"bfs":"3313",
"name":"Kaltbrunn",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"kaltbrunn.ch",
"mx":[
"mta1.abxsec.com",
@@ -19367,19 +66585,45 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "kaltbrunn.ch"
+ ],
+ "guess":[
+ "kaltbrunn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3315":{
"bfs":"3315",
"name":"Schänis",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"schaenis.ch",
"mx":[
"mta1.abxsec.com",
@@ -19387,19 +66631,41 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "schaenis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schaenis.ch"
+ ],
+ "guess":[
+ "schaenis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3316":{
"bfs":"3316",
"name":"Weesen",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"weesen.ch",
"mx":[
"mta1.abxsec.com",
@@ -19407,19 +66673,28 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "weesen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "weesen.ch"
+ ],
+ "guess":[
+ "weesen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3338":{
"bfs":"3338",
"name":"Schmerikon",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"schmerikon.ch",
"mx":[
"mta1.abxsec.com",
@@ -19427,19 +66702,35 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "schmerikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schmerikon.ch"
+ ],
+ "guess":[
+ "schmerikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3339":{
"bfs":"3339",
"name":"Uznach",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"uznach.ch",
"mx":[
"mta1.abxsec.com",
@@ -19447,37 +66738,104 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ip4:193.135.56.6 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "uznach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "uznach.ch"
+ ],
+ "guess":[
+ "uznach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3340":{
"bfs":"3340",
"name":"Rapperswil-Jona",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"rapperswil-jona.ch",
"mx":[
"secmail.rapperswil-jona.ch"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:mail.rapperswil-jona.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:mail.rapperswil-jona.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.140.207.252 a:mail02.refline.ch a:mail01.refline.ch ip4:193.246.95.96/27 ip4:193.246.95.252 include:spf.abacuscity.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rapperswil-jona.ch CNAME → selector1-rapperswiljona-ch02e._domainkey.rjsgch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rapperswil-jona.ch CNAME → selector2-rapperswiljona-ch02e._domainkey.rjsgch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rapperswil-jona.ch"
+ ],
+ "guess":[
+ "rapperswil-jona.ch",
+ "stadt-rapperswil-jona.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3341":{
"bfs":"3341",
"name":"Gommiswald",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"gommiswald.ch",
"mx":[
"smtagb02.abxsec.com",
@@ -19487,19 +66845,72 @@
],
"spf":"v=spf1 mx a:www.gommiswald.ch a:mail2.schule.gommiswald.ch include:spf.protection.outlook.com include:spf.abxsec.com redirect=spf.mail.hostpoint.ch",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:www.gommiswald.ch a:mail2.schule.gommiswald.ch include:spf.protection.outlook.com include:spf.abxsec.com redirect=spf.mail.hostpoint.ch v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gommiswald.ch CNAME → selector1-gommiswald-ch._domainkey.gmdgommiswald.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gommiswald.ch CNAME → selector2-gommiswald-ch._domainkey.gmdgommiswald.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "gommiswald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gommiswald.ch"
+ ],
+ "guess":[
+ "gommiswald.ch",
+ "gommiswald.sg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3342":{
"bfs":"3342",
- "name":"Eschenbach",
- "canton":"",
+ "name":"Eschenbach (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"eschenbach.ch",
"mx":[
"mta1.abxsec.com",
@@ -19507,37 +66918,136 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "eschenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eschenbach.ch"
+ ],
+ "guess":[
+ "eschenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3352":{
"bfs":"3352",
"name":"Ebnat-Kappel",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"ebnat-kappel.ch",
"mx":[
"ebnatkappel-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 a:mail.wattwil.ch include:spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:mail.wattwil.ch include:spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ebnatkappel-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ebnat-kappel.ch CNAME → selector1-ebnatkappel-ch01c._domainkey.gemeindeebnatkappel.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ebnat-kappel.ch CNAME → selector2-ebnatkappel-ch01c._domainkey.gemeindeebnatkappel.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ebnat-kappel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ebnat-kappel.ch"
+ ],
+ "guess":[
+ "ebnat-kappel.ch",
+ "ebnatkappel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3359":{
"bfs":"3359",
"name":"Wildhaus-Alt St. Johann",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"wildhaus-altstjohann.ch",
"mx":[
"mta1.abxsec.com",
@@ -19545,19 +67055,33 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "wildhaus-altstjohann.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wildhaus-altstjohann.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3360":{
"bfs":"3360",
"name":"Nesslau",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"nesslau.ch",
"mx":[
"mta1.abxsec.com",
@@ -19565,19 +67089,53 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "nesslau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nesslau.ch"
+ ],
+ "guess":[
+ "nesslau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3374":{
"bfs":"3374",
"name":"Lichtensteig",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"lichtensteig.ch",
"mx":[
"mta1.abxsec.com",
@@ -19585,40 +67143,107 @@
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "lichtensteig.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lichtensteig.ch"
+ ],
+ "guess":[
+ "lichtensteig.ch",
+ "lichtensteig.sg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3379":{
"bfs":"3379",
"name":"Wattwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"wattwil.ch",
"mx":[
- "mta1.abxsec.com",
- "mta2.abxsec.com"
+ "wattwil-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx a include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"mail.wattwil.ch",
- "autodiscover_srv":"webmail.wattwil.ch"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "wattwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wattwil.ch"
+ ],
+ "guess":[
+ "wattwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3392":{
"bfs":"3392",
- "name":"Kirchberg",
- "canton":"",
+ "name":"Kirchberg (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"kirchberg.ch",
"mx":[
"mta1.abxsec.com",
@@ -19626,19 +67251,41 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "kirchberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kirchberg.ch"
+ ],
+ "guess":[
+ "kirchberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3393":{
"bfs":"3393",
"name":"Lütisburg",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"luetisburg.ch",
"mx":[
"mta1.abxsec.com",
@@ -19646,38 +67293,123 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "luetisburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luetisburg.ch"
+ ],
+ "guess":[
+ "luetisburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3394":{
"bfs":"3394",
"name":"Mosnang",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"mosnang.ch",
"mx":[
"mosnang-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.abxsec.com include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mosnang-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mosnang.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mosnang.ch"
+ ],
+ "guess":[
+ "mosnang.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3395":{
"bfs":"3395",
"name":"Bütschwil-Ganterschwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"buetschwil-ganterschwil.ch",
"mx":[
"smtasg01.abxsec.com",
@@ -19685,19 +67417,41 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.abxsec.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "buetschwil-ganterschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buetschwil-ganterschwil.ch"
+ ],
+ "guess":[
+ "buetschwil-ganterschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3396":{
"bfs":"3396",
"name":"Neckertal",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"neckertal.ch",
"mx":[
"mta1.abxsec.com",
@@ -19705,19 +67459,47 @@
],
"spf":"v=spf1 a mx include:_spf.abxsec.com include:_spf.sui-inter.net ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:_spf.abxsec.com include:_spf.sui-inter.net ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "neckertal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neckertal.ch"
+ ],
+ "guess":[
+ "neckertal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3401":{
"bfs":"3401",
"name":"Degersheim",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"degersheim.ch",
"mx":[
"mta1.abxsec.com",
@@ -19725,19 +67507,41 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "degersheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "degersheim.ch"
+ ],
+ "guess":[
+ "degersheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3402":{
"bfs":"3402",
"name":"Flawil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"flawil.ch",
"mx":[
"mta1.abxsec.com",
@@ -19745,32 +67549,136 @@
],
"spf":"v=spf1 a mx include:spf.abxsec.com include:backslash.ch a:tesla2.sui-inter.net include:spf.abacuscity.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.abxsec.com include:backslash.ch a:tesla2.sui-inter.net include:spf.abacuscity.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 include:spf.protection.outlook.com ip4:193.135.56.0/24 ip4:193.135.57.0/24 ip4:193.135.58.0/24 ip4:89.47.51.12 ip6:2001:1600:13:101::141f include:spf.crsend.com -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:178.77.121.128/26 ip4:158.69.163.48/29 ip4:46.4.238.128/29 ip4:194.42.96.0/23 ip6:2607:5300:203:fe1::/112 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "flawil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flawil.ch"
+ ],
+ "guess":[
+ "flawil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3405":{
"bfs":"3405",
"name":"Jonschwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"jonschwil.ch",
"mx":[
"jonschwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX jonschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jonschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jonschwil.ch"
+ ],
+ "guess":[
+ "jonschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3407":{
"bfs":"3407",
@@ -19782,41 +67690,148 @@
],
"spf":"v=spf1 a mx a:spam.geoinfo.ch a:mail.koelliker.ch a:mail.oberuzwil.ch ip4:62.12.163.0/27 ip4:185.63.67.18 include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:spam.geoinfo.ch a:mail.koelliker.ch a:mail.oberuzwil.ch ip4:62.12.163.0/27 ip4:185.63.67.18 include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oberuzwil.ch CNAME → selector1-oberuzwil-ch._domainkey.gou9242.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oberuzwil.ch CNAME → selector2-oberuzwil-ch._domainkey.gou9242.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"mail.oberuzwil.ch"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "oberuzwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberuzwil.ch"
+ ],
+ "guess":[
+ "oberuzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3408":{
"bfs":"3408",
"name":"Uzwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"uzwil.ch",
"mx":[
"uzwil-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:81.62.153.147 mx:hin.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:81.62.153.147 mx:hin.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.uzwil.ch CNAME → selector1-uzwil-ch._domainkey.gduzwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.uzwil.ch CNAME → selector2-uzwil-ch._domainkey.gduzwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "uzwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "uzwil.ch"
+ ],
+ "guess":[
+ "uzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3422":{
"bfs":"3422",
"name":"Niederbüren",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"niederbueren.ch",
"mx":[
"mta1.abxsec.com",
@@ -19824,19 +67839,47 @@
],
"spf":"v=spf1 a mx include:_spf.abxsec.com include:relay.mailchannels.net include:spf.protection.outlook.com ip4:49.13.125.142 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:_spf.abxsec.com include:relay.mailchannels.net include:spf.protection.outlook.com ip4:49.13.125.142 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "niederbueren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederbueren.ch"
+ ],
+ "guess":[
+ "niederbueren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3423":{
"bfs":"3423",
"name":"Niederhelfenschwil",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"niederhelfenschwil.ch",
"mx":[
"mta1.abxsec.com",
@@ -19844,19 +67887,52 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "hellmueller.ch",
+ "kobesenmuehle.ch",
+ "niederhelfenschwil.ch",
+ "nsnz.clubdesk.com",
+ "sproochbrugg.ch",
+ "thurweb.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederhelfenschwil.ch"
+ ],
+ "guess":[
+ "niederhelfenschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3424":{
"bfs":"3424",
"name":"Oberbüren",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"oberbueren.ch",
"mx":[
"mta1.abxsec.com",
@@ -19864,20 +67940,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "oberbueren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberbueren.ch"
+ ],
+ "guess":[
+ "oberbueren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3426":{
"bfs":"3426",
- "name":"Zuzwil",
- "canton":"",
+ "name":"Zuzwil (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"zuzwil.ch",
"mx":[
"mta1.abxsec.com",
@@ -19885,19 +67988,47 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "zuzwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zuzwil.ch"
+ ],
+ "guess":[
+ "zuzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3427":{
"bfs":"3427",
- "name":"Wil",
- "canton":"",
+ "name":"Wil (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"stadtwil.ch",
"mx":[
"mta1.abxsec.com",
@@ -19905,19 +68036,42 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com a:smtp.swil.ch a:bildung-web.ch include:spf.nl2go.com include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com a:smtp.swil.ch a:bildung-web.ch include:spf.nl2go.com include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.stadtwil.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "stadtwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadtwil.ch"
+ ],
+ "guess":[
+ "stadt-wil.ch",
+ "wil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3441":{
"bfs":"3441",
- "name":"Andwil SG",
- "canton":"",
+ "name":"Andwil (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"andwil.ch",
"mx":[
"mta1.abxsec.com",
@@ -19925,40 +68079,100 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "andwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "andwil.ch"
+ ],
+ "guess":[
+ "andwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3442":{
"bfs":"3442",
"name":"Gaiserwald",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"gaiserwald.ch",
"mx":[
"gaiserwald-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:212.80.96.0/21 ip4:213.196.176.25 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:spf.mtasv.net include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:212.80.96.0/21 ip4:213.196.176.25 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:spf.mtasv.net include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:50.31.156.96/27 ip4:104.245.209.192/26 ip4:50.31.205.0/24 ip4:147.160.158.0/24 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "gaiserwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gaiserwald.ch"
+ ],
+ "guess":[
+ "gaiserwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3443":{
"bfs":"3443",
- "name":"Gossau",
- "canton":"",
+ "name":"Gossau (SG)",
+ "canton":"Kanton St. Gallen",
"domain":"stadtgossau.ch",
"mx":[
"mta1.abxsec.com",
@@ -19966,19 +68180,39 @@
],
"spf":"v=spf1 mx ip4:217.26.49.138 ip4:217.26.49.139 include:_spf.abxsec.com include:speedadmin.dk include:spf.nl2go.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:217.26.49.138 ip4:217.26.49.139 include:_spf.abxsec.com include:speedadmin.dk include:spf.nl2go.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:87.54.30.56 include:spf.protection.outlook.com -all v=spf1 include:spf1.nl2go.com include:spf2.nl2go.com include:spf3.nl2go.com ip4:88.198.181.208/28 ip4:88.198.96.0/27 ip4:178.63.169.208/28 ip4:88.198.249.64/28 ip4:46.4.145.64/28 ip4:178.63.165.160/28 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:78.46.88.157 ip4:62.138.82.64/26 ip4:62.138.86.8/29 ip4:62.138.91.0/29 ip4:62.138.120.184/29 ip4:62.138.121.0/26 ip4:46.4.133.24 ip4:176.9.2.230 ~all v=spf1 ip4:46.4.133.19 ip4:62.138.90.192/26 ip4:91.228.144.0/24 ~all v=spf1 ip4:185.182.80.48/29 ip4:185.182.80.144/29 ip4:185.182.80.248/29 ip4:185.182.83.240/29 ip4:78.47.39.96/28 ip4:78.46.88.146 ip4:78.46.88.156 ip4:213.239.217.189 ip4:78.46.114.185 ip4:176.9.2.231 ip4:46.4.133.23 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "stadtgossau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stadtgossau.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3444":{
"bfs":"3444",
"name":"Waldkirch",
- "canton":"",
+ "canton":"Kanton St. Gallen",
"domain":"waldkirch.ch",
"mx":[
"mta1.abxsec.com",
@@ -19986,37 +68220,91 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.sui-inter.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.komsg.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "waldkirch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "waldkirch.ch"
+ ],
+ "guess":[
+ "waldkirch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3506":{
"bfs":"3506",
"name":"Vaz/Obervaz",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"vazobervaz.ch",
"mx":[
"vazobervaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf1.vazobervaz.ch include:spf2.vazobervaz.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf1.vazobervaz.ch include:spf2.vazobervaz.ch -all v=spf1 include:spf.protection.outlook.com a:mail.ostendis.ch ip4:85.10.213.141 ip4:217.151.113.128/28 ip4:81.63.131.104/30 ip4:193.93.20.0/26 ip4:217.71.243.29 ip4:5.148.181.25 ip4:195.48.58.75 -all v=spf1 ip6:2a01:4f8:d0a:25b5::2 ip6:2a02:1205:5049:f890:6dae:6e9d:d642:26ed ip6:2a02:1205:5049:f890:2caa:6464:18a5:6be9 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":89.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vazobervaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "vazobervaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3513":{
"bfs":"3513",
"name":"Lantsch/Lenz",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"lantsch-lenz.ch",
"mx":[
"mx1.naveum.services",
@@ -20024,47 +68312,107 @@
],
"spf":"v=spf1 mx a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services include:_spf.tophost.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services include:_spf.tophost.ch v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all",
- "mx_asns":[
- 205737
- ],
- "autodiscover":{
- "autodiscover_cname":"mail01.axc.biz"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lantsch-lenz.ch"
+ ],
+ "guess":[
+ "lantsch-lenz.ch",
+ "lenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3514":{
"bfs":"3514",
- "name":"Schmitten",
- "canton":"",
+ "name":"Schmitten (GR)",
+ "canton":"Kanton Graubünden",
"domain":"schmitten-gr.ch",
"mx":[
"mail.schmitten-gr.ch"
],
"spf":"v=spf1 +mx +a include:_spf.mail.hostserv.eu ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 +mx +a include:_spf.mail.hostserv.eu ~all v=spf1 a:mailhost.hostserv.eu a:mailhost.hosttech.eu include:_spf.v4.hosttech.eu include:_spf.v6.1.hosttech.eu include:_spf.v6.2.hosttech.eu ~all v=spf1 ip4:193.203.253.22 ip4:193.203.253.23 ip4:193.203.253.24 ip4:193.203.253.25 ip4:193.203.253.26 ip4:193.203.253.27 ip4:45.131.252.247 ip4:45.131.252.248 ip4:45.131.252.249 ip4:45.131.253.4 ip4:45.131.253.5 ip4:45.131.253.7 ~all v=spf1 ip6:2001:1680:101:83a::79 ip6:2001:1680:101:83a::8f ip6:2001:1680:101:83a::91 ip6:2001:1680:101:83a::95 ip6:2001:1680:101:83a::9d ip6:2001:1680:101:83a::d6 ~all v=spf1 ip6:2a11:8b80:1000:1::46 ip6:2a11:8b80:1000:1::47 ip6:2a11:8b80:1000:1::48 ip6:2a11:8b80:1000:1::49 ip6:2a11:8b80:1000:1::4a ip6:2a11:8b80:1000:1::4b ~all",
- "mx_asns":[
- 9044
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "schmitten-gr.ch"
+ ],
+ "guess":[
+ "schmitten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3542":{
"bfs":"3542",
"name":"Albula/Alvra",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"albula-alvra.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "albula-alvra.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "albula-alvra.ch"
+ ],
+ "guess":[
+ "albula-alvra.ch",
+ "albula.gr.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3543":{
"bfs":"3543",
@@ -20077,34 +68425,91 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.abx-net.net"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "afm.gr.ch",
+ "surses.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "surses.ch"
+ ],
+ "guess":[
+ "surses.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3544":{
"bfs":"3544",
"name":"Bergün Filisur",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"berguenfilisur.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud a:webcms.ruf.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud a:webcms.ruf.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "berguenfilisur.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "berguenfilisur.ch"
+ ],
+ "guess":[
+ "berguen-filisur.ch",
+ "berguenfilisur.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3551":{
"bfs":"3551",
@@ -20116,31 +68521,166 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.ddss.ch include:mailgun.org -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.protection.ddss.ch include:mailgun.org -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a ip4:82.220.38.206/32 ip4:194.56.188.104/32 -all v=spf1 include:_spf.mailgun.org include:_spf.eu.mailgun.org -all v=spf1 include:_spf1.mailgun.org include:_spf2.mailgun.org ~all v=spf1 ip4:141.193.32.0/23 ip4:159.135.140.80/29 ip4:159.135.132.128/25 ip4:161.38.204.0/22 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:143.55.236.0/22 ip4:198.244.60.0/22 ip4:204.220.160.0/21 ~all v=spf1 ip4:209.61.151.0/24 ip4:166.78.68.0/22 ip4:198.61.254.0/23 ip4:192.237.158.0/23 ip4:23.253.182.0/23 ip4:104.130.96.0/28 ip4:146.20.113.0/24 ip4:146.20.191.0/24 ip4:159.135.224.0/20 ip4:69.72.32.0/20 ~all v=spf1 ip4:104.130.122.0/23 ip4:146.20.112.0/26 ip4:161.38.192.0/20 ip4:143.55.224.0/21 ip4:143.55.232.0/22 ip4:159.112.240.0/20 ip4:198.244.48.0/20 ip4:204.220.168.0/21 ip4:204.220.176.0/20 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brusio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brusio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brusio.ch"
+ ],
+ "guess":[
+ "brusio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3561":{
"bfs":"3561",
"name":"Poschiavo",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"poschiavo.ch",
"mx":[
"poschiavo-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:217.192.142.142 ip4:213.133.224.40 ip4:213.133.224.64 ip4:193.93.20.61 ip4:178.23.174.0/27 ip4:89.207.237.84 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:217.192.142.142 ip4:213.133.224.40 ip4:213.133.224.64 ip4:193.93.20.61 ip4:178.23.174.0/27 ip4:89.207.237.84 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX poschiavo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "poschiavo.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "poschiavo.ch"
+ ],
+ "guess":[
+ "poschiavo.ch",
+ "poschiavo.gr.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3572":{
"bfs":"3572",
@@ -20152,37 +68692,127 @@
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:193.93.20.0/26 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:193.93.20.0/26 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "falera.net"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "falera.net"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3575":{
"bfs":"3575",
"name":"Laax",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"laax-gr.ch",
"mx":[
"laaxgr-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laaxgr-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "laax-gr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "laax-gr.ch"
+ ],
+ "guess":[
+ "laax.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3581":{
"bfs":"3581",
"name":"Sagogn",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"sagogn.ch",
"mx":[
"avas-in1.exigo.ch",
@@ -20190,12 +68820,35 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 -all",
"provider":"independent",
- "mx_asns":[
- 31052
- ],
- "autodiscover":{
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sagogn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sagogn.ch"
+ ],
+ "guess":[
+ "sagogn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3582":{
"bfs":"3582",
@@ -20207,13 +68860,83 @@
],
"spf":"v=spf1 ip4:92.204.51.120 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:92.204.51.120 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schluein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.schluein.ch CNAME → selector1-schluein-ch._domainkey.schluein.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.schluein.ch CNAME → selector2-schluein-ch._domainkey.schluein.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schluein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schluein.ch"
+ ],
+ "guess":[
+ "schluein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3603":{
"bfs":"3603",
@@ -20225,37 +68948,154 @@
],
"spf":"v=spf1 include:sendgrid.net include:_spf.mlsend.com include:egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:sendgrid.net include:_spf.mlsend.com include:egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 ip4:185.249.220.0/24 ip4:185.225.161.0/24 ~all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vals-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vals.ch CNAME → selector1-vals-ch._domainkey.visitvals.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vals.ch CNAME → selector2-vals-ch._domainkey.visitvals.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vals.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vals.ch"
+ ],
+ "guess":[
+ "gemeinde-vals.ch",
+ "vals.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3618":{
"bfs":"3618",
"name":"Lumnezia",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"lumnezia.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx ip4:193.93.20.0/26 include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.93.20.0/26 include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lumnezia.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lumnezia.ch"
+ ],
+ "guess":[
+ "lumnezia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3619":{
"bfs":"3619",
"name":"Ilanz/Glion",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"ilanz-glion.ch",
"mx":[
"mx1.chur.ch",
@@ -20263,101 +69103,312 @@
],
"spf":"v=spf1 mx ip4:195.189.148.0/24 mx ip4:193.93.20.0/26 include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:195.189.148.0/24 mx ip4:193.93.20.0/26 include:spf.abacuscity.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.chur.ch",
- "autodiscover_srv":"autodiscover.ilanz-glion.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ilanz-glion.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ilanz-glion.ch"
+ ],
+ "guess":[
+ "glion.ch",
+ "ilanz-glion.ch",
+ "ilanz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3633":{
"bfs":"3633",
"name":"Fürstenau",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"fuerstenau.ch",
"mx":[
"mail.fuerstenau.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
"provider":"independent",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fuerstenau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fuerstenau.ch"
+ ],
+ "guess":[
+ "fuerstenau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3637":{
"bfs":"3637",
"name":"Rothenbrunnen",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"rothenbrunnen.ch",
"mx":[
"mail.rothenbrunnen.ch"
],
"spf":"v=spf1 include:spf.protection.cyon.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "rothenbrunnen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rothenbrunnen.ch"
+ ],
+ "guess":[
+ "rothenbrunnen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3638":{
"bfs":"3638",
"name":"Scharans",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"scharans.ch",
"mx":[
"mail.scharans.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "scharans.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "scharans.ch"
+ ],
+ "guess":[
+ "scharans.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3640":{
"bfs":"3640",
"name":"Sils im Domleschg",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"sils-id.ch",
"mx":[
"silsid-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.demicomp.ch include:_spf.i-web.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.demicomp.ch include:_spf.i-web.ch ~all v=spf1 ip4:212.90.197.16/28 ip4:81.221.27.176/28 include:_spf.sui-inter.net include:_spf.swisscomdata.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:213.3.75.49 ip4:213.3.75.50 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":91.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX silsid-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sils-id.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sils-id.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3661":{
"bfs":"3661",
"name":"Cazis",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"cazis.ch",
"mx":[
"cazis-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:81.62.176.126 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.62.176.126 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cazis-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cazis.ch CNAME → selector1-cazis-ch._domainkey.gemcazis.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cazis.ch CNAME → selector2-cazis-ch._domainkey.gemcazis.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover SRV → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cazis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cazis.ch"
+ ],
+ "guess":[
+ "cazis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3662":{
"bfs":"3662",
@@ -20369,64 +69420,151 @@
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "flerden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flerden.ch"
+ ],
+ "guess":[
+ "flerden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3663":{
"bfs":"3663",
"name":"Masein",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"masein.ch",
"mx":[
"mail.masein.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "masein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "masein.ch"
+ ],
+ "guess":[
+ "masein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3668":{
"bfs":"3668",
"name":"Thusis",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"thusis.ch",
"mx":[
"thusis-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud include:spf.smtp2go.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud include:spf.smtp2go.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:207.58.147.64/28 ip4:216.22.15.224/27 ip4:43.228.184.0/22 ip4:103.47.204.0/22 ip4:103.2.140.0/22 ip4:203.31.36.0/22 ip4:170.10.68.0/22 ip4:158.120.80.0/21 ip4:66.235.120.0/21 ip4:194.195.251.175 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX thusis-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thusis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thusis.ch"
+ ],
+ "guess":[
+ "thusis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3669":{
"bfs":"3669",
"name":"Tschappina",
"canton":"Kanton Graubünden",
- "domain":"heinzenberg.ch",
+ "domain":"tschappina.ch",
"mx":[
- "mail.heinzenberg.ch"
+ "mail.tschappina.ch"
],
- "spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
+ "spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "override":[
+ "tschappina.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3670":{
"bfs":"3670",
@@ -20438,18 +69576,34 @@
],
"spf":"v=spf1 include:spf.protection.cyon.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "urmein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "urmein.ch"
+ ],
+ "guess":[
+ "urmein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3672":{
"bfs":"3672",
"name":"Safiental",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"safiental.ch",
"mx":[
"avas-in1.exigo.ch",
@@ -20457,44 +69611,151 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 -all",
"provider":"independent",
- "mx_asns":[
- 31052
- ],
- "autodiscover":{
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "safiental.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3673":{
"bfs":"3673",
"name":"Domleschg",
- "canton":"",
- "domain":"tomils.ch",
+ "canton":"Kanton Graubünden",
+ "domain":"domleschg.ch",
"mx":[
"domleschg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.mailjet.com ip4:146.4.102.214 include:spf.protection.outlook.com include:spf-repost-eu.tmcas.trendmicro.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.mailjet.com ip4:146.4.102.214 include:spf.protection.outlook.com include:spf-repost-eu.tmcas.trendmicro.com -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.160.56.80/28 ip4:20.126.64.109/32 ip4:20.126.70.251/32 ip4:20.54.65.179/32 ip4:20.54.68.120/32 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX domleschg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "domleschg.ch"
+ ],
+ "redirect":[
+ "domleschg.ch"
+ ],
+ "wikidata":[
+ "tomils.ch"
+ ],
+ "guess":[
+ "domleschg.ch",
+ "gemeinde-domleschg.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree",
+ "website_mismatch"
+ ]
},
"3681":{
"bfs":"3681",
"name":"Avers",
- "canton":"",
- "domain":"gemeindeavers.ch",
+ "canton":"Kanton Graubünden",
+ "domain":"avers.ch",
"mx":[
- "mail.gemeindeavers.ch"
+ "mail.avers.ch"
],
"spf":"v=spf1 ip4:62.202.22.249 include:_spf.sui-inter.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:62.202.22.249 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "avers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeindeavers.ch"
+ ],
+ "guess":[
+ "avers.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3695":{
@@ -20507,31 +69768,155 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sufers-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sufers.ch"
+ ],
+ "guess":[
+ "sufers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3701":{
"bfs":"3701",
"name":"Andeer",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"andeer.ch",
"mx":[
"andeer-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX andeer-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "andeer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "andeer.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3711":{
"bfs":"3711",
@@ -20543,31 +69928,177 @@
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rongellen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rongellen.ch CNAME → selector1-rongellen-ch._domainkey.gemeinderongellench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rongellen.ch CNAME → selector2-rongellen-ch._domainkey.gemeinderongellench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rongellen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rongellen.ch"
+ ],
+ "guess":[
+ "rongellen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3712":{
"bfs":"3712",
"name":"Zillis-Reischen",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"zillis-reischen.ch",
"mx":[
"zillisreischen-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zillisreischen-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zillis-reischen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zillis-reischen.ch"
+ ],
+ "guess":[
+ "zillis-reischen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3713":{
"bfs":"3713",
@@ -20579,37 +70110,129 @@
],
"spf":"v=spf1 a ip4:80.74.145.75 ip4:80.74.145.111 include:spf.protection.outlook.com include:_spf.sui-inter.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a ip4:80.74.145.75 ip4:80.74.145.111 include:spf.protection.outlook.com include:_spf.sui-inter.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ferrera-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ferrera.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ferrera.ch"
+ ],
+ "guess":[
+ "ferrera.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3714":{
"bfs":"3714",
"name":"Rheinwald",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"rheinwald.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx ip4:193.93.20.0/26 a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.93.20.0/26 a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rheinwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rheinwald.ch"
+ ],
+ "guess":[
+ "rheinwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3715":{
"bfs":"3715",
"name":"Muntogna da Schons",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"mdschons.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -20617,18 +70240,25 @@
],
"spf":"v=spf1 redirect=spf.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "mdschons.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mdschons.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3721":{
"bfs":"3721",
"name":"Bonaduz",
- "canton":"Kanton Graubünden",
+ "canton":"",
"domain":"bonaduz.ch",
"mx":[
"mx1.chur.ch",
@@ -20636,19 +70266,46 @@
],
"spf":"v=spf1 mx a:webcms.ruf.ch include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch include:spf.abacuscity.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.chur.ch",
- "autodiscover_srv":"autodiscoverredirect.chur.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bonaduz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bonaduz.ch"
+ ],
+ "guess":[
+ "bonaduz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3722":{
"bfs":"3722",
"name":"Domat/Ems",
- "canton":"Kanton Graubünden",
+ "canton":"",
"domain":"domat-ems.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -20656,14 +70313,74 @@
],
"spf":"v=spf1 mx a:mail.alphacom.ch ip4:91.205.149.149 ip4:80.89.214.234 ip4:5.148.181.25 ip4:91.234.52.17 include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a:mail.alphacom.ch ip4:91.205.149.149 ip4:80.89.214.234 ip4:5.148.181.25 ip4:91.234.52.17 include:_spf.i-web.ch ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"sophos",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.alphacom.ch"
- }
+ "gateway":"sophos",
+ "sources_detail":{
+ "scrape":[
+ "domat-ems.ch",
+ "gbde.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "domat-ems.ch"
+ ],
+ "guess":[
+ "domat-ems.ch",
+ "ems.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3723":{
"bfs":"3723",
@@ -20675,14 +70392,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rhaezuens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rhaezuens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rhaezuens.ch"
+ ],
+ "guess":[
+ "rhaezuens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3731":{
"bfs":"3731",
@@ -20694,13 +70474,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX felsberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "felsberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "felsberg.ch"
+ ],
+ "guess":[
+ "felsberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3732":{
"bfs":"3732",
@@ -20713,14 +70557,35 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:195.189.148.0/24 include:_spf.i-web.ch include:spf.abxsec.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:195.189.148.0/24 include:_spf.i-web.ch include:spf.abxsec.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.chur.ch",
- "autodiscover_srv":"autodiscover.gemeindeflims.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeindeflims.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeindeflims.ch"
+ ],
+ "guess":[
+ "flims.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3733":{
"bfs":"3733",
@@ -20732,37 +70597,140 @@
],
"spf":"v=spf1 ip4:81.62.159.14 include:spf.protection.outlook.com include:_spf.i-web.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.159.14 include:spf.protection.outlook.com include:_spf.i-web.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tamins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tamins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tamins.ch"
+ ],
+ "guess":[
+ "tamins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3734":{
"bfs":"3734",
"name":"Trin",
- "canton":"Kanton Graubünden",
- "domain":"trin.ch",
+ "canton":"",
+ "domain":"gemeindetrin.ch",
"mx":[
- "mx.prod.qlmail.ch"
- ],
- "spf":"v=spf1 redirect=_spf.qlmail.ch",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 redirect=_spf.qlmail.ch v=spf1 ip4:89.236.171.24 ip4:31.193.211.99 ip4:89.236.170.0/27 ip4:89.236.174.0/24 ip6:2001:1a88:20:8171::24 -all",
- "mx_asns":[
- 15600
+ "mx1.chur.ch",
+ "mx2.chur.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.quickline.com",
- "autodiscover_srv":"autodiscover.quickline.com"
- }
+ "spf":"v=spf1 mx ip4:195.189.148.0/24 ip4:146.159.132.15 ip4:146.159.132.25 ip4:195.65.10.12 ip4:91.234.52.10 ip4:91.234.52.17 include:spf.abacuscity.ch include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeindetrin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3746":{
"bfs":"3746",
"name":"Zernez",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"zernez.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -20770,19 +70738,79 @@
],
"spf":"v=spf1 include:_spf.prod.hydra.sophos.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.prod.hydra.sophos.com -all v=spf1 include:_spf_uswest2.prod.hydra.sophos.com include:_spf_euwest1.prod.hydra.sophos.com include:_spf_eucentral1.prod.hydra.sophos.com include:_spf_useast2.prod.hydra.sophos.com ~all v=spf1 ip4:198.154.181.0/24 ip4:64.69.223.0/24 ip4:192.175.3.0/24 ip4:198.160.151.0/24 ip4:34.213.30.40/29 ip4:34.213.30.104/29 ip4:34.212.96.64/28 ip4:34.213.30.95/32 ip4:34.213.30.120/32 ip4:34.212.96.123/32 ~all v=spf1 ip4:198.154.180.0/24 ip4:34.253.219.128/28 ip4:34.253.219.152/29 ip4:34.253.219.160/29 ip4:34.253.219.248/30 ip4:34.253.219.144/32 ~all v=spf1 ip4:94.140.18.0/24 ip4:35.159.27.8/30 ip4:35.159.27.28/30 ip4:35.159.27.32/30 ip4:35.159.27.48/29 ip4:35.159.27.160/28 ~all v=spf1 ip4:85.113.84.0/24 ip4:103.246.251.0/24 ip4:18.216.23.16/28 ip4:18.216.23.48/28 ip4:18.216.23.15/32 ip4:18.216.13.134/31 ip4:18.216.13.136/32 ~all",
- "gateway":"sophos",
- "mx_asns":[
- 16509
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"sophos",
+ "sources_detail":{
+ "scrape":[
+ "engadin.com",
+ "estm.ch",
+ "zernez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zernez.ch"
+ ],
+ "guess":[
+ "zernez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3752":{
"bfs":"3752",
"name":"Samnaun",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"samnaun.swiss",
"mx":[
"mx01.hornetsecurity.com",
@@ -20792,187 +70820,847 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "samnaun.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "samnaun.swiss"
+ ],
+ "guess":[
+ "samnaun.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3762":{
"bfs":"3762",
"name":"Scuol",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"scuol.net",
"mx":[
"scuol-net.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.scuol.net"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX scuol-net.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.scuol.net CNAME → selector1-scuol-net._domainkey.gemeindescuol.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.scuol.net CNAME → selector2-scuol-net._domainkey.gemeindescuol.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "scuol.net"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "scuol.net"
+ ],
+ "guess":[
+ "gemeinde-scuol.ch",
+ "scuol.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3764":{
"bfs":"3764",
"name":"Valsot",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"valsot.ch",
"mx":[
"valsot-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX valsot-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "valsot.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "valsot.ch"
+ ],
+ "guess":[
+ "valsot.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3781":{
"bfs":"3781",
"name":"Bever",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"gemeinde-bever.ch",
"mx":[
"gemeindebever-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindebever-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "engadin.ch",
+ "estm.ch",
+ "gemeinde-bever.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-bever.ch"
+ ],
+ "guess":[
+ "bever.ch",
+ "gemeinde-bever.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3782":{
"bfs":"3782",
"name":"Celerina/Schlarigna",
- "canton":"",
- "domain":"gemeinde-celerina.ch",
- "mx":[
- "cluster8.eu.messagelabs.com",
- "cluster8a.eu.messagelabs.com"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 396982
+ "canton":"Kanton Graubünden",
+ "domain":"celerina.ch",
+ "mx":[
+ "celerina-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:_spf.mailersend.net include:spf.engadin.cloud include:spf.spotwerbung.ch include:spf.protection.outlook.com a -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX celerina-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.celerina.ch CNAME → selector1-celerina-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.celerina.ch CNAME → selector2-celerina-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "celerina.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-celerina.ch"
+ ],
+ "guess":[
+ "celerina.ch",
+ "gemeinde-celerina.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3783":{
"bfs":"3783",
"name":"Madulain",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"madulain.ch",
"mx":[
"madulain-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:6803279.spf01.hubspotemail.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:6803279.spf01.hubspotemail.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:3.93.157.0/24 ip4:3.210.190.0/24 ip4:18.208.124.128/25 ip4:54.174.52.0/24 ip4:54.174.57.0/24 ip4:54.174.59.0/24 ip4:54.174.60.0/23 ip4:54.174.63.0/24 ip4:108.179.144.0/20 ip4:139.180.17.0/24 ip4:141.193.184.32/27 ip4:141.193.184.64/26 ip4:141.193.184.128/25 ip4:141.193.185.32/27 ip4:141.193.185.64/26 ip4:141.193.185.128/25 ip4:143.244.80.0/20 ip4:158.247.16.0/20 ip4:216.139.64.0/19 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX madulain-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "madulain.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "madulain.ch"
+ ],
+ "guess":[
+ "madulain.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3784":{
"bfs":"3784",
"name":"Pontresina",
- "canton":"",
- "domain":"gemeinde-pontresina.ch",
- "mx":[
- "cluster8.eu.messagelabs.com",
- "cluster8a.eu.messagelabs.com"
- ],
- "spf":"v=spf1 +a +mx include:spf.messagelabs.com include:spf.spotwerbung.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 +a +mx include:spf.messagelabs.com include:spf.spotwerbung.ch -all v=spf1 include:nets1.spf.messagelabs.com include:nets2.spf.messagelabs.com ~all v=spf1 ip4:213.133.107.213 ip6:2a01:4f8:d0a:2295::2 ip4:213.133.121.85 ip6:2a01:4f8:d0a:1184::2 ip4:78.46.125.17 ip6:2a01:4f8:d0a:409b::2 ip4:78.46.148.201 ip6:2a01:4f8:d0a:50f7::2 ip4:78.46.196.81 ip6:2a01:4f8:d0a:6134::2 ip4:78.46.4.123 ip6:2a01:4f8:d0a:216c::2 ip4:78.47.106.26 ip6:2a01:4f8:d0a:639e::2 ip4:78.46.3.225 ip6:2a01:4f8:d0a:318f::2 ip4:159.69.104.114 ip6:2a01:4f8:c0c:a6d::2 ip4:85.10.212.78 ip6:2a01:4f8:d0a:241e::2 ip4:78.46.166.37 ip6:2a01:4f8:d0a:61c2::2 -all v=spf1 ip4:85.158.136.0/21 ip4:193.109.254.0/23 ip4:194.106.220.0/23 ip4:195.245.230.0/23 ip4:95.131.104.0/21 ip4:46.226.48.0/21 v=spf1 ip4:216.82.240.0/20 ip4:67.219.240.0/20 ip4:117.120.16.0/21 ip4:103.9.96.0/22 ip4:35.228.216.85 ip4:146.148.116.76 ip4:34.141.160.224 ip4:34.70.158.162 ip4:34.74.74.140 ip4:34.83.159.189",
- "mx_asns":[
- 396982
+ "canton":"Kanton Graubünden",
+ "domain":"pontresina.ch",
+ "mx":[
+ "pontresina-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:_spf.mailersend.net include:spf.engadin.cloud ip4:78.46.166.37 ip6:2a01:4f8:d0a:61c2::2 include:spf.spotwerbung.ch include:spfhard.crsend.com include:spf.mailjet.com include:eu.zcsend.net -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pontresina-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.pontresina.ch CNAME → selector1-pontresina-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.pontresina.ch CNAME → selector2-pontresina-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover SRV → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pontresina.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-pontresina.ch"
+ ],
+ "guess":[
+ "gemeinde-pontresina.ch",
+ "pontresina.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3785":{
"bfs":"3785",
"name":"La Punt Chamues-ch",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"lapunt.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.93.0.0/16 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:193.93.0.0/16 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lapunt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lapunt.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3786":{
"bfs":"3786",
"name":"Samedan",
- "canton":"",
- "domain":"samedan.ch",
+ "canton":"Kanton Graubünden",
+ "domain":"samedan.gr.ch",
"mx":[
- "smtp.backslash.ch"
+ "mail1.rzobt.ch",
+ "mail2.rzobt.ch"
],
- "spf":"v=spf1 ip4:193.135.56.0/24 -all",
+ "spf":"v=spf1 include:_spf.rzobt.ch -all",
"provider":"independent",
- "mx_asns":[
- 207143
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "alpinwald.ch",
+ "energia-samedan.ch",
+ "feuerwehr-samedan-pontresina.ch",
+ "regio-maloja.ch",
+ "samedan.gr.ch",
+ "schule-samedan.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "samedan.ch"
+ ],
+ "guess":[
+ "samedan.ch",
+ "samedan.gr.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3787":{
"bfs":"3787",
"name":"St. Moritz",
- "canton":"",
- "domain":"gemeinde-stmoritz.ch",
- "mx":[
- "cluster5.eu.messagelabs.com",
- "cluster5a.eu.messagelabs.com"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 396982
+ "canton":"Kanton Graubünden",
+ "domain":"stmoritz.ch",
+ "mx":[
+ "stmoritz-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:_spf.mailersend.net include:spf.engadin.cloud include:spf.crsend.com include:spf.spotwerbung.ch ip4:94.130.127.175 ip4:94.130.145.106 ip4:78.46.211.212 ip4:212.71.124.244 ip4:212.59.169.85 include:spf.protection.outlook.com a -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stmoritz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.stmoritz.ch CNAME → selector1-moritz-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.stmoritz.ch CNAME → selector2-moritz-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stmoritz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-stmoritz.ch"
+ ],
+ "guess":[
+ "st-moritz.ch",
+ "stmoritz.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"3788":{
"bfs":"3788",
"name":"S-chanf",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"s-chanf.ch",
"mx":[
"schanf-ch0c.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.210.99.3 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.210.99.3 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schanf-ch0c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.s-chanf.ch CNAME → selector1-schanf-ch0c._domainkey.schanf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.s-chanf.ch CNAME → selector2-schanf-ch0c._domainkey.schanf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "s-chanf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "s-chanf.ch"
+ ],
+ "guess":[
+ "s-chanf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3789":{
"bfs":"3789",
@@ -20984,48 +71672,265 @@
],
"spf":"v=spf1 ip4:91.205.149.219 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:91.205.149.219 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX silssegl-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sils-segl.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3790":{
"bfs":"3790",
"name":"Silvaplana",
- "canton":"",
- "domain":"gemeinde-silvaplana.ch",
- "mx":[
- "silvaplana.ch.snwlhostedeu.com"
- ],
- "spf":"v=spf1 include:spf.engadin.cloud include:spf.mailjet.com ip4:164.90.186.134 ip4:46.140.134.176/29 a -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.engadin.cloud include:spf.mailjet.com ip4:164.90.186.134 ip4:46.140.134.176/29 a -all v=spf1 include:spf.protection.outlook.com include:spf.abacuscity.ch include:spf.exclaimer.net include:spf.eu.exclaimer.net ip4:77.74.4.142 ip4:185.243.67.1/29 ip4:185.106.133.0/24 ip6:2a10:1380::/29 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:104.40.229.156 ip4:52.169.0.179 ip4:191.237.4.149 ip4:104.209.35.28 ip4:104.210.80.79 ip4:13.70.157.244 ip4:51.140.37.132 ip4:51.141.5.228 ip4:52.233.37.155 ip4:52.242.32.10 ip4:20.233.10.24 ip4:20.74.156.16 ip4:20.52.124.58 ip4:20.113.192.118 ~all v=spf1 ip4:104.40.229.156 ip4:52.169.0.179 ip4:20.50.220.144/28 ip4:40.127.253.48/28 ~all"
+ "canton":"Kanton Graubünden",
+ "domain":"silvaplana.ch",
+ "mx":[
+ "silvaplana-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:_spf.mailersend.net include:spf.protection.outlook.com include:spf.engadin.cloud ip4:78.46.196.81 include:spf.sendinblue.com include:spf.mailjet.com ip4:164.90.186.134 ip4:46.140.134.176/29 a -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX silvaplana-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.silvaplana.ch CNAME → selector1-silvaplana-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.silvaplana.ch CNAME → selector2-silvaplana-ch._domainkey.oegde.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "regio-maloja.ch",
+ "silvaplana.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-silvaplana.ch"
+ ],
+ "guess":[
+ "gemeinde-silvaplana.ch",
+ "silvaplana.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"3791":{
"bfs":"3791",
"name":"Zuoz",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"zuoz.ch",
"mx":[
"zuoz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.spotwerbung.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.spotwerbung.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:213.133.107.213 ip6:2a01:4f8:d0a:2295::2 ip4:213.133.121.85 ip6:2a01:4f8:d0a:1184::2 ip4:78.46.125.17 ip6:2a01:4f8:d0a:409b::2 ip4:78.46.148.201 ip6:2a01:4f8:d0a:50f7::2 ip4:78.46.196.81 ip6:2a01:4f8:d0a:6134::2 ip4:78.46.4.123 ip6:2a01:4f8:d0a:216c::2 ip4:78.47.106.26 ip6:2a01:4f8:d0a:639e::2 ip4:78.46.3.225 ip6:2a01:4f8:d0a:318f::2 ip4:159.69.104.114 ip6:2a01:4f8:c0c:a6d::2 ip4:85.10.212.78 ip6:2a01:4f8:d0a:241e::2 ip4:78.46.166.37 ip6:2a01:4f8:d0a:61c2::2 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zuoz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zuoz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zuoz.ch"
+ ],
+ "guess":[
+ "gemeinde-zuoz.ch",
+ "zuoz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3792":{
"bfs":"3792",
"name":"Bregaglia",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"bregaglia.ch",
"mx":[
"avas-in1.exigo.ch",
@@ -21033,30 +71938,117 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:212.243.100.184 a:pop.conet.ch -all",
"provider":"independent",
- "mx_asns":[
- 31052
- ],
- "autodiscover":{
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bregaglia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3804":{
"bfs":"3804",
"name":"Buseno",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"buseno.ch",
"mx":[
"buseno-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buseno-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buseno.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buseno.ch"
+ ],
+ "guess":[
+ "buseno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3805":{
"bfs":"3805",
@@ -21068,55 +72060,202 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX castaneda-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "castaneda.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "castaneda.ch"
+ ],
+ "guess":[
+ "castaneda.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3808":{
"bfs":"3808",
"name":"Rossa",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"rossa.ch",
"mx":[
"rossa-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rossa-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rossa.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rossa.ch"
+ ],
+ "guess":[
+ "rossa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3810":{
"bfs":"3810",
"name":"Santa Maria in Calanca",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"santamariaic.ch",
"mx":[
"mx1.mail.hostpoint.ch",
"mx2.mail.hostpoint.ch"
],
"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "santamariaic.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "santamariaic.ch"
+ ],
+ "guess":[
+ "santamariaincalanca.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3821":{
"bfs":"3821",
"name":"Lostallo",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"lostallo.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -21124,172 +72263,683 @@
],
"spf":"v=spf1 ip4:89.207.237.84 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:89.207.237.84 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "lostallo.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lostallo.ch"
+ ],
+ "guess":[
+ "lostallo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3822":{
"bfs":"3822",
"name":"Mesocco",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"mesocco.swiss",
"mx":[
"mesocco-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mesocco-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mesocco.swiss",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mesocco.swiss"
+ ],
+ "guess":[
+ "mesocco.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3823":{
"bfs":"3823",
"name":"Soazza",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"soazza.ch",
"mx":[
"soazza-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX soazza-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "soazza.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "soazza.ch"
+ ],
+ "guess":[
+ "soazza.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3831":{
"bfs":"3831",
"name":"Cama",
"canton":"Kanton Graubünden",
- "domain":"cama.ch",
- "mx":[
- "mail.cama.ch"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 21069
- ]
+ "domain":"cama.swiss",
+ "mx":[
+ "cama-swiss.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:193.93.20.0/26 -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cama-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "cama.swiss"
+ ]
+ },
+ "resolve_flags":[]
},
"3832":{
"bfs":"3832",
"name":"Grono",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"grono.ch",
"mx":[
"grono-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grono-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grono.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grono.ch"
+ ],
+ "guess":[
+ "grono.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3834":{
"bfs":"3834",
- "name":"Roveredo",
- "canton":"",
+ "name":"Roveredo (GR)",
+ "canton":"Kanton Graubünden",
"domain":"roveredo.ch",
"mx":[
"roveredo-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:178.23.174.0/27 ip4:217.26.49.128/25 ip4:217.26.63.0/24 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.23.174.0/27 ip4:217.26.49.128/25 ip4:217.26.63.0/24 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX roveredo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roveredo.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roveredo.ch"
+ ],
+ "guess":[
+ "roveredo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3835":{
"bfs":"3835",
"name":"San Vittore",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"sanvittore.ch",
"mx":[
"mx1.mail.hostpoint.ch",
"mx2.mail.hostpoint.ch"
],
"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sanvittore.ch",
+ "visit-moesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sanvittore.ch"
+ ],
+ "guess":[
+ "sanvittore.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3837":{
"bfs":"3837",
"name":"Calanca",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"comunedicalanca.ch",
"mx":[
"comunedicalanca-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX comunedicalanca-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "comunedicalanca.ch"
+ ],
+ "guess":[
+ "calanca.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3847":{
"bfs":"3847",
"name":"Val Müstair",
"canton":"Kanton Graubünden",
- "domain":"val-muestair.ch",
- "mx":[
- "mailqueue01.leuchter-cloud.ch"
- ],
- "spf":"v=spf1 include:spf.protection.outlook.com include:spf.leuchter-cloud.ch include:spf.mailjet.com include:spf.mandrillapp.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.leuchter-cloud.ch include:spf.mailjet.com include:spf.mandrillapp.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.147.72.0/24 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 215278
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "domain":"cdvm.ch",
+ "mx":[
+ "cdvm-ch.mail.eo.outlook.com"
+ ],
+ "spf":"v=spf1 ip4:195.65.44.100 include:spf.spotwerbung.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cdvm.ch CNAME → selector1-cdvm-ch._domainkey.pemenergiach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cdvm.ch CNAME → selector2-cdvm-ch._domainkey.pemenergiach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "cdvm.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3851":{
"bfs":"3851",
"name":"Davos",
"canton":"",
- "domain":"davos.ch",
- "mx":[
- "davos-ch.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:78.46.4.123 ip6:2a01:4f8:d0a:216c::2 ip4:78.46.155.172 ip4:78.47.83.228 ip4:88.198.220.204 ip4:85.10.215.156 ip4:217.26.49.128/25 ip4:217.26.63.0/24 ip4:185.157.0.144 ip4:81.62.129.192/28 ip4:136.243.163.123 -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ip4:78.46.4.123 ip6:2a01:4f8:d0a:216c::2 ip4:78.46.155.172 ip4:78.47.83.228 ip4:88.198.220.204 ip4:85.10.215.156 ip4:217.26.49.128/25 ip4:217.26.63.0/24 ip4:185.157.0.144 ip4:81.62.129.192/28 ip4:136.243.163.123 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "domain":"davos.gr.ch",
+ "mx":[
+ "mail.davos.gr.ch"
+ ],
+ "spf":"v=spf1 a mx a:mnc-mail.smsbox.ch ip4:193.247.16.137 ip4:78.47.83.228 ip6:2a01:4f8:d0a:4329::2 include:_spf.i-web.ch include:spf.i-web.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "davos.gr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "davos.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3861":{
"bfs":"3861",
@@ -21301,14 +72951,48 @@
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fideris.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fideris.ch"
+ ],
+ "guess":[
+ "fideris.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3862":{
"bfs":"3862",
@@ -21320,10 +73004,22 @@
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "furna.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "furna.ch"
+ ],
+ "guess":[
+ "furna.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3863":{
"bfs":"3863",
@@ -21335,15 +73031,42 @@
"mx2.chur.ch"
],
"spf":"v=spf1 mx ip4:195.189.148.0/24 include:spf.protection.outlook.com include:_spf.sui-inter.net -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:195.189.148.0/24 include:spf.protection.outlook.com include:_spf.sui-inter.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.chur.ch",
- "autodiscover_srv":"autodiscover.jenaz.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jenaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jenaz.ch"
+ ],
+ "guess":[
+ "jenaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3871":{
"bfs":"3871",
@@ -21355,33 +73078,87 @@
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeindeklosters.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeindeklosters.ch"
+ ],
+ "guess":[
+ "klosters.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3881":{
"bfs":"3881",
"name":"Conters im Prättigau",
- "canton":"Kanton Graubünden",
+ "canton":"",
"domain":"conters.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "conters.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "conters.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3882":{
"bfs":"3882",
@@ -21394,12 +73171,41 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mx1.rufcloud.ch a:mx2.rufcloud.ch -all",
"provider":"independent",
- "mx_asns":[
- 31052
- ],
- "autodiscover":{
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kueblis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kueblis.ch"
+ ],
+ "guess":[
+ "kueblis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3891":{
"bfs":"3891",
@@ -21411,52 +73217,210 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX luzein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "luzein.ch",
+ "pany-stantoenien.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luzein.ch"
+ ],
+ "guess":[
+ "luzein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3901":{
"bfs":"3901",
"name":"Chur",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"chur.ch",
"mx":[
"mx1.chur.ch",
"mx2.chur.ch"
],
"spf":"v=spf1 mx ip4:195.189.148.0/24 ip4:146.159.132.15 ip4:146.159.132.25 ip4:80.237.133.99 ip4:195.65.10.12 ip4:212.243.100.154 ip4:91.234.52.10 ip4:91.234.52.17 include:spf.abacuscity.ch include:spf.protection.outlook.com include:spf.omcomputer.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:195.189.148.0/24 ip4:146.159.132.15 ip4:146.159.132.25 ip4:80.237.133.99 ip4:195.65.10.12 ip4:212.243.100.154 ip4:91.234.52.10 ip4:91.234.52.17 include:spf.abacuscity.ch include:spf.protection.outlook.com include:spf.omcomputer.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.154 -all",
- "mx_asns":[
- 200987
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chur.ch"
+ ],
+ "guess":[
+ "chur.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3911":{
"bfs":"3911",
"name":"Churwalden",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"churwalden.ch",
"mx":[
"churwalden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:109.164.250.201 ip4:217.11.36.180/30 ip4:217.151.113.161/32 a:spf.abacuscity.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:109.164.250.201 ip4:217.11.36.180/30 ip4:217.151.113.161/32 a:spf.abacuscity.ch include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX churwalden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "churwalden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "churwalden.ch"
+ ],
+ "guess":[
+ "churwalden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3921":{
"bfs":"3921",
"name":"Arosa",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"gemeindearosa.ch",
"mx":[
"mx1.chur.ch",
@@ -21464,19 +73428,40 @@
],
"spf":"v=spf1 a mx ptr ip4:91.205.149.149 ip4:195.189.148.0/24 ip4:193.93.20.0/26 include:spf.abacuscity.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ptr ip4:91.205.149.149 ip4:195.189.148.0/24 ip4:193.93.20.0/26 include:spf.abacuscity.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.chur.ch",
- "autodiscover_srv":"autodiscover.gemeindearosa.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeindearosa.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeindearosa.ch"
+ ],
+ "guess":[
+ "arosa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3945":{
"bfs":"3945",
"name":"Trimmis",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"trimmis.ch",
"mx":[
"mail01.trimmis.ch",
@@ -21484,93 +73469,333 @@
],
"spf":"v=spf1 +mx +ip4:195.189.148.0/24 include:spf.protection.cyon.net +ip4:195.189.148.94 +ip4:195.189.148.97 include:spf.abacuscity.ch redirect=spf.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 +mx +ip4:195.189.148.0/24 include:spf.protection.cyon.net +ip4:195.189.148.94 +ip4:195.189.148.97 include:spf.abacuscity.ch redirect=spf.mail.hostpoint.ch v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.chur.ch",
- "autodiscover_srv":"autodiscover.chur.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trimmis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trimmis.ch"
+ ],
+ "guess":[
+ "trimmis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3946":{
"bfs":"3946",
"name":"Untervaz",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"untervaz.ch",
"mx":[
"untervaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.eu.exclaimer.net include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.eu.exclaimer.net include:spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:104.40.229.156 ip4:52.169.0.179 ip4:20.50.220.144/28 ip4:40.127.253.48/28 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX untervaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "untervaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "untervaz.ch"
+ ],
+ "guess":[
+ "untervaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3947":{
"bfs":"3947",
"name":"Zizers",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"zizers.ch",
"mx":[
"zizers-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zizers-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zizers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zizers.ch"
+ ],
+ "guess":[
+ "zizers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3951":{
"bfs":"3951",
"name":"Fläsch",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"flaesch.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "flaesch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "flaesch.ch"
+ ],
+ "guess":[
+ "flaesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3952":{
"bfs":"3952",
"name":"Jenins",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"jenins.ch",
"mx":[
"jenins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.135.56.6 a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX jenins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jenins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jenins.ch"
+ ],
+ "guess":[
+ "jenins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3953":{
"bfs":"3953",
"name":"Maienfeld",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"maienfeld.ch",
"mx":[
"avas-in1.exigo.ch",
@@ -21578,50 +73803,188 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mail.i-web.ch include:_spf.rzobt.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mail.i-web.ch include:_spf.rzobt.ch ~all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 31052
- ],
- "autodiscover":{
- "autodiscover_srv":"mailadmin.exigo.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maienfeld.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maienfeld.ch"
+ ],
+ "guess":[
+ "maienfeld.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3954":{
"bfs":"3954",
"name":"Malans",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"malans.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:198.2.139.11 include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:198.2.139.11 include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "malans.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "malans.ch"
+ ],
+ "guess":[
+ "malans.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3955":{
"bfs":"3955",
"name":"Landquart",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"landquart.ch",
"mx":[
"landquart-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:mail.obt-services.ch ip4:185.27.7.120 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail.obt-services.ch ip4:185.27.7.120 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX landquart-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.landquart.ch CNAME → selector1-landquart-ch._domainkey.landquartgr.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.landquart.ch CNAME → selector2-landquart-ch._domainkey.landquartgr.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "landquart.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "landquart.ch"
+ ],
+ "guess":[
+ "landquart.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3961":{
"bfs":"3961",
@@ -21633,14 +73996,36 @@
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.6 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gruesch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gruesch.ch"
+ ],
+ "guess":[
+ "gruesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3962":{
"bfs":"3962",
@@ -21652,13 +74037,77 @@
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:162.23.32.11 ip4:162.23.32.12 ip4:162.23.32.13 ip4:162.23.32.14 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:162.23.32.11 ip4:162.23.32.12 ip4:162.23.32.13 ip4:162.23.32.14 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schiers-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schiers.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schiers.ch"
+ ],
+ "guess":[
+ "schiers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3972":{
"bfs":"3972",
@@ -21670,183 +74119,760 @@
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.iway.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.iway.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.asp.ruf.ch",
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seewis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seewis.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"3981":{
"bfs":"3981",
"name":"Breil/Brigels",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"breil.ch",
"mx":[
"breil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX breil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "breil.ch"
+ ],
+ "guess":[
+ "breil.ch",
+ "brigels.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3982":{
"bfs":"3982",
"name":"Disentis/Mustér",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"disentis.ch",
"mx":[
"disentis-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr ip4:193.93.20.0/26 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX disentis-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "disentis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "disentis.ch"
+ ],
+ "guess":[
+ "disentis-muster.ch",
+ "disentis.ch",
+ "must-r.ch",
+ "muster.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3983":{
"bfs":"3983",
- "name":"Medel",
- "canton":"",
+ "name":"Medel (Lucmagn)",
+ "canton":"Kanton Graubünden",
"domain":"medel.ch",
"mx":[
"medel-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX medel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "medel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "medel.ch"
+ ],
+ "guess":[
+ "medel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3985":{
"bfs":"3985",
"name":"Sumvitg",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"sumvitg.ch",
"mx":[
"sumvitg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx a:mail-gateway-shared01.cyon.net ip4:194.126.4.84 ip4:80.74.128.22 include:_spf.sui-inter.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx a:mail-gateway-shared01.cyon.net ip4:194.126.4.84 ip4:80.74.128.22 include:_spf.sui-inter.net include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sumvitg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sumvitg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sumvitg.ch"
+ ],
+ "guess":[
+ "sumvitg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3986":{
"bfs":"3986",
"name":"Tujetsch",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"tujetsch.ch",
"mx":[
"mx1.chur.ch",
"mx2.chur.ch"
],
"spf":"v=spf1 mx ip4:195.189.148.0/24 ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:146.159.132.15 ip4:146.159.132.25 ip4:80.237.133.99 ip4:195.65.10.12 ip4:212.243.100.154 ip4:91.234.52.10 ip4:91.234.52.17 ip4:193.93.20.0/26 include:spf.abacuscity.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:195.189.148.0/24 ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:146.159.132.15 ip4:146.159.132.25 ip4:80.237.133.99 ip4:195.65.10.12 ip4:212.243.100.154 ip4:91.234.52.10 ip4:91.234.52.17 ip4:193.93.20.0/26 include:spf.abacuscity.ch include:spf.protection.outlook.com -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 200987
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.chur.ch",
- "autodiscover_srv":"autodiscover.chur.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tujetsch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tujetsch.ch"
+ ],
+ "guess":[
+ "tujetsch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3987":{
"bfs":"3987",
"name":"Trun",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"trun.ch",
"mx":[
"trun-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:80.74.128.22 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:80.74.128.22 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX trun-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.trun.ch CNAME → selector1-trun-ch._domainkey.gemeindetrun.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.trun.ch CNAME → selector2-trun-ch._domainkey.gemeindetrun.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover SRV → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trun.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trun.ch"
+ ],
+ "guess":[
+ "trun.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"3988":{
"bfs":"3988",
"name":"Obersaxen Mundaun",
- "canton":"",
+ "canton":"Kanton Graubünden",
"domain":"obersaxenmundaun.swiss",
"mx":[
"obersaxenmundaun-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX obersaxenmundaun-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.obersaxenmundaun.swiss CNAME → selector1-obersaxenmundaun-swiss._domainkey.gvom.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.obersaxenmundaun.swiss CNAME → selector2-obersaxenmundaun-swiss._domainkey.gvom.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "obersaxenmundaun.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "obersaxenmundaun.swiss"
+ ],
+ "guess":[
+ "obersaxen-mundaun.ch",
+ "obersaxenmundaun.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4001":{
"bfs":"4001",
"name":"Aarau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"aarau.ch",
"mx":[
"aarau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:46.140.129.105 ip4:46.140.129.106 ip4:193.135.56.0/23 include:_spf.zimpel.de include:spf.abacuscity.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:46.140.129.105 ip4:46.140.129.106 ip4:193.135.56.0/23 include:_spf.zimpel.de include:spf.abacuscity.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.201.168.38/32 ip4:193.201.168.170/31 v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aarau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.aarau.ch CNAME → selector1-aarau-ch._domainkey.aarauch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.aarau.ch CNAME → selector2-aarau-ch._domainkey.aarauch.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "aarau.ch"
+ ],
+ "guess":[
+ "aarau.ch",
+ "gemeinde-aarau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4002":{
"bfs":"4002",
"name":"Biberstein",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"biberstein-ag.ch",
"mx":[
"bibersteinag-ch02e.mail.eo.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "biberstein-ag.ch"
+ ],
+ "guess":[
+ "biberstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4003":{
"bfs":"4003",
- "name":"Buchs",
- "canton":"",
+ "name":"Buchs (AG)",
+ "canton":"Kanton Aargau",
"domain":"buchs-aargau.ch",
"mx":[
"mx1.naveum.services",
@@ -21854,145 +74880,584 @@
],
"spf":"v=spf1 a:mail01.axc.biz a:securemail01.axc.biz a:securemail02.axc.biz a:mx1.naveum.services a:mx2.naveum.services a:srv-comet03.backslash.ch ip4:193.135.56.6 -all",
"provider":"independent",
- "mx_asns":[
- 205737
- ],
- "autodiscover":{
- "autodiscover_cname":"mail01.axc.biz"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchs-aargau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchs-aargau.ch"
+ ],
+ "guess":[
+ "buchs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4004":{
"bfs":"4004",
"name":"Densbüren",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"densbueren.ch",
"mx":[
"densbueren-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:appriver.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:appriver.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com include:rnmk.com ~all v=spf1 ip4:204.232.250.0/24 ip4:5.152.185.0/24 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:72.3.212.195 ip4:5.152.188.0/24 ip4:174.37.170.192/27 ~all v=spf1 ip4:75.126.84.128/26 ip4:67.228.8.0/25 ip4:67.227.149.19 ip4:64.56.208.32/27 ip4:67.228.91.90 ip4:67.228.158.174 ip4:174.36.44.116/30 ip4:50.201.66.168 ip4:63.71.8.0/21 ip4:199.30.232.0/21 ip4:74.203.184.0/23 ip4:207.195.176.0/20 ~all v=spf1 include:spf-a.rnmk.com exists:%{i}.spf.rnmk.com -all v=spf1 ip4:129.148.164.0/25 ip4:129.148.215.0/25 ip4:129.149.6.0/25 ip4:129.149.38.0/25 ip4:138.1.170.0/24 ip4:147.154.32.0/25 ip4:147.154.63.0/24 ip4:147.154.126.0/24 ip4:147.154.191.0/24 ip4:162.88.24.0/23 ip4:192.29.72.0/25 ip4:192.29.88.0/25 ip4:192.29.103.128/25 ip4:192.29.134.0/25 ip4:155.248.148.0/25 ip4:131.186.12.0/25 ip4:139.177.108.0/25 ip4:162.88.4.0/23 ip4:162.88.8.0/24 ip4:162.88.36.0/24 ip4:208.76.62.0/23 ip4:216.146.32.0/23 ip4:207.211.132.0/25 ip4:165.1.100.0/25 ip4:158.247.100.0/25 ip4:192.29.172.0/25 ip4:192.29.24.0/25 ip4:192.29.232.0/25 ip4:192.29.248.0/25 ip4:192.29.216.0/25 ip4:192.29.44.0/25 ip4:192.29.151.128/25 ip4:129.148.135.0/25 ip4:129.148.148.0/25 ip4:129.149.126.0/25 ip4:129.148.180.0/25 ip4:129.149.52.0/25 ip4:159.13.4.0/25 ip4:84.8.68.0/25 ip4:192.29.200.0/25 ip4:138.1.108.0/25 ip4:130.35.116.0/25 ip4:192.29.178.0/25 ip4:129.149.22.0/25 ip4:129.149.118.0/25 ip4:129.149.100.0/25 ip4:129.149.84.0/25 ip4:129.149.68.0/25 ip4:155.248.135.128/25 ip4:155.248.140.0/25 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX densbueren-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.densbueren.ch CNAME → selector1-densbueren-ch._domainkey.densbueren365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.densbueren.ch CNAME → selector2-densbueren-ch._domainkey.densbueren365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "densbueren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "densbueren.ch"
+ ],
+ "guess":[
+ "densbueren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4005":{
"bfs":"4005",
- "name":"Erlinsbach",
- "canton":"",
+ "name":"Erlinsbach (AG)",
+ "canton":"Kanton Aargau",
"domain":"erlinsbach.ch",
"mx":[
"mail.erlinsbach.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "erlinsbach.ch"
+ ],
+ "guess":[
+ "erlinsbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4006":{
"bfs":"4006",
"name":"Gränichen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"graenichen.ch",
"mx":[
"graenichen-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.graenichen.ch CNAME → selector1-graenichen-ch._domainkey.graenichench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.graenichen.ch CNAME → selector2-graenichen-ch._domainkey.graenichench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "graenichen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "graenichen.ch"
+ ],
+ "guess":[
+ "graenichen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4007":{
"bfs":"4007",
- "name":"Hirschthal AG",
- "canton":"",
+ "name":"Hirschthal",
+ "canton":"Kanton Aargau",
"domain":"hirschthal.ch",
"mx":[
"hirschthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.47.120.0/24 ip4:178.174.34.174 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.47.120.0/24 ip4:178.174.34.174 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hirschthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hirschthal.ch CNAME → selector1-hirschthal-ch._domainkey.gemeindehirschthalch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hirschthal.ch CNAME → selector2-hirschthal-ch._domainkey.gemeindehirschthalch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hirschthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hirschthal.ch"
+ ],
+ "guess":[
+ "hirschthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4008":{
"bfs":"4008",
"name":"Küttigen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"kuettigen.ch",
"mx":[
"mail.kuettigen.ch"
],
"spf":"v=spf1 a mx include:spf.lanpool.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.lanpool.ch -all v=spf1 ip4:5.57.206.42 ip4:93.174.184.0/21 ip4:213.193.111.66 ip4:213.193.98.98 -all",
- "mx_cnames":{
- "mail.kuettigen.ch":"uplink.kuettigen.lanpool.net"
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "kuettigen.ch"
+ ],
+ "guess":[
+ "kuettigen.ch"
+ ]
},
- "mx_asns":[
- 15623
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.kuettigen.ch"
- }
+ "resolve_flags":[]
},
"4009":{
"bfs":"4009",
"name":"Muhen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"muhen.ch",
"mx":[
"muhen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.netzone.ch ip4:213.221.225.126 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.netzone.ch ip4:213.221.225.126 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:212.243.197.0/26 ip6:2001:918:ff23:197:30::1/77 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muhen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.muhen.ch CNAME → selector1-muhen-ch._domainkey.gemeindemuhenag.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.muhen.ch CNAME → selector2-muhen-ch._domainkey.gemeindemuhenag.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muhen.ch"
+ ],
+ "guess":[
+ "muhen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4010":{
"bfs":"4010",
"name":"Oberentfelden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oberentfelden.ch",
"mx":[
"oberentfelden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.0/24 a:mail.ostendis.ch include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.0/24 a:mail.ostendis.ch include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberentfelden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oberentfelden.ch CNAME → selector1-oberentfelden-ch._domainkey.gemeindeoberentfeldench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oberentfelden.ch CNAME → selector2-oberentfelden-ch._domainkey.gemeindeoberentfeldench.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberentfelden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberentfelden.ch"
+ ],
+ "guess":[
+ "oberentfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4012":{
"bfs":"4012",
"name":"Suhr",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"suhr.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -22000,123 +75465,583 @@
],
"spf":"v=spf1 +a include:spf.protection.outlook.com include:fdspfeuc.freshemail.io include:sendgrid.net include:_spf_eucentral1.prod.hydra.sophos.com include:spf.netzone.ch include:spf.hausformat.net include:spf.abacuscity.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a include:spf.protection.outlook.com include:fdspfeuc.freshemail.io include:sendgrid.net include:_spf_eucentral1.prod.hydra.sophos.com include:spf.netzone.ch include:spf.hausformat.net include:spf.abacuscity.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:35.158.71.15 ip4:35.158.67.243 ip4:3.120.181.192/28 ip4:3.76.65.248/29 ip4:3.72.201.96/29 ip4:3.120.181.204/30 ip4:18.156.147.178 ip4:18.158.161.97 ip4:3.64.95.16/29 ip4:3.65.246.112/29 ip4:3.72.33.56/29 ip4:18.153.184.112/29 ip4:18.153.154.192/29 ip4:18.199.180.160/29 ~all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 ip4:94.140.18.0/24 ip4:35.159.27.8/30 ip4:35.159.27.28/30 ip4:35.159.27.32/30 ip4:35.159.27.48/29 ip4:35.159.27.160/28 ~all v=spf1 ip4:212.243.197.0/26 ip6:2001:918:ff23:197:30::1/77 -all v=spf1 ip4:80.74.128.0/19 ip6:2a00:1128::/32 ip4:94.126.16.0/21 ip4:81.20.86.220 ip4:46.231.200.174 ip4:81.173.83.90 ip4:185.169.85.70 ip6:2a04:503:0:1026::70 ip4:81.173.83.40 ip6:2a00:1128:200:5:0:26ff:feeb:2f7f -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "gateway":"sophos",
- "mx_asns":[
- 16509
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"mail.suhr.ch",
- "autodiscover_srv":"mail.suhr.ch"
- }
+ "gateway":"sophos",
+ "sources_detail":{
+ "scrape":[
+ "suhr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "suhr.ch"
+ ],
+ "guess":[
+ "suhr.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4013":{
"bfs":"4013",
"name":"Unterentfelden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"unterentfelden.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "unterentfelden.ch"
+ ],
+ "guess":[
+ "unterentfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4021":{
"bfs":"4021",
"name":"Baden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"baden.ch",
"mx":[
"baden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:213.235.247.64/28 ip4:193.135.56.0/23 ip4:194.209.192.0/23 ip4:213.193.114.96/27 include:cmail1.com include:amazonses.com include:spf.umantis.com include:spf1.onax.ch include:spf2.onax.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:213.235.247.64/28 ip4:193.135.56.0/23 ip4:194.209.192.0/23 ip4:213.193.114.96/27 include:cmail1.com include:amazonses.com include:spf.umantis.com include:spf1.onax.ch include:spf2.onax.ch include:spf.protection.outlook.com -all v=spf1 ip4:103.28.42.0/24 ip4:27.126.146.0/24 ip4:146.88.28.0/24 ip4:163.47.180.0/22 ip4:203.55.21.0/24 ip4:204.75.142.0/24 ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all v=spf1 ip4:185.238.12.20 ip4:185.238.12.21 ip4:185.238.12.22 ip4:93.190.78.23 ip4:93.190.78.24 ip4:46.252.80.34 ip4:46.252.80.35 ip4:46.252.80.36 ip4:149.233.27.164 ip4:149.233.27.165 ~all v=spf1 ip4:193.93.23.248/29 ip4:193.93.22.14 ip4:164.128.173.16/28 ip4:82.220.34.62 ip4:20.160.56.80/28 -all v=spf1 a:mailout.ip-plus.net ip4:217.174.149.125/32 ip4:91.148.168.28/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX baden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"SPF include:amazonses.com matches aws"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.baden.ch CNAME → selector1-baden-ch._domainkey.stadtbaden.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.baden.ch CNAME → selector2-baden-ch._domainkey.stadtbaden.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "apothekedrkunz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baden.ch"
+ ],
+ "guess":[
+ "baden.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"4022":{
"bfs":"4022",
"name":"Bellikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"bellikon.ch",
"mx":[
"bellikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:178.174.54.186 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:178.174.54.186 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bellikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bellikon.ch CNAME → selector1-bellikon-ch._domainkey.gemeindebellikonch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bellikon.ch CNAME → selector2-bellikon-ch._domainkey.gemeindebellikonch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bellikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bellikon.ch"
+ ],
+ "guess":[
+ "bellikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4023":{
"bfs":"4023",
"name":"Bergdietikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"bergdietikon.ch",
"mx":[
"bergdietikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bergdietikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bergdietikon.ch CNAME → selector1-bergdietikon-ch._domainkey.gemeindebergdietikonch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bergdietikon.ch CNAME → selector2-bergdietikon-ch._domainkey.gemeindebergdietikonch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bergdietikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bergdietikon.ch"
+ ],
+ "guess":[
+ "bergdietikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4024":{
"bfs":"4024",
- "name":"Birmenstorf",
- "canton":"",
+ "name":"Birmenstorf (AG)",
+ "canton":"Kanton Aargau",
"domain":"birmenstorf.ch",
"mx":[
"birmenstorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com include:spf.lanpool.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com include:spf.lanpool.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:5.57.206.42 ip4:93.174.184.0/21 ip4:213.193.111.66 ip4:213.193.98.98 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX birmenstorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.birmenstorf.ch CNAME → selector1-birmenstorf-ch._domainkey.birmenstorf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.birmenstorf.ch CNAME → selector2-birmenstorf-ch._domainkey.birmenstorf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "birmenstorf.ch",
+ "h.ie",
+ "n.ua"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "birmenstorf.ch"
+ ],
+ "guess":[
+ "birmenstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4026":{
"bfs":"4026",
"name":"Ennetbaden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"ennetbaden.ch",
"mx":[
"antispam.nextron.ch"
],
"spf":"v=spf1 mx ip4:193.47.120.62/31 ip4:193.47.104.5 ip4:192.162.28.108 ip4:81.63.133.74 ip4:81.63.133.75 include:spf.nextron.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62/31 ip4:193.47.104.5 ip4:192.162.28.108 ip4:81.63.133.74 ip4:81.63.133.75 include:spf.nextron.ch -all v=spf1 ip4:193.108.137.0/24 ip4:80.74.149.0/24 ip4:194.150.248.30 -all",
- "mx_asns":[
- 42346
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ennetbaden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ennetbaden.ch"
+ ],
+ "guess":[
+ "ennetbaden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4027":{
"bfs":"4027",
"name":"Fislisbach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"fislisbach.ch",
"mx":[
"mail.format-ag.ch",
@@ -22126,36 +76051,122 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fislisbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fislisbach.ch"
+ ],
+ "guess":[
+ "fislisbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4028":{
"bfs":"4028",
"name":"Freienwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"freienwil.ch",
"mx":[
"freienwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX freienwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "freienwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "freienwil.ch"
+ ],
+ "guess":[
+ "freienwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4029":{
"bfs":"4029",
"name":"Gebenstorf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"gebenstorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -22164,119 +76175,434 @@
"mailbackup.tankred.ch"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.talus.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gebenstorf.ch"
+ ],
+ "guess":[
+ "gebenstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4030":{
"bfs":"4030",
"name":"Killwangen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"killwangen.ch",
"mx":[
"killwangen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:mail.i-web.ch mx:mail.i-web.ch ip4:192.162.28.108 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail.i-web.ch mx:mail.i-web.ch ip4:192.162.28.108 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX killwangen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "killwangen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "killwangen.ch"
+ ],
+ "guess":[
+ "killwangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4031":{
"bfs":"4031",
"name":"Künten",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"kuenten.ch",
"mx":[
"kuenten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 ip4:193.135.56.0/24 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 ip4:193.135.56.0/24 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kuenten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kuenten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kuenten.ch"
+ ],
+ "guess":[
+ "kuenten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4032":{
"bfs":"4032",
"name":"Mägenwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"maegenwil.ch",
"mx":[
"maegenwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.webapps.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.webapps.net include:spf.protection.outlook.com -all v=spf1 a include:spf1.webapps.net include:spf2.webapps.net ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:81.88.48.32/27 ip4:81.88.50.224/27 ip4:81.88.54.64/27 ip4:81.88.55.96/27 ip4:81.88.56.0/27 ip4:81.88.62.160/27 ip4:81.88.63.128/27 ip4:195.7.249.16/29 include:dominiando.email ~all v=spf1 ip4:195.110.101.32/27 ip4:195.110.122.160/27 ip4:195.110.123.0/27 ip4:185.2.4.0/22 ip4:81.88.49.224/27 ip4:195.7.249.29 ip4:81.88.52.0/23 ip4:185.110.66.0/24 ip4:213.158.94.0/23 ip4:81.88.54.154/32 ip4:3.73.27.108 ip4:3.125.172.46 ~all v=spf1 mx ip4:81.88.54.130 ip4:81.88.54.152/30 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX maegenwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maegenwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maegenwil.ch"
+ ],
+ "guess":[
+ "gemeinde-maegenwil.ch",
+ "maegenwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4033":{
"bfs":"4033",
"name":"Mellingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"mellingen.ch",
"mx":[
"cleanmail.1solution.ch"
],
"spf":"v=spf1 mx ip4:185.185.200.130 -all",
"provider":"independent",
- "mx_asns":[
- 25091
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mellingen.ch"
+ ],
+ "guess":[
+ "mellingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4034":{
"bfs":"4034",
"name":"Neuenhof",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"neuenhof.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 mx include:_spfmx.rizag.ch a:mist.com a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:_spfmx.rizag.ch a:mist.com a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services include:spf.abacuscity.ch -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neuenhof.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neuenhof.ch"
+ ],
+ "guess":[
+ "neuenhof.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4035":{
"bfs":"4035",
"name":"Niederrohrdorf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"niederrohrdorf.ch",
"mx":[
"cleanmail.1solution.ch"
],
"spf":"v=spf1 mx ip4:185.185.200.130 ~all",
"provider":"independent",
- "mx_asns":[
- 25091
- ],
- "autodiscover":{
- "autodiscover_srv":"mail.niederrohrdorf.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederrohrdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederrohrdorf.ch"
+ ],
+ "guess":[
+ "niederrohrdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4037":{
"bfs":"4037",
"name":"Oberrohrdorf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oberrohrdorf.ch",
"mx":[
"mail.format-ag.ch",
@@ -22286,18 +76612,46 @@
],
"spf":"v=spf1 a include:_spf.talus.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberrohrdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberrohrdorf.ch"
+ ],
+ "guess":[
+ "oberrohrdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4038":{
"bfs":"4038",
"name":"Obersiggenthal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"obersiggenthal.ch",
"mx":[
"elba.iway.ch",
@@ -22305,1683 +76659,7812 @@
],
"spf":"v=spf1 a include:spf.iway.ch include:spf.privasphere.com include:_spf.psm.knowbe4.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:spf.iway.ch include:spf.privasphere.com include:_spf.psm.knowbe4.com ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "mx_asns":[
- 8758
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "convalere.ch",
+ "obersiggenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "obersiggenthal.ch"
+ ],
+ "guess":[
+ "obersiggenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4039":{
"bfs":"4039",
"name":"Remetschwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"remetschwil.ch",
"mx":[
"remetschwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:146.4.17.22/30 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:146.4.17.22/30 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX remetschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.remetschwil.ch CNAME → selector1-remetschwil-ch._domainkey.remetschwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.remetschwil.ch CNAME → selector2-remetschwil-ch._domainkey.remetschwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "remetschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "remetschwil.ch"
+ ],
+ "guess":[
+ "remetschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4040":{
"bfs":"4040",
"name":"Spreitenbach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"spreitenbach.ch",
"mx":[
"spreitenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.92.101.3/32 ip4:81.92.101.1/32 include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.92.101.3/32 ip4:81.92.101.1/32 include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX spreitenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "spreitenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "spreitenbach.ch"
+ ],
+ "guess":[
+ "spreitenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4041":{
"bfs":"4041",
- "name":"Stetten",
- "canton":"",
+ "name":"Stetten (AG)",
+ "canton":"Kanton Aargau",
"domain":"stetten-ag.ch",
"mx":[
"stettenag-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stettenag-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stetten-ag.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stetten-ag.ch"
+ ],
+ "guess":[
+ "stetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4044":{
"bfs":"4044",
"name":"Untersiggenthal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"untersiggenthal.ch",
"mx":[
"untersiggenthal-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:_spf.ch.seppmail.cloud include:_spf.talus.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.ch.seppmail.cloud include:_spf.talus.ch ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"owa.untersiggenthal.ch"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "untersiggenthal.ch"
+ ],
+ "guess":[
+ "untersiggenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4045":{
"bfs":"4045",
"name":"Wettingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wettingen.ch",
"mx":[
"wettingen-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx a:wettingen-ch.relay.seppmail.cloud ip4:217.192.56.150 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:wettingen-ch.relay.seppmail.cloud ip4:217.192.56.150 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "wettingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wettingen.ch"
+ ],
+ "guess":[
+ "wettingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4046":{
"bfs":"4046",
"name":"Wohlenschwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wohlenschwil.ch",
"mx":[
"wohlenschwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wohlenschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wohlenschwil.ch CNAME → selector1-wohlenschwil-ch._domainkey.gemeindewohlenschwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wohlenschwil.ch CNAME → selector2-wohlenschwil-ch._domainkey.gemeindewohlenschwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wohlenschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wohlenschwil.ch"
+ ],
+ "guess":[
+ "wohlenschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4047":{
"bfs":"4047",
"name":"Würenlingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wuerenlingen.ch",
"mx":[
"wuerenlingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.47.108.196 ip4:46.14.37.138 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.47.108.196 ip4:46.14.37.138 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wuerenlingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wuerenlingen.ch CNAME → selector1-wuerenlingen-ch._domainkey.gemwuer.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wuerenlingen.ch CNAME → selector2-wuerenlingen-ch._domainkey.gemwuer.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wuerenlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wuerenlingen.ch"
+ ],
+ "guess":[
+ "wuerenlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4048":{
"bfs":"4048",
"name":"Würenlos",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wuerenlos.ch",
"mx":[
"wuerenlos-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:149.126.4.85 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:149.126.4.85 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wuerenlos-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wuerenlos.ch CNAME → selector1-wuerenlos-ch._domainkey.gemeindewuerenlosch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wuerenlos.ch CNAME → selector2-wuerenlos-ch._domainkey.gemeindewuerenlosch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wuerenlos.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wuerenlos.ch"
+ ],
+ "guess":[
+ "wuerenlos.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4049":{
"bfs":"4049",
"name":"Ehrendingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"ehrendingen.ch",
"mx":[
"ehrendingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.22.71.80 ip4:63.35.86.4 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.22.71.80 ip4:63.35.86.4 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ehrendingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ehrendingen.ch CNAME → selector1-ehrendingen-ch._domainkey.ehrendingen365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ehrendingen.ch CNAME → selector2-ehrendingen-ch._domainkey.ehrendingen365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"aws",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 16509 matches aws"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ehrendingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ehrendingen.ch"
+ ],
+ "guess":[
+ "ehrendingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4061":{
"bfs":"4061",
- "name":"Arni",
- "canton":"",
+ "name":"Arni (AG)",
+ "canton":"Kanton Aargau",
"domain":"arni-ag.ch",
"mx":[
"arniag-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX arniag-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arni-ag.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arni-ag.ch"
+ ],
+ "guess":[
+ "arni.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4062":{
"bfs":"4062",
"name":"Berikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"berikon.ch",
"mx":[
"berikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX berikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.berikon.ch CNAME → selector1-berikon-ch._domainkey.gemeindeberikonag.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.berikon.ch CNAME → selector2-berikon-ch._domainkey.gemeindeberikonag.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "berikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "berikon.ch"
+ ],
+ "guess":[
+ "berikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4063":{
"bfs":"4063",
- "name":"Bremgarten",
- "canton":"",
+ "name":"Bremgarten (AG)",
+ "canton":"Kanton Aargau",
"domain":"bremgarten.ch",
"mx":[
"bremgarten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:83.144.243.114 include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:83.144.243.114 include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bremgarten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bremgarten.ch CNAME → selector1-bremgarten-ch._domainkey.informatikbremgarten.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bremgarten.ch CNAME → selector2-bremgarten-ch._domainkey.informatikbremgarten.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bremgarten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bremgarten.ch"
+ ],
+ "guess":[
+ "bremgarten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4064":{
"bfs":"4064",
"name":"Büttikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"buettikon.ch",
"mx":[
"buettikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buettikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buettikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buettikon.ch"
+ ],
+ "guess":[
+ "buettikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4065":{
"bfs":"4065",
"name":"Dottikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"dottikon.ch",
"mx":[
"dottikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:149.126.4.62 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:149.126.4.62 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dottikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.dottikon.ch CNAME → selector1-dottikon-ch._domainkey.vgdh.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.dottikon.ch CNAME → selector2-dottikon-ch._domainkey.vgdh.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dottikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dottikon.ch"
+ ],
+ "guess":[
+ "dottikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4066":{
"bfs":"4066",
"name":"Eggenwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"eggenwil.ch",
"mx":[
"gateway.eggenwil.ch"
],
"spf":"v=spf1 mx ip4:195.64.138.0/23 ip4:46.14.246.188/30 ip4:212.25.16.23 ip4:193.135.56.0/23 a:gateway.eggenwil.ch a:mail.interdesk.ch a:idmx.interdesk.ch a:exmail.xauth.ch a:scan01.globalmx.ch a:scan02.globalmx.ch a:smtp.globalmx.ch ~all",
"provider":"independent",
- "mx_asns":[
- 8758
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.xauth.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eggenwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eggenwil.ch"
+ ],
+ "guess":[
+ "eggenwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4067":{
"bfs":"4067",
"name":"Fischbach-Göslikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"fischbach-goeslikon.ch",
"mx":[
"fischbachgoeslikon-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:smtprelay.dialogcloud.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:smtprelay.dialogcloud.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:78.40.79.211 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fischbachgoeslikon-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fischbach-goeslikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fischbach-goeslikon.ch"
+ ],
+ "guess":[
+ "fischbach-goeslikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4068":{
"bfs":"4068",
"name":"Hägglingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"haegglingen.ch",
"mx":[
"haegglingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.135.56.16 ip4:89.28.153.227 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.16 ip4:89.28.153.227 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX haegglingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.haegglingen.ch CNAME → selector1-haegglingen-ch._domainkey.vgdh.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.haegglingen.ch CNAME → selector2-haegglingen-ch._domainkey.vgdh.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "haegglingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "haegglingen.ch"
+ ],
+ "guess":[
+ "haegglingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4071":{
"bfs":"4071",
"name":"Jonen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"jonen.ch",
"mx":[
"jonen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:195.48.58.75 ip4:62.202.30.155 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.48.58.75 ip4:62.202.30.155 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX jonen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jonen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jonen.ch"
+ ],
+ "guess":[
+ "jonen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4072":{
"bfs":"4072",
- "name":"Niederwil",
- "canton":"",
+ "name":"Niederwil (AG)",
+ "canton":"Kanton Aargau",
"domain":"niederwil.ch",
"mx":[
"niederwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niederwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.niederwil.ch CNAME → selector1-niederwil-ch._domainkey.gemeindeniederwilag.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.niederwil.ch CNAME → selector2-niederwil-ch._domainkey.gemeindeniederwilag.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "niederwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "niederwil.ch"
+ ],
+ "guess":[
+ "niederwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4073":{
"bfs":"4073",
"name":"Oberlunkhofen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oberlunkhofen.ch",
"mx":[
"oberlunkhofen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.135.56.4 ip4:193.135.56.5 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.4 ip4:193.135.56.5 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberlunkhofen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberlunkhofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberlunkhofen.ch"
+ ],
+ "guess":[
+ "oberlunkhofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4074":{
"bfs":"4074",
"name":"Oberwil-Lieli",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oberwil-lieli.ch",
"mx":[
"oberwillieli-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:195.48.58.75 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberwillieli-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberwil-lieli.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberwil-lieli.ch"
+ ],
+ "guess":[
+ "oberwil-lieli.ch",
+ "oberwillieli.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4075":{
"bfs":"4075",
"name":"Rudolfstetten-Friedlisberg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"rudolfstetten.ch",
"mx":[
"rudolfstetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rudolfstetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rudolfstetten.ch CNAME → selector1-rudolfstetten-ch._domainkey.rudolfstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rudolfstetten.ch CNAME → selector2-rudolfstetten-ch._domainkey.rudolfstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rudolfstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rudolfstetten.ch"
+ ],
+ "guess":[
+ "rudolfstetten-friedlisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4076":{
"bfs":"4076",
"name":"Sarmenstorf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"sarmenstorf.ch",
"mx":[
"sarmenstorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 +include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 +include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sarmenstorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.sarmenstorf.ch CNAME → selector1-sarmenstorf-ch._domainkey.sarmenstorf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.sarmenstorf.ch CNAME → selector2-sarmenstorf-ch._domainkey.sarmenstorf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sarmenstorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sarmenstorf.ch"
+ ],
+ "guess":[
+ "sarmenstorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4077":{
"bfs":"4077",
"name":"Tägerig",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"taegerig.ch",
"mx":[
"taegerig-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.0/24 a:mail.i-web.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.0/24 a:mail.i-web.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX taegerig-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.taegerig.ch CNAME → selector1-taegerig-ch._domainkey.gdetaegerig.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.taegerig.ch CNAME → selector2-taegerig-ch._domainkey.gdetaegerig.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "taegerig.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "taegerig.ch"
+ ],
+ "guess":[
+ "taegerig.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4078":{
"bfs":"4078",
"name":"Uezwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"uezwil.ch",
"mx":[
"uezwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.axelion.services"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX uezwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.uezwil.ch CNAME → selector1-uezwil-ch._domainkey.uezwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.uezwil.ch CNAME → selector2-uezwil-ch._domainkey.uezwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "uezwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "uezwil.ch"
+ ],
+ "guess":[
+ "uezwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4079":{
"bfs":"4079",
"name":"Unterlunkhofen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"unterlunkhofen.ch",
"mx":[
"unterlunkhofen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.76 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.76 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX unterlunkhofen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.unterlunkhofen.ch CNAME → selector1-unterlunkhofen-ch._domainkey.gemeindeunterlunkhofench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.unterlunkhofen.ch CNAME → selector2-unterlunkhofen-ch._domainkey.gemeindeunterlunkhofench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "unterlunkhofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unterlunkhofen.ch"
+ ],
+ "guess":[
+ "unterlunkhofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4080":{
"bfs":"4080",
"name":"Villmergen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"villmergen.ch",
"mx":[
"villmergen-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:_spf.ch.seppmail.cloud include:_spf.i-web.ch mx:hin.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.ch.seppmail.cloud include:_spf.i-web.ch mx:hin.ch ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"owa.villmergen.ch"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "villmergen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "villmergen.ch"
+ ],
+ "guess":[
+ "villmergen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4081":{
"bfs":"4081",
"name":"Widen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"widen.ch",
"mx":[
"widen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.incamail.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.incamail.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX widen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.widen.ch CNAME → selector1-widen-ch._domainkey.widen365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.widen.ch CNAME → selector2-widen-ch._domainkey.widen365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "widen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "widen.ch"
+ ],
+ "guess":[
+ "widen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4082":{
"bfs":"4082",
- "name":"Wohlen",
- "canton":"",
+ "name":"Wohlen (AG)",
+ "canton":"Kanton Aargau",
"domain":"wohlen.ch",
"mx":[
"wohlen-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:_spf.i-web.ch ip4:194.209.188.212 ip4:10.4.254.50 include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:_spf.i-web.ch ip4:194.209.188.212 ip4:10.4.254.50 include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "wohlen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wohlen.ch"
+ ],
+ "guess":[
+ "wohlen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4083":{
"bfs":"4083",
"name":"Zufikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zufikon.ch",
"mx":[
"zufikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:46.14.11.134 ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:80.74.128.222 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:46.14.11.134 ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:80.74.128.222 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zufikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.zufikon.ch CNAME → selector1-zufikon-ch._domainkey.gemeindezufikon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.zufikon.ch CNAME → selector2-zufikon-ch._domainkey.gemeindezufikon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zufikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zufikon.ch"
+ ],
+ "guess":[
+ "zufikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4084":{
"bfs":"4084",
"name":"Islisberg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"islisberg.ch",
"mx":[
"islisberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.0/24 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.0/24 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX islisberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.islisberg.ch CNAME → selector1-islisberg-ch._domainkey.gemeindeislisbergch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.islisberg.ch CNAME → selector2-islisberg-ch._domainkey.gemeindeislisbergch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "islisberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "islisberg.ch"
+ ],
+ "guess":[
+ "islisberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4091":{
"bfs":"4091",
"name":"Auenstein",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"auenstein.ch",
"mx":[
"auenstein-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX auenstein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.auenstein.ch CNAME → selector1-auenstein-ch._domainkey.auenstein.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.auenstein.ch CNAME → selector2-auenstein-ch._domainkey.auenstein.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "auenstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "auenstein.ch"
+ ],
+ "guess":[
+ "auenstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4092":{
"bfs":"4092",
"name":"Birr",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"birr.ch",
"mx":[
"cleanmail.1solution.ch"
],
"spf":"v=spf1 mx a:relay.dtp.ch ip4:193.135.56.6 ip4:80.254.185.101 ip4:52.157.149.216 ip4:20.52.138.252 -all",
"provider":"independent",
- "mx_asns":[
- 25091
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.birr.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "birr.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "birr.ch"
+ ],
+ "guess":[
+ "birr.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4093":{
"bfs":"4093",
"name":"Birrhard",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"birrhard.ch",
"mx":[
"birrhard-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX birrhard-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "birrhard.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "birrhard.ch"
+ ],
+ "guess":[
+ "birrhard.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4095":{
"bfs":"4095",
"name":"Brugg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"brugg.ch",
"mx":[
"brugg-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.brugg.ch CNAME → selector1-brugg-ch._domainkey.bruggch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.brugg.ch CNAME → selector2-brugg-ch._domainkey.bruggch.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
"gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
- ]
+ "sources_detail":{
+ "override":[
+ "brugg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4099":{
"bfs":"4099",
"name":"Habsburg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"habsburg.ch",
"mx":[
"habsburg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX habsburg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "habsburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "habsburg.ch"
+ ],
+ "guess":[
+ "habsburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4100":{
"bfs":"4100",
- "name":"Hausen",
- "canton":"",
+ "name":"Hausen (AG)",
+ "canton":"Kanton Aargau",
"domain":"hausen.swiss",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hausen.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hausen.swiss"
+ ],
+ "guess":[
+ "hausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4104":{
"bfs":"4104",
"name":"Lupfig",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"lupfig.ch",
"mx":[
"lupfig-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lupfig-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.lupfig.ch CNAME → selector1-lupfig-ch._domainkey.gemeindelupfigch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.lupfig.ch CNAME → selector2-lupfig-ch._domainkey.gemeindelupfigch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lupfig.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lupfig.ch"
+ ],
+ "guess":[
+ "lupfig.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4105":{
"bfs":"4105",
"name":"Mandach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"mandach.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.mandach.ch CNAME → selector1-mandach-ch._domainkey.gemeindemandachch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.mandach.ch CNAME → selector2-mandach-ch._domainkey.gemeindemandachch.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mandach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mandach.ch"
+ ],
+ "guess":[
+ "mandach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4106":{
"bfs":"4106",
"name":"Mönthal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"moenthal.ch",
"mx":[
"moenthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:193.47.104.5 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:193.47.104.5 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX moenthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.moenthal.ch CNAME → selector1-moenthal-ch._domainkey.gemeindemoenthalch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.moenthal.ch CNAME → selector2-moenthal-ch._domainkey.gemeindemoenthalch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "moenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moenthal.ch"
+ ],
+ "guess":[
+ "moenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4107":{
"bfs":"4107",
"name":"Mülligen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"muelligen.ch",
"mx":[
"muelligen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 ip4:193.135.58.22 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 ip4:193.135.58.22 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muelligen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.muelligen.ch CNAME → selector1-muelligen-ch._domainkey.muelligen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.muelligen.ch CNAME → selector2-muelligen-ch._domainkey.muelligen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muelligen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muelligen.ch"
+ ],
+ "guess":[
+ "muelligen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4110":{
"bfs":"4110",
"name":"Remigen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"remigen.ch",
"mx":[
"remigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a a:remigen.ch include:spf.protection.outlook.com include:_spf.rzobt.ch include:spf.escapenet.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a a:remigen.ch include:spf.protection.outlook.com include:_spf.rzobt.ch include:spf.escapenet.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:193.9.122.0/24 ip6:2a05:d014:564:200::/56 include:_spf.sui-inter.net -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX remigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "remigen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "remigen.ch"
+ ],
+ "guess":[
+ "remigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4111":{
"bfs":"4111",
"name":"Riniken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"riniken.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ~all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "riniken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "riniken.ch"
+ ],
+ "guess":[
+ "riniken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4112":{
"bfs":"4112",
"name":"Rüfenach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"ruefenach.ch",
"mx":[
"ruefenach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ruefenach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ruefenach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ruefenach.ch"
+ ],
+ "guess":[
+ "ruefenach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4117":{
"bfs":"4117",
- "name":"Thalheim",
- "canton":"",
+ "name":"Thalheim (AG)",
+ "canton":"Kanton Aargau",
"domain":"gemeinde-thalheim.ch",
"mx":[
"gemeindethalheim-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindethalheim-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-thalheim.ch"
+ ],
+ "guess":[
+ "gemeinde-thalheim.ch",
+ "thalheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4120":{
"bfs":"4120",
- "name":"Veltheim",
- "canton":"",
+ "name":"Veltheim (AG)",
+ "canton":"Kanton Aargau",
"domain":"veltheim.ch",
"mx":[
"veltheim-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX veltheim-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.veltheim.ch CNAME → selector1-veltheim-ch._domainkey.gemeindeveltheimch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.veltheim.ch CNAME → selector2-veltheim-ch._domainkey.gemeindeveltheimch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "veltheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "veltheim.ch"
+ ],
+ "guess":[
+ "veltheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4121":{
"bfs":"4121",
"name":"Villigen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"villigen.ch",
"mx":[
"villigen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.sui-inter.net include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.sui-inter.net include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villigen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "villigen.ch"
+ ],
+ "guess":[
+ "gemeinde-villigen.ch",
+ "villigen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4123":{
"bfs":"4123",
"name":"Windisch",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"windisch.ch",
"mx":[
"windisch-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 include:_spf.ch.seppmail.cloud ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.ch.seppmail.cloud ip4:193.135.56.6 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.windisch.ch CNAME → selector1-windisch-ch._domainkey.windischch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.windisch.ch CNAME → selector2-windisch-ch._domainkey.windischch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "windisch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "windisch.ch"
+ ],
+ "guess":[
+ "windisch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4124":{
"bfs":"4124",
"name":"Bözberg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"boezberg.ch",
"mx":[
"boezberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:213.193.96.234 ip4:193.47.120.62 ip4:193.47.120.63 include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.rzobt.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:213.193.96.234 ip4:193.47.120.62 ip4:193.47.120.63 include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.rzobt.ch -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boezberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.boezberg.ch CNAME → selector1-boezberg-ch._domainkey.boezberg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.boezberg.ch CNAME → selector2-boezberg-ch._domainkey.boezberg.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boezberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boezberg.ch"
+ ],
+ "guess":[
+ "boezberg.ch",
+ "gemeinde-boezberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4125":{
"bfs":"4125",
"name":"Schinznach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schinznach.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schinznach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schinznach.ch"
+ ],
+ "guess":[
+ "schinznach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4131":{
"bfs":"4131",
"name":"Beinwil am See",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"beinwilamsee.ch",
"mx":[
"beinwilamsee-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX beinwilamsee-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.beinwilamsee.ch CNAME → selector1-beinwilamsee-ch._domainkey.beinwilamsee365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.beinwilamsee.ch CNAME → selector2-beinwilamsee-ch._domainkey.beinwilamsee365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "beinwilamsee.ch"
+ ],
+ "guess":[
+ "beinwilamsee.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4132":{
"bfs":"4132",
"name":"Birrwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"birrwil.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "birrwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "birrwil.ch"
+ ],
+ "guess":[
+ "birrwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4134":{
"bfs":"4134",
"name":"Dürrenäsch",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"duerrenaesch.ch",
"mx":[
"duerrenaesch-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX duerrenaesch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "duerrenaesch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duerrenaesch.ch"
+ ],
+ "guess":[
+ "duerrenaesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4135":{
"bfs":"4135",
"name":"Gontenschwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"gontenschwil.ch",
"mx":[
"gontenschwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.104.34.104 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.104.34.104 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gontenschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gontenschwil.ch CNAME → selector1-gontenschwil-ch._domainkey.gontenschwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gontenschwil.ch CNAME → selector2-gontenschwil-ch._domainkey.gontenschwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gontenschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gontenschwil.ch"
+ ],
+ "guess":[
+ "gontenschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4136":{
"bfs":"4136",
"name":"Holziken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"holziken.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 ip4:193.47.120.0/24 include:rzmail.hi-ag.ch include:egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 ip4:193.47.120.0/24 include:rzmail.hi-ag.ch include:egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "holziken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "holziken.ch"
+ ],
+ "guess":[
+ "holziken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4137":{
"bfs":"4137",
- "name":"Leimbach",
- "canton":"",
+ "name":"Leimbach (AG)",
+ "canton":"Kanton Aargau",
"domain":"leimbach.swiss",
"mx":[
"leimbach-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:195.48.58.75 include:spf1.egeko.ch include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:195.48.58.75 include:spf1.egeko.ch include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leimbach-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leimbach.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leimbach.swiss"
+ ],
+ "guess":[
+ "leimbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4138":{
"bfs":"4138",
"name":"Leutwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"leutwil.ch",
"mx":[
"leutwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leutwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leutwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leutwil.ch"
+ ],
+ "guess":[
+ "leutwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4139":{
"bfs":"4139",
"name":"Menziken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"menziken.ch",
"mx":[
"menziken-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:securemail.menziken.ch include:spf.protection.outlook.com include:_spf-saas.rubicon.eu -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:securemail.menziken.ch include:spf.protection.outlook.com include:_spf-saas.rubicon.eu -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.104.34.104 ip4:193.104.34.50 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX menziken-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "menziken.ch"
+ ],
+ "guess":[
+ "menziken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4140":{
"bfs":"4140",
"name":"Oberkulm",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oberkulm.ch",
"mx":[
"oberkulm-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberkulm-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberkulm.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberkulm.ch"
+ ],
+ "guess":[
+ "oberkulm.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4141":{
"bfs":"4141",
- "name":"Reinach",
- "canton":"",
+ "name":"Reinach (AG)",
+ "canton":"Kanton Aargau",
"domain":"reinach.ch",
"mx":[
"reinach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.0/24 ip4:193.47.108.196 ip4:83.173.248.210 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.0/24 ip4:193.47.108.196 ip4:83.173.248.210 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX reinach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.reinach.ch CNAME → selector1-reinach-ch._domainkey.reinach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.reinach.ch CNAME → selector2-reinach-ch._domainkey.reinach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "reinach.ch"
+ ],
+ "guess":[
+ "reinach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4142":{
"bfs":"4142",
"name":"Schlossrued",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schlossrued.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:spf1.egeko.ch include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:spf1.egeko.ch include:rzmail.hi-ag.ch -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schlossrued.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schlossrued.ch"
+ ],
+ "guess":[
+ "schlossrued.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4143":{
"bfs":"4143",
"name":"Schmiedrued",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schmiedrued-walde.ch",
"mx":[
"schmiedruedwalde-ch02i.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:195.48.58.75 ip4:193.47.120.0/24 ip4:80.74.146.136 include:rzmail.hi-ag.ch v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:195.48.58.75 ip4:193.47.120.0/24 ip4:80.74.146.136 include:rzmail.hi-ag.ch v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schmiedruedwalde-ch02i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "schmiedrued-walde.ch"
+ ],
+ "guess":[
+ "schmiedrued.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4144":{
"bfs":"4144",
"name":"Schöftland",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schoeftland.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoeftland.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoeftland.ch"
+ ],
+ "guess":[
+ "schoeftland.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4145":{
"bfs":"4145",
- "name":"Teufenthal",
- "canton":"",
+ "name":"Teufenthal (AG)",
+ "canton":"Kanton Aargau",
"domain":"teufenthal.ch",
"mx":[
"teufenthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:mail.rubicon.eu -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:mail.rubicon.eu -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX teufenthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.teufenthal.ch CNAME → selector1-teufenthal-ch._domainkey.gemeindeteufenthal.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.teufenthal.ch CNAME → selector2-teufenthal-ch._domainkey.gemeindeteufenthal.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "teufenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "teufenthal.ch"
+ ],
+ "guess":[
+ "teufenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4146":{
"bfs":"4146",
"name":"Unterkulm",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"unterkulm.ch",
"mx":[
"unterkulm-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:81.62.141.146 include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:81.62.141.146 include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":77.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "unterkulm.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "unterkulm.ch"
+ ],
+ "guess":[
+ "unterkulm.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4147":{
"bfs":"4147",
"name":"Zetzwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zetzwil.ch",
"mx":[
"zetzwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:84.75.1.7 ip4:193.135.56.6 include:_spf-saas.rubicon.eu -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:84.75.1.7 ip4:193.135.56.6 include:_spf-saas.rubicon.eu -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.104.34.104 ip4:193.104.34.50 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zetzwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.zetzwil.ch CNAME → selector1-zetzwil-ch._domainkey.zetzwil.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.zetzwil.ch CNAME → selector2-zetzwil-ch._domainkey.zetzwil.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zetzwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zetzwil.ch"
+ ],
+ "guess":[
+ "zetzwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4161":{
"bfs":"4161",
"name":"Eiken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"eiken.ch",
"mx":[
"eiken-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eiken-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.eiken.ch CNAME → selector1-eiken-ch._domainkey.eikench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.eiken.ch CNAME → selector2-eiken-ch._domainkey.eikench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eiken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eiken.ch"
+ ],
+ "guess":[
+ "eiken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4163":{
"bfs":"4163",
"name":"Frick",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"frick.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "frick.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "frick.ch"
+ ],
+ "guess":[
+ "frick.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4164":{
"bfs":"4164",
"name":"Gansingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"gansingen.ch",
"mx":[
"gansingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.90.195.154 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.90.195.154 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gansingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gansingen.ch CNAME → selector1-gansingen-ch._domainkey.gemeindegansingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gansingen.ch CNAME → selector2-gansingen-ch._domainkey.gemeindegansingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gansingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gansingen.ch"
+ ],
+ "guess":[
+ "gansingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4165":{
"bfs":"4165",
"name":"Gipf-Oberfrick",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"gipf-oberfrick.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:81.62.142.155 -all",
"provider":"aws",
- "mx_asns":[
- 16509
- ]
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gipf-oberfrick.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gipf-oberfrick.ch"
+ ],
+ "guess":[
+ "gipf-oberfrick.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4169":{
"bfs":"4169",
"name":"Kaisten",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"kaisten.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kaisten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kaisten.ch"
+ ],
+ "guess":[
+ "kaisten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4170":{
"bfs":"4170",
"name":"Laufenburg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"laufenburg.ch",
"mx":[
"laufenburg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf.protection.outlook.com ~all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX laufenburg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.laufenburg.ch CNAME → selector1-laufenburg-ch._domainkey.laufenburgcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.laufenburg.ch CNAME → selector2-laufenburg-ch._domainkey.laufenburgcloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover SRV → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "laufenburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "laufenburg.ch"
+ ],
+ "guess":[
+ "laufenburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4172":{
"bfs":"4172",
- "name":"Münchwilen",
- "canton":"",
+ "name":"Münchwilen (AG)",
+ "canton":"Kanton Aargau",
"domain":"muenchwilen-ag.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf1.egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf1.egeko.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muenchwilen-ag.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muenchwilen-ag.ch"
+ ],
+ "guess":[
+ "muenchwilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4173":{
"bfs":"4173",
- "name":"Oberhof AG",
- "canton":"",
+ "name":"Oberhof",
+ "canton":"Kanton Aargau",
"domain":"oberhof.ch",
"mx":[
"oberhof-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberhof-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberhof.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberhof.ch"
+ ],
+ "guess":[
+ "oberhof.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4175":{
"bfs":"4175",
"name":"Oeschgen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oeschgen.ch",
"mx":[
"oeschgen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oeschgen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oeschgen.ch CNAME → selector1-oeschgen-ch._domainkey.gemeindeoeschgench.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oeschgen.ch CNAME → selector2-oeschgen-ch._domainkey.gemeindeoeschgench.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oeschgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oeschgen.ch"
+ ],
+ "guess":[
+ "oeschgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4176":{
"bfs":"4176",
"name":"Schwaderloch",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schwaderloch.ch",
"mx":[
"schwaderloch-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schwaderloch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schwaderloch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schwaderloch.ch"
+ ],
+ "guess":[
+ "schwaderloch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4177":{
"bfs":"4177",
"name":"Sisseln",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"sisseln.ch",
"mx":[
"sisseln-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sisseln-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.sisseln.ch CNAME → selector1-sisseln-ch._domainkey.sisseln.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.sisseln.ch CNAME → selector2-sisseln-ch._domainkey.sisseln.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sisseln.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sisseln.ch"
+ ],
+ "guess":[
+ "sisseln.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4181":{
"bfs":"4181",
"name":"Wittnau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wittnau.ch",
"mx":[
"wittnau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:146.4.71.186 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:146.4.71.186 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wittnau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wittnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wittnau.ch"
+ ],
+ "guess":[
+ "wittnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4182":{
"bfs":"4182",
"name":"Wölflinswil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"woelflinswil.ch",
"mx":[
"woelflinswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX woelflinswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.woelflinswil.ch CNAME → selector1-woelflinswil-ch._domainkey.gemeindewoelflinswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.woelflinswil.ch CNAME → selector2-woelflinswil-ch._domainkey.gemeindewoelflinswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "woelflinswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "woelflinswil.ch"
+ ],
+ "guess":[
+ "woelflinswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4183":{
"bfs":"4183",
"name":"Zeihen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zeihen.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:_spf.talus.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:_spf.talus.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zeihen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zeihen.ch"
+ ],
+ "guess":[
+ "zeihen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4184":{
"bfs":"4184",
"name":"Mettauertal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"mettauertal.ch",
"mx":[
"mettauertal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:sui-inter.net ip4:46.140.27.106 include:_spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:sui-inter.net ip4:46.140.27.106 include:_spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mettauertal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.mettauertal.ch CNAME → selector1-mettauertal-ch._domainkey.gemeindemettauertalch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.mettauertal.ch CNAME → selector2-mettauertal-ch._domainkey.gemeindemettauertalch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "mettauertal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4185":{
"bfs":"4185",
"name":"Böztal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"boeztal.ch",
"mx":[
"boeztal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:80.74.144.28 ip4:81.62.247.42 ip4:83.173.200.124 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:80.74.144.28 ip4:81.62.247.42 ip4:83.173.200.124 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boeztal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.boeztal.ch CNAME → selector1-boeztal-ch._domainkey.boeztal.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.boeztal.ch CNAME → selector2-boeztal-ch._domainkey.boeztal.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boeztal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boeztal.ch"
+ ],
+ "guess":[
+ "boeztal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4186":{
"bfs":"4186",
"name":"Herznach-Ueken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"herznach-ueken.ch",
"mx":[
"herznachueken-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.47.120.62 ip4:193.47.120.63 ip4:195.48.58.75 include:spf.protection.outlook.com include:egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.47.120.62 ip4:193.47.120.63 ip4:195.48.58.75 include:spf.protection.outlook.com include:egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX herznachueken-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "3way.ch",
+ "herznach-ueken.ch",
+ "kommpakt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herznach-ueken.ch"
+ ],
+ "guess":[
+ "herznach-ueken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4191":{
"bfs":"4191",
"name":"Ammerswil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"ammerswil.ch",
"mx":[
"ammerswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:91.118.154.96 ip4:62.99.130.28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:91.118.154.96 ip4:62.99.130.28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ammerswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ammerswil.ch CNAME → selector1-ammerswil-ch._domainkey.seengen365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ammerswil.ch CNAME → selector2-ammerswil-ch._domainkey.seengen365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ammerswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ammerswil.ch"
+ ],
+ "guess":[
+ "ammerswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4192":{
"bfs":"4192",
"name":"Boniswil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"boniswil.ch",
"mx":[
"boniswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boniswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.boniswil.ch CNAME → selector1-boniswil-ch._domainkey.boniswil365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.boniswil.ch CNAME → selector2-boniswil-ch._domainkey.boniswil365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boniswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boniswil.ch"
+ ],
+ "guess":[
+ "boniswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4193":{
"bfs":"4193",
"name":"Brunegg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"brunegg.ch",
"mx":[
"brunegg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brunegg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brunegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brunegg.ch"
+ ],
+ "guess":[
+ "brunegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4194":{
"bfs":"4194",
"name":"Dintikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"dintikon.ch",
"mx":[
"dintikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dintikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dintikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dintikon.ch"
+ ],
+ "guess":[
+ "dintikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4195":{
"bfs":"4195",
"name":"Egliswil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"egliswil.ch",
"mx":[
"egliswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.58.35 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.58.35 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX egliswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.egliswil.ch CNAME → selector1-egliswil-ch._domainkey.seengen365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.egliswil.ch CNAME → selector2-egliswil-ch._domainkey.seengen365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "egliswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "egliswil.ch"
+ ],
+ "guess":[
+ "egliswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4196":{
"bfs":"4196",
"name":"Fahrwangen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"fahrwangen.ch",
"mx":[
"fahrwangen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.47.104.5 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.47.104.5 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fahrwangen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.fahrwangen.ch CNAME → selector1-fahrwangen-ch._domainkey.fahrwangen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.fahrwangen.ch CNAME → selector2-fahrwangen-ch._domainkey.fahrwangen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fahrwangen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fahrwangen.ch"
+ ],
+ "guess":[
+ "fahrwangen.ch",
+ "gemeinde-fahrwangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4197":{
"bfs":"4197",
"name":"Hallwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"hallwil.ch",
"mx":[
"hallwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hallwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hallwil.ch CNAME → selector1-hallwil-ch._domainkey.gemeindehallwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hallwil.ch CNAME → selector2-hallwil-ch._domainkey.gemeindehallwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hallwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hallwil.ch"
+ ],
+ "guess":[
+ "hallwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4198":{
"bfs":"4198",
"name":"Hendschiken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"hendschiken.ch",
"mx":[
"hendschiken-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.62.190.74 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.190.74 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hendschiken-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hendschiken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hendschiken.ch"
+ ],
+ "guess":[
+ "hendschiken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4199":{
"bfs":"4199",
- "name":"Holderbank",
- "canton":"",
+ "name":"Holderbank (AG)",
+ "canton":"Kanton Aargau",
"domain":"holderbank.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 mx include:_spf.holderbank.ch -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "holderbank.ch"
+ ],
+ "guess":[
+ "holderbank.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4200":{
"bfs":"4200",
"name":"Hunzenschwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"hunzenschwil.ch",
"mx":[
"mail.format-ag.ch",
@@ -23991,18 +84474,40 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hunzenschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hunzenschwil.ch"
+ ],
+ "guess":[
+ "hunzenschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4201":{
"bfs":"4201",
"name":"Lenzburg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"lenzburg.ch",
"mx":[
"mta1.abxsec.com",
@@ -24010,540 +84515,2480 @@
],
"spf":"v=spf1 mx a:mail1.mysign.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:mx.dvbern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mail1.mysign.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:mx.dvbern.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.125.165.24/31 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "lenzburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lenzburg.ch"
+ ],
+ "guess":[
+ "lenzburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4202":{
"bfs":"4202",
"name":"Meisterschwanden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"meisterschwanden.ch",
"mx":[
"meisterschwanden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX meisterschwanden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "meisterschwanden.ch"
+ ],
+ "guess":[
+ "meisterschwanden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4203":{
"bfs":"4203",
"name":"Möriken-Wildegg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"moeriken-wildegg.ch",
"mx":[
"moerikenwildegg-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 ip4:194.56.218.181 include:spf.protection.outlook.com include:spf.talus.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 ip4:194.56.218.181 include:spf.protection.outlook.com include:spf.talus.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX moerikenwildegg-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.moeriken-wildegg.ch CNAME → selector1-moerikenwildegg-ch02b._domainkey.moerikenwildeggch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.moeriken-wildegg.ch CNAME → selector2-moerikenwildegg-ch02b._domainkey.moerikenwildeggch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "moeriken-wildegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moeriken-wildegg.ch"
+ ],
+ "guess":[
+ "moeriken-wildegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4204":{
"bfs":"4204",
"name":"Niederlenz",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"niederlenz.ch",
"mx":[
"niederlenz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niederlenz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.niederlenz.ch CNAME → selector1-niederlenz-ch._domainkey.niederlenz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.niederlenz.ch CNAME → selector2-niederlenz-ch._domainkey.niederlenz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "niederlenz.ch"
+ ],
+ "guess":[
+ "niederlenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4205":{
"bfs":"4205",
"name":"Othmarsingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"othmarsingen.ch",
"mx":[
"othmarsingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.abacuscity.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.abacuscity.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX othmarsingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.othmarsingen.ch CNAME → selector1-othmarsingen-ch._domainkey.gemeindeothmarsingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.othmarsingen.ch CNAME → selector2-othmarsingen-ch._domainkey.gemeindeothmarsingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "othmarsingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "othmarsingen.ch"
+ ],
+ "guess":[
+ "othmarsingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4206":{
"bfs":"4206",
"name":"Rupperswil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"rupperswil.ch",
"mx":[
"mailrelay01.ascanius.ch"
],
"spf":"v=spf1 mx a include:_spf.i-web.ch a:mailrelay01.ascanius.ch a:mail.rupperswil.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a include:_spf.i-web.ch a:mailrelay01.ascanius.ch a:mail.rupperswil.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 198635
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rupperswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rupperswil.ch"
+ ],
+ "guess":[
+ "rupperswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4207":{
"bfs":"4207",
"name":"Schafisheim",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schafisheim.ch",
"mx":[
"schafisheim-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:195.65.10.12 ip4:195.65.10.15 ip4:193.47.120.0/24 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.65.10.12 ip4:195.65.10.15 ip4:193.47.120.0/24 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schafisheim-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.schafisheim.ch CNAME → selector1-schafisheim-ch._domainkey.schafisheim.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.schafisheim.ch CNAME → selector2-schafisheim-ch._domainkey.schafisheim.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schafisheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schafisheim.ch"
+ ],
+ "guess":[
+ "schafisheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4208":{
"bfs":"4208",
"name":"Seengen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"seengen.ch",
"mx":[
"seengen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX seengen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.seengen.ch CNAME → selector1-seengen-ch._domainkey.seengen365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.seengen.ch CNAME → selector2-seengen-ch._domainkey.seengen365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "seengen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seengen.ch"
+ ],
+ "guess":[
+ "seengen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4209":{
"bfs":"4209",
"name":"Seon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"seon.ch",
"mx":[
"seon-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx ip4:83.173.217.10 ip4:193.47.120.62 ip4:193.47.120.63 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:83.173.217.10 ip4:193.47.120.62 ip4:193.47.120.63 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "seon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "seon.ch"
+ ],
+ "guess":[
+ "seon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4210":{
"bfs":"4210",
"name":"Staufen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"staufen.ch",
"mx":[
"srv32.hli.ch",
"srv35.hli.ch"
],
"spf":"v=spf1 a mx ip4:81.62.225.254 -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 1836,
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.staufen.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "staufen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "staufen.ch"
+ ],
+ "guess":[
+ "staufen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4221":{
"bfs":"4221",
"name":"Abtwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"abtwilag.ch",
"mx":[
"abtwilag-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX abtwilag-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.abtwilag.ch CNAME → selector1-abtwilag-ch._domainkey.gemeindeabtwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.abtwilag.ch CNAME → selector2-abtwilag-ch._domainkey.gemeindeabtwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "abtwilag.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "abtwilag.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"4222":{
"bfs":"4222",
"name":"Aristau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"aristau.ch",
"mx":[
"aristau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:webcms.ruf.ch ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aristau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aristau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aristau.ch"
+ ],
+ "guess":[
+ "aristau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4223":{
"bfs":"4223",
"name":"Auw",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"auw.ch",
"mx":[
"auw-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX auw-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "auw.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "auw.ch"
+ ],
+ "guess":[
+ "auw.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4224":{
"bfs":"4224",
"name":"Beinwil (Freiamt)",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"beinwil.ch",
"mx":[
"beinwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX beinwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "beinwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "beinwil.ch"
+ ],
+ "guess":[
+ "beinwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4226":{
"bfs":"4226",
"name":"Besenbüren",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"besenbueren.ch",
"mx":[
"besenbueren-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:rzmail.hi-ag.ch +include:spf1.egeko.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:rzmail.hi-ag.ch +include:spf1.egeko.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX besenbueren-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.besenbueren.ch CNAME → selector1-besenbueren-ch._domainkey.gemeindebesenbueren.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.besenbueren.ch CNAME → selector2-besenbueren-ch._domainkey.gemeindebesenbueren.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "besenbueren.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "besenbueren.ch"
+ ],
+ "guess":[
+ "besenbueren.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4227":{
"bfs":"4227",
"name":"Bettwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"bettwil.ch",
"mx":[
"bettwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.0/24 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.0/24 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bettwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bettwil.ch"
+ ],
+ "guess":[
+ "bettwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4228":{
"bfs":"4228",
"name":"Boswil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"boswil.ch",
"mx":[
"boswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.boswil.ch CNAME → selector1-boswil-ch._domainkey.gemeindeboswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.boswil.ch CNAME → selector2-boswil-ch._domainkey.gemeindeboswilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boswil.ch"
+ ],
+ "guess":[
+ "boswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4229":{
"bfs":"4229",
"name":"Bünzen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"buenzen.ch",
"mx":[
"buenzen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.47.104.5 ip4:195.48.58.75 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.47.104.5 ip4:195.48.58.75 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buenzen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buenzen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buenzen.ch"
+ ],
+ "guess":[
+ "buenzen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4230":{
"bfs":"4230",
"name":"Buttwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"buttwil.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buttwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buttwil.ch"
+ ],
+ "guess":[
+ "buttwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4231":{
"bfs":"4231",
"name":"Dietwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"dietwil.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dietwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dietwil.ch"
+ ],
+ "guess":[
+ "dietwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4232":{
"bfs":"4232",
"name":"Geltwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"geltwil.ch",
"mx":[
"geltwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX geltwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "geltwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "geltwil.ch"
+ ],
+ "guess":[
+ "geltwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4233":{
"bfs":"4233",
"name":"Kallern",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"kallern.ch",
"mx":[
"kallern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 ip4:146.4.3.166 include:rzmail.hi-ag.ch include:spf.protection.outlook.com a:spf.hostfactory.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 ip4:146.4.3.166 include:rzmail.hi-ag.ch include:spf.protection.outlook.com a:spf.hostfactory.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kallern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kallern.ch CNAME → selector1-kallern-ch._domainkey.kallern365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kallern.ch CNAME → selector2-kallern-ch._domainkey.kallern365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kallern.ch",
+ "zso-freiamt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kallern.ch"
+ ],
+ "guess":[
+ "kallern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4234":{
"bfs":"4234",
"name":"Merenschwand",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"merenschwand.ch",
"mx":[
"merenschwand-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:webcms.ruf.ch ip4:193.135.56.6 ip4:84.253.8.36 include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch ip4:193.135.56.6 ip4:84.253.8.36 include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX merenschwand-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "merenschwand.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "merenschwand.ch"
+ ],
+ "guess":[
+ "merenschwand.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4235":{
"bfs":"4235",
"name":"Mühlau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"muehlau.ch",
"mx":[
"muehlau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muehlau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muehlau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muehlau.ch"
+ ],
+ "guess":[
+ "muehlau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4236":{
"bfs":"4236",
- "name":"Muri",
- "canton":"",
+ "name":"Muri (AG)",
+ "canton":"Kanton Aargau",
"domain":"muri.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch include:spf.mail.digitalparking.ch include:_spf.psm.knowbe4.com include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch include:spf.mail.digitalparking.ch include:_spf.psm.knowbe4.com include:spf.abacuscity.ch -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muri.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muri.ch"
+ ],
+ "guess":[
+ "muri.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4237":{
"bfs":"4237",
"name":"Oberrüti",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oberrueti.ch",
"mx":[
"oberrueti-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:195.48.58.75 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com mx ip4:195.48.58.75 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberrueti-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oberrueti.ch CNAME → selector1-oberrueti-ch._domainkey.oberruetich.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oberrueti.ch CNAME → selector2-oberrueti-ch._domainkey.oberruetich.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberrueti.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberrueti.ch"
+ ],
+ "guess":[
+ "oberrueti.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4238":{
"bfs":"4238",
"name":"Rottenschwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"rottenschwil.ch",
"mx":[
"rottenschwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:195.48.58.75 include:servers.mcsv.net include:relay.mailchannels.net include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com include:swisscrow.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.48.58.75 include:servers.mcsv.net include:relay.mailchannels.net include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com include:swisscrow.ch -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a mx include:serv70882139.secure-node.at -all v=spf1 ip4:128.204.134.188 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rottenschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rottenschwil.ch CNAME → selector1-rottenschwil-ch._domainkey.gemeinderottenschwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rottenschwil.ch CNAME → selector2-rottenschwil-ch._domainkey.gemeinderottenschwilch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rottenschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rottenschwil.ch"
+ ],
+ "guess":[
+ "rottenschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4239":{
"bfs":"4239",
"name":"Sins",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"sins.ch",
"mx":[
- "inbound-smtp.eu-west-1.amazonaws.com"
- ],
- "spf":"v=spf1 mx ip4:193.135.56.0/24 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
- "provider":"aws",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.0/24 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "sins-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 mx ip4:193.135.56.0/24 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sins.ch"
+ ],
+ "guess":[
+ "sins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4240":{
"bfs":"4240",
"name":"Waltenschwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"waltenschwil.ch",
"mx":[
"waltenschwil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.243.197.0/24 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.243.197.0/24 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX waltenschwil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.waltenschwil.ch CNAME → selector1-waltenschwil-ch._domainkey.waltenschwil365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.waltenschwil.ch CNAME → selector2-waltenschwil-ch._domainkey.waltenschwil365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "waltenschwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "waltenschwil.ch"
+ ],
+ "guess":[
+ "waltenschwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4251":{
"bfs":"4251",
"name":"Hellikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"hellikon.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a:delta.magicsystems.ch ip4:195.48.58.75 include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a:delta.magicsystems.ch ip4:195.48.58.75 include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hellikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hellikon.ch"
+ ],
+ "guess":[
+ "hellikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4252":{
"bfs":"4252",
"name":"Kaiseraugst",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"kaiseraugst.ch",
"mx":[
"feedback-smtp.eu-cenral-1.amazonses.com",
@@ -24551,274 +86996,1223 @@
],
"spf":"v=spf1 ip4:193.47.104.5 ip4:193.47.108.198 include:spf.protection.outlook.com include:amazonses.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.47.104.5 ip4:193.47.108.198 include:spf.protection.outlook.com include:amazonses.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kaiseraugst-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"SPF include:amazonses.com matches aws"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.kaiseraugst.ch CNAME → selector1-kaiseraugst-ch._domainkey.kagst.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.kaiseraugst.ch CNAME → selector2-kaiseraugst-ch._domainkey.kagst.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "kaiseraugst.ch"
+ ],
+ "guess":[
+ "kaiseraugst.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4253":{
"bfs":"4253",
"name":"Magden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"magden.ch",
"mx":[
"magden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 a:mail.obt-services.ch ip4:193.47.104.5 include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 a:mail.obt-services.ch ip4:193.47.104.5 include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX magden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.magden.ch CNAME → selector1-magden-ch._domainkey.magdencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.magden.ch CNAME → selector2-magden-ch._domainkey.magdencloud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "magden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "magden.ch"
+ ],
+ "guess":[
+ "magden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4254":{
"bfs":"4254",
"name":"Möhlin",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"moehlin.ch",
"mx":[
"moehlin-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "moehlin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moehlin.ch"
+ ],
+ "guess":[
+ "moehlin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4255":{
"bfs":"4255",
"name":"Mumpf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"mumpf.ch",
"mx":[
"mumpf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mumpf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mumpf.ch"
+ ],
+ "guess":[
+ "mumpf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4256":{
"bfs":"4256",
"name":"Obermumpf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"obermumpf.ch",
"mx":[
"obermumpf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:exchange-spf.netzone.ch ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:exchange-spf.netzone.ch ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:edgepilot.com include:spf.netzone.ch -all v=spf1 include:spf1.appriver.com include:spf2.appriver.com include:spf.protection.outlook.com ~all v=spf1 ip4:212.243.197.0/26 ip6:2001:918:ff23:197:30::1/77 -all v=spf1 ip4:204.232.250.0/24 ip4:5.152.185.0/24 ip4:8.19.118.0/24 ip4:8.31.233.0/24 ip4:72.3.212.195 ip4:5.152.188.0/24 ip4:174.37.170.192/27 ~all v=spf1 ip4:75.126.84.128/26 ip4:67.228.8.0/25 ip4:67.227.149.19 ip4:64.56.208.32/27 ip4:67.228.91.90 ip4:67.228.158.174 ip4:174.36.44.116/30 ip4:50.201.66.168 ip4:63.71.8.0/21 ip4:199.30.232.0/21 ip4:74.203.184.0/23 ip4:207.195.176.0/20 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX obermumpf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "obermumpf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "obermumpf.ch"
+ ],
+ "guess":[
+ "obermumpf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4257":{
"bfs":"4257",
"name":"Olsberg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"olsberg.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "olsberg.ch"
+ ],
+ "guess":[
+ "olsberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4258":{
"bfs":"4258",
"name":"Rheinfelden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"rheinfelden.ch",
"mx":[
"rheinfelden-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx include:_spf.i-web.ch include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com include:spf.protect.kvnbw.de include:_spf.psm.knowbe4.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spf.i-web.ch include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com include:spf.protect.kvnbw.de include:_spf.psm.knowbe4.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.59.36.32/27 ip4:194.0.94.32/28 ip4:195.189.93.7 ip4:195.189.93.21 ip4:195.189.93.24/29 ip4:195.189.93.96 ip4:195.189.93.149 ip4:195.189.93.151 ip4:195.189.93.154 ip4:195.189.93.163 ip4:195.189.93.164 ip4:195.189.94.64/27 ip4:195.189.95.87 ip4:87.106.113.62 ~all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rheinfelden.ch"
+ ],
+ "guess":[
+ "rheinfelden.ch",
+ "stadt-rheinfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4259":{
"bfs":"4259",
"name":"Schupfart",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schupfart.ch",
"mx":[
"schupfart-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.47.120.64 ip4:193.47.120.65 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.47.120.64 ip4:193.47.120.65 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schupfart-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "schupfart.ch"
+ ],
+ "guess":[
+ "schupfart.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4260":{
"bfs":"4260",
- "name":"Stein",
- "canton":"",
+ "name":"Stein (AG)",
+ "canton":"Kanton Aargau",
"domain":"gemeinde-stein.ch",
"mx":[
"gemeindestein-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindestein-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gemeinde-stein.ch CNAME → selector1-gemeindestein-ch02b._domainkey.gemeindesteinagch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gemeinde-stein.ch CNAME → selector2-gemeindestein-ch02b._domainkey.gemeindesteinagch.onmicrosoft.com"
+ },
+ {
+ "kind":"dmarc",
+ "provider":"microsoft",
+ "weight":0.02,
+ "detail":"DMARC record matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeinde-stein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-stein.ch"
+ ],
+ "guess":[
+ "gemeinde-stein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4261":{
"bfs":"4261",
"name":"Wallbach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wallbach.ch",
"mx":[
"wallbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX wallbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.wallbach.ch CNAME → selector1-wallbach-ch._domainkey.gemeindewallbach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.wallbach.ch CNAME → selector2-wallbach-ch._domainkey.gemeindewallbach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wallbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wallbach.ch"
+ ],
+ "guess":[
+ "wallbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4262":{
"bfs":"4262",
"name":"Wegenstetten",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wegenstetten.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wegenstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wegenstetten.ch"
+ ],
+ "guess":[
+ "wegenstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4263":{
"bfs":"4263",
"name":"Zeiningen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zeiningen.ch",
"mx":[
"zeiningen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all v=spf1 ip4:195.48.58.75 -all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zeiningen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zeiningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zeiningen.ch"
+ ],
+ "guess":[
+ "zeiningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4264":{
"bfs":"4264",
"name":"Zuzgen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zuzgen.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all v=spf1 ip4:195.48.58.75 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zuzgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zuzgen.ch"
+ ],
+ "guess":[
+ "zuzgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4271":{
"bfs":"4271",
"name":"Aarburg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"aarburg.ch",
"mx":[
"aarburg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.abacuscity.ch include:_spf.i-web.ch ip4:193.5.117.74 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.abacuscity.ch include:_spf.i-web.ch ip4:193.5.117.74 include:spf.protection.outlook.com -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aarburg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aarburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aarburg.ch"
+ ],
+ "guess":[
+ "aarburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4273":{
"bfs":"4273",
"name":"Bottenwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"bottenwil.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":84.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bottenwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bottenwil.ch"
+ ],
+ "guess":[
+ "bottenwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4274":{
"bfs":"4274",
"name":"Brittnau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"brittnau.ch",
"mx":[
"brittnau1.cleanmail.ch",
@@ -24826,38 +88220,111 @@
],
"spf":"v=spf1 mx include:_cmspf.cleanmail.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_cmspf.cleanmail.ch -all v=spf1 ip4:91.208.173.0/24 ip4:91.212.152.0/24 ip4:195.141.89.0/24 ip4:185.188.196.0/24 ip4:83.145.109.0/24 ip4:31.172.161.0/24 ip4:80.83.63.195/32 ip4:80.83.63.196/32 a:outbound.appriver.com ~all",
- "gateway":"cleanmail",
- "mx_asns":[
- 15547
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"mail.brittnau.ch",
- "autodiscover_srv":"autodiscover.brittnau.ch"
- }
+ "gateway":"cleanmail",
+ "sources_detail":{
+ "scrape":[
+ "brittnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brittnau.ch"
+ ],
+ "guess":[
+ "brittnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4275":{
"bfs":"4275",
"name":"Kirchleerau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"kirchleerau.ch",
"mx":[
"kirchleerau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX kirchleerau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kirchleerau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kirchleerau.ch"
+ ],
+ "guess":[
+ "kirchleerau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4276":{
"bfs":"4276",
"name":"Kölliken",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"koelliken.ch",
"mx":[
"mail.format-ag.ch",
@@ -24867,55 +88334,228 @@
],
"spf":"v=spf1 include:_spf.talus.ch ip4:193.135.56.6 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.talus.ch ip4:193.135.56.6 ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "koelliken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "koelliken.ch"
+ ],
+ "guess":[
+ "koelliken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4277":{
"bfs":"4277",
"name":"Moosleerau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"moosleerau.ch",
"mx":[
"moosleerau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.193.80.0/27 ip4:91.118.154.96 ip4:62.99.130.28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:213.193.80.0/27 ip4:91.118.154.96 ip4:62.99.130.28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.moosleerau.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX moosleerau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "moosleerau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moosleerau.ch"
+ ],
+ "guess":[
+ "moosleerau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4279":{
"bfs":"4279",
"name":"Murgenthal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"murgenthal.ch",
"mx":[
"murgenthal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX murgenthal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.murgenthal.ch CNAME → selector1-murgenthal-ch._domainkey.murgenthal.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.murgenthal.ch CNAME → selector2-murgenthal-ch._domainkey.murgenthal.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "murgenthal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "murgenthal.ch"
+ ],
+ "guess":[
+ "murgenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4280":{
"bfs":"4280",
"name":"Oftringen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"oftringen.ch",
"mx":[
"mta1.abxsec.com",
@@ -24923,19 +88563,59 @@
],
"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:213.193.80.0/27 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.ch.seppmail.cloud ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:213.193.80.0/27 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.ch.seppmail.cloud ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "oftringen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oftringen.ch"
+ ],
+ "guess":[
+ "oftringen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4281":{
"bfs":"4281",
"name":"Reitnau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"reitnau.ch",
"mx":[
"mail.format-ag.ch",
@@ -24943,38 +88623,117 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "reitnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "reitnau.ch"
+ ],
+ "guess":[
+ "reitnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4282":{
"bfs":"4282",
"name":"Rothrist",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"rothrist.ch",
"mx":[
"rothrist-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 mx a:relay.mailchannels.net ip4:193.47.120.0/24 ip4:46.232.183.86 ip4:178.174.91.83 include:relay.mailchannels.net include:_spf.sui-inter.net include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:relay.mailchannels.net ip4:193.47.120.0/24 ip4:46.232.183.86 ip4:178.174.91.83 include:relay.mailchannels.net include:_spf.sui-inter.net include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:86.119.9.0/29 ip4:86.119.57.0/29 ip4:217.20.196.64/27 ip6:2001:620:5ca1:4018::/64 ip6:2001:620:5ca1:200b::/64 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rothrist.ch CNAME → selector1-rothrist-ch._domainkey.rothristch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rothrist.ch CNAME → selector2-rothrist-ch._domainkey.rothristch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"seppmail",
+ "sources_detail":{
+ "scrape":[
+ "rothrist.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rothrist.ch"
+ ],
+ "guess":[
+ "rothrist.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4283":{
"bfs":"4283",
"name":"Safenwil",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"safenwil.ch",
"mx":[
"mail.format-ag.ch",
@@ -24984,36 +88743,134 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "safenwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "safenwil.ch"
+ ],
+ "guess":[
+ "safenwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4284":{
"bfs":"4284",
"name":"Staffelbach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"staffelbach.ch",
"mx":[
"staffelbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.47.120.0/24 include:spf.hli.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.47.120.0/24 include:spf.hli.ch include:spf.protection.outlook.com -all v=spf1 ip4:212.41.195.176/29 ip4:81.221.33.0/28 ip4:195.48.41.0/28 ip4:195.49.62.24/29 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX staffelbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "staffelbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "staffelbach.ch"
+ ],
+ "guess":[
+ "staffelbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4285":{
"bfs":"4285",
"name":"Strengelbach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"strengelbach.ch",
"mx":[
"mail.format-ag.ch",
@@ -25023,37 +88880,79 @@
],
"spf":"v=spf1 a include:_spf.talus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch ~all v=spf1 ip4:194.56.218.0/24 ~all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "strengelbach.ch"
+ ],
+ "guess":[
+ "strengelbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4286":{
"bfs":"4286",
"name":"Uerkheim",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"uerkheim.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "uerkheim.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "uerkheim.ch"
+ ],
+ "guess":[
+ "uerkheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4287":{
"bfs":"4287",
"name":"Vordemwald",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"vordemwald.ch",
"mx":[
"mail.format-ag.ch",
@@ -25061,441 +88960,1643 @@
],
"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all v=spf1 ip4:194.56.218.0/24 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 202035
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.talus.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vordemwald.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vordemwald.ch"
+ ],
+ "guess":[
+ "vordemwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4288":{
"bfs":"4288",
"name":"Wiliberg",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"wiliberg.ch",
"mx":[
"wiliberg-ch.gate.seppmail.cloud"
],
"spf":"v=spf1 ip4:193.135.56.0/24 include:egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:193.135.56.0/24 include:egeko.ch -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
"gateway":"seppmail",
- "mx_asns":[
- 559,
- 24951
- ]
+ "sources_detail":{
+ "scrape":[
+ "wiliberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wiliberg.ch"
+ ],
+ "guess":[
+ "wiliberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4289":{
"bfs":"4289",
"name":"Zofingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zofingen.ch",
"mx":[
"zofingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zofingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.zofingen.ch CNAME → selector1-zofingen-ch._domainkey.stadtzofingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.zofingen.ch CNAME → selector2-zofingen-ch._domainkey.stadtzofingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "zofingen.ch"
+ ],
+ "guess":[
+ "zofingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4303":{
"bfs":"4303",
"name":"Böttstein",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"boettstein.ch",
"mx":[
"boettstein-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boettstein-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boettstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boettstein.ch"
+ ],
+ "guess":[
+ "boettstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4304":{
"bfs":"4304",
"name":"Döttingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"doettingen.ch",
"mx":[
"doettingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:spf.abacuscity.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:spf.abacuscity.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX doettingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "doettingen.ch",
+ "megura.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "doettingen.ch"
+ ],
+ "guess":[
+ "doettingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4305":{
"bfs":"4305",
"name":"Endingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"endingen.ch",
"mx":[
"endingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX endingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.endingen.ch CNAME → selector1-endingen-ch._domainkey.gemendingen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.endingen.ch CNAME → selector2-endingen-ch._domainkey.gemendingen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "endingen.ch",
+ "unterendingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "endingen.ch"
+ ],
+ "guess":[
+ "endingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4306":{
"bfs":"4306",
"name":"Fisibach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"fisibach.ch",
"mx":[
"inbound-smtp.eu-west-1.amazonaws.com"
],
"spf":"v=spf1 a mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch -all",
"provider":"aws",
- "spf_resolved":"v=spf1 a mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch -all v=spf1 ip4:195.48.58.75 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_srv":"rzowa.hi-ag.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fisibach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fisibach.ch"
+ ],
+ "guess":[
+ "fisibach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4307":{
"bfs":"4307",
"name":"Full-Reuenthal",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"full-reuenthal.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "full-reuenthal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4309":{
"bfs":"4309",
"name":"Klingnau",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"klingnau.ch",
"mx":[
"klingnau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com ip4:195.48.58.75 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com ip4:195.48.58.75 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX klingnau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "klingnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "klingnau.ch"
+ ],
+ "guess":[
+ "klingnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4310":{
"bfs":"4310",
- "name":"Koblenz AG",
- "canton":"",
+ "name":"Koblenz",
+ "canton":"Kanton Aargau",
"domain":"koblenz.ch",
"mx":[
"koblenz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX koblenz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "koblenz.ch",
+ "megura.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "koblenz.ch"
+ ],
+ "guess":[
+ "koblenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4311":{
"bfs":"4311",
"name":"Leibstadt",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"leibstadt.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "full-reuenthal.ch",
+ "leibstadt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leibstadt.ch"
+ ],
+ "guess":[
+ "leibstadt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4312":{
"bfs":"4312",
- "name":"Lengnau",
- "canton":"",
+ "name":"Lengnau (AG)",
+ "canton":"Kanton Aargau",
"domain":"lengnau-ag.ch",
"mx":[
"lengnauag-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lengnauag-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lengnau-ag.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lengnau-ag.ch"
+ ],
+ "guess":[
+ "lengnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4313":{
"bfs":"4313",
"name":"Leuggern",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"leuggern.ch",
"mx":[
"leuggern-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leuggern-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.leuggern.ch CNAME → selector1-leuggern-ch._domainkey.leuggern.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.leuggern.ch CNAME → selector2-leuggern-ch._domainkey.leuggern.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leuggern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leuggern.ch"
+ ],
+ "guess":[
+ "leuggern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4314":{
"bfs":"4314",
"name":"Mellikon",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"mellikon.ch",
"mx":[
"mellikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mellikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mellikon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mellikon.ch"
+ ],
+ "guess":[
+ "mellikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4318":{
"bfs":"4318",
"name":"Schneisingen",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"schneisingen.ch",
"mx":[
"schneisingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX schneisingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schneisingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schneisingen.ch"
+ ],
+ "guess":[
+ "schneisingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4319":{
"bfs":"4319",
"name":"Siglistorf",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"siglistorf.ch",
"mx":[
"siglistorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX siglistorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "siglistorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "siglistorf.ch"
+ ],
+ "guess":[
+ "siglistorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4320":{
"bfs":"4320",
"name":"Tegerfelden",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"tegerfelden.ch",
"mx":[
"tegerfelden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tegerfelden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tegerfelden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tegerfelden.ch"
+ ],
+ "guess":[
+ "tegerfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4324":{
"bfs":"4324",
"name":"Zurzach",
- "canton":"",
+ "canton":"Kanton Aargau",
"domain":"zurzach.ch",
"mx":[
"zurzach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zurzach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zurzach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zurzach.ch"
+ ],
+ "guess":[
+ "zurzach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4401":{
"bfs":"4401",
"name":"Arbon",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"arbon.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 include:spf.abxsec.com include:_spf.sui-inter.net +mx +a ip4:193.135.56.6 ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.abxsec.com include:_spf.sui-inter.net +mx +a ip4:193.135.56.6 ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arbon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arbon.ch"
+ ],
+ "guess":[
+ "arbon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4406":{
"bfs":"4406",
"name":"Dozwil",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"dozwil.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:cs5.chrisign.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:cs5.chrisign.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:217.150.252.8 ~all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dozwil.ch",
+ "ew-dozwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dozwil.ch"
+ ],
+ "guess":[
+ "dozwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4411":{
"bfs":"4411",
"name":"Egnach",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"egnach.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "egnach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "egnach.ch"
+ ],
+ "guess":[
+ "egnach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4416":{
"bfs":"4416",
"name":"Hefenhofen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"hefenhofen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hefenhofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hefenhofen.ch"
+ ],
+ "guess":[
+ "hefenhofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4421":{
"bfs":"4421",
"name":"Horn",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"horn.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:194.209.60.21 ip4:194.209.60.7 include:spf1.egeko.ch include:_spf.i-web.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:194.209.60.21 ip4:194.209.60.7 include:spf1.egeko.ch include:_spf.i-web.ch include:spf.abxsec.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "horn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "horn.ch"
+ ],
+ "guess":[
+ "horn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4426":{
"bfs":"4426",
"name":"Kesswil",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"kesswil.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.abxsec.com include:egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.abxsec.com include:egeko.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kesswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kesswil.ch"
+ ],
+ "guess":[
+ "kesswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4431":{
"bfs":"4431",
- "name":"Roggwil",
- "canton":"",
+ "name":"Roggwil (TG)",
+ "canton":"Kanton Thurgau",
"domain":"roggwil-tg.ch",
"mx":[
"mx01.sui-inter.net",
@@ -25504,372 +90605,1285 @@
],
"spf":"v=spf1 include:tg.ch include:_spf.sui-inter.net +mx +a ip4:213.193.123.194 ip4:193.135.56.6 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:tg.ch include:_spf.sui-inter.net +mx +a ip4:213.193.123.194 ip4:193.135.56.6 ~all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "roggwil-tg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "roggwil-tg.ch"
+ ],
+ "guess":[
+ "roggwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4436":{
"bfs":"4436",
"name":"Romanshorn",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"romanshorn.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "romanshorn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "romanshorn.ch"
+ ],
+ "guess":[
+ "romanshorn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4441":{
"bfs":"4441",
"name":"Salmsach",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"salmsach.ch",
"mx":[
"salmsach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:tg.ch include:_spf.i-web.ch ip4:89.186.196.202 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:tg.ch include:_spf.i-web.ch ip4:89.186.196.202 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX salmsach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.salmsach.ch CNAME → selector1-salmsach-ch._domainkey.salmsach.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.salmsach.ch CNAME → selector2-salmsach-ch._domainkey.salmsach.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "salmsach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "salmsach.ch"
+ ],
+ "guess":[
+ "salmsach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4446":{
"bfs":"4446",
"name":"Sommeri",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"sommeri.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sommeri.ch"
+ ],
+ "guess":[
+ "sommeri.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4451":{
"bfs":"4451",
"name":"Uttwil",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"uttwil.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:egeko.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "uttwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "uttwil.ch"
+ ],
+ "guess":[
+ "uttwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4461":{
"bfs":"4461",
"name":"Amriswil",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"amriswil.ch",
"mx":[
"amriswil-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx mx:hin.ch ip4:193.25.102.54 include:_spf.i-web.ch include:spf.protection.outlook.com include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx mx:hin.ch ip4:193.25.102.54 include:_spf.i-web.ch include:spf.protection.outlook.com include:spf.abxsec.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX amriswil-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.amriswil.ch CNAME → selector1-amriswil-ch._domainkey.amriswiltg.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.amriswil.ch CNAME → selector2-amriswil-ch._domainkey.amriswiltg.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "amriswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "amriswil.ch"
+ ],
+ "guess":[
+ "amriswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4471":{
"bfs":"4471",
"name":"Bischofszell",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"bischofszell.ch",
"mx":[
"bischofszell-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.25.102.170 include:spf.protection.outlook.com include:_spf.i-web.ch include:tg.ch include:_spf.psm.knowbe4.com include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.25.102.170 include:spf.protection.outlook.com include:_spf.i-web.ch include:tg.ch include:_spf.psm.knowbe4.com include:spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bischofszell-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bischofszell.ch CNAME → selector1-bischofszell-ch._domainkey.bischofszell.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bischofszell.ch CNAME → selector2-bischofszell-ch._domainkey.bischofszell.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bischofszell.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bischofszell.ch"
+ ],
+ "guess":[
+ "bischofszell.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4476":{
"bfs":"4476",
"name":"Erlen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"erlen.ch",
"mx":[
"erlen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:89.186.196.82/29 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:89.186.196.82/29 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX erlen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "erlen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "erlen.ch"
+ ],
+ "guess":[
+ "erlen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4486":{
"bfs":"4486",
"name":"Hauptwil-Gottshaus",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"hauptwil-gottshaus.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":62.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pghg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hauptwil-gottshaus.ch"
+ ],
+ "guess":[
+ "hauptwil-gottshaus.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"4495":{
"bfs":"4495",
"name":"Hohentannen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"hohentannen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "hohentannen.ch"
+ ],
+ "guess":[
+ "hohentannen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4501":{
"bfs":"4501",
"name":"Kradolf-Schönenberg",
- "canton":"",
- "domain":"kradolf-schoenenberg.ch",
+ "canton":"Kanton Thurgau",
+ "domain":"pgks.ch",
"mx":[
- "mx1.onlime.ch",
- "mx2.onlime.ch"
+ "mta1.abxsec.com",
+ "mta2.abxsec.com"
],
- "spf":"v=spf1 a mx include:spf.onlime.ch ~all",
+ "spf":"v=spf1 a mx include:_spf.abxsec.com include:spf.onlime.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.onlime.ch ~all v=spf1 ip4:46.231.201.128/25 ip4:78.46.160.129 ip4:162.55.162.196 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "gateway":"abxsec",
+ "sources_detail":{
+ "override":[
+ "pgks.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4506":{
"bfs":"4506",
"name":"Sulgen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"sulgen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 ip4:212.90.214.230 ip4:83.173.225.254 ip4:193.135.56.6 include:tg.ch include:spf.protection.outlook.com include:spf.ess.de.barracudanetworks.com include:spf.mailxpert.ch include:spf.protection.cyon.net include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:212.90.214.230 ip4:83.173.225.254 ip4:193.135.56.6 include:tg.ch include:spf.protection.outlook.com include:spf.ess.de.barracudanetworks.com include:spf.mailxpert.ch include:spf.protection.cyon.net include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:35.157.190.224/27 ip4:18.185.115.192/26 ip4:18.184.203.224/27 -all v=spf1 ip4:91.233.182.0/24 ip4:193.17.79.203 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch",
- "autodiscover_srv":"autodiscoverknd.tg.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sulgen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sulgen.ch"
+ ],
+ "guess":[
+ "sulgen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4511":{
"bfs":"4511",
"name":"Zihlschlacht-Sitterdorf",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"zihlschlacht-sitterdorf.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zihlschlacht-sitterdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zihlschlacht-sitterdorf.ch"
+ ],
+ "guess":[
+ "zihlschlacht-sitterdorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4536":{
"bfs":"4536",
"name":"Basadingen-Schlattingen",
- "canton":"",
- "domain":"basadingen-schlattingen.ch",
+ "canton":"Kanton Thurgau",
+ "domain":"pg-bs.ch",
"mx":[
"mx.pg-bs.ch"
],
- "spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "spf":"v=spf1 mx -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "pg-bs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4545":{
"bfs":"4545",
"name":"Diessenhofen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"diessenhofen.ch",
"mx":[
"diessenhofen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf.abxsec.com include:mandrillapp.com a:mail.ostendis.ch a:mta1.tg.ch a:mta2.tg.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf.abxsec.com include:mandrillapp.com a:mail.ostendis.ch a:mta1.tg.ch a:mta2.tg.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 include:spf.mandrillapp.com ~all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX diessenhofen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.diessenhofen.ch CNAME → selector1-diessenhofen-ch._domainkey.rathausdh.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.diessenhofen.ch CNAME → selector2-diessenhofen-ch._domainkey.rathausdh.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "diessenhofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "diessenhofen.ch"
+ ],
+ "guess":[
+ "diessenhofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4546":{
"bfs":"4546",
- "name":"Schlatt",
- "canton":"",
+ "name":"Schlatt (TG)",
+ "canton":"Kanton Thurgau",
"domain":"schlatt.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schlatt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schlatt.ch"
+ ],
+ "guess":[
+ "schlatt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4551":{
"bfs":"4551",
"name":"Aadorf",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"aadorf.ch",
"mx":[
"aadorf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"autodiscover.aadorf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aadorf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aadorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aadorf.ch"
+ ],
+ "guess":[
+ "aadorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4561":{
"bfs":"4561",
"name":"Felben-Wellhausen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"felben-wellhausen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abacuscity.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "felben-wellhausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "felben-wellhausen.ch"
+ ],
+ "guess":[
+ "felben-wellhausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4566":{
"bfs":"4566",
"name":"Frauenfeld",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"frauenfeld.ch",
"mx":[
"mail.stadtfrauenfeld.ch"
],
"spf":"v=spf1 redirect:stadtfrauenfeld.ch",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "frauenfeld.ch"
+ ],
+ "guess":[
+ "frauenfeld.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4571":{
"bfs":"4571",
"name":"Gachnang",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"gachnang.ch",
"mx":[
"gachnang-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:tg.ch include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gachnang-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gachnang.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gachnang.ch"
+ ],
+ "guess":[
+ "gachnang.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4590":{
"bfs":"4590",
"name":"Hüttlingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"huettlingen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "huettlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "huettlingen.ch"
+ ],
+ "guess":[
+ "huettlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4591":{
"bfs":"4591",
@@ -25881,38 +91895,94 @@
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "matzingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "matzingen.ch"
+ ],
+ "guess":[
+ "matzingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4601":{
"bfs":"4601",
"name":"Neunforn",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"neunforn.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx a:webcms.ruf.ch include:spf1.egeko.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch include:spf1.egeko.ch include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "neunforn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neunforn.ch"
+ ],
+ "guess":[
+ "neunforn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4606":{
"bfs":"4606",
"name":"Stettfurt",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"stettfurt.ch",
"mx":[
"mta1.abxsec.com",
@@ -25920,488 +91990,1581 @@
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"abxsec",
- "mx_asns":[
- 9108
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"abxsec",
+ "sources_detail":{
+ "scrape":[
+ "stettfurt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stettfurt.ch"
+ ],
+ "guess":[
+ "stettfurt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4611":{
"bfs":"4611",
"name":"Thundorf",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"thundorf.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:193.135.56.0/24 -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch",
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thundorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thundorf.ch"
+ ],
+ "guess":[
+ "thundorf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4616":{
"bfs":"4616",
"name":"Uesslingen-Buch",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"uesslingen-buch.ch",
"mx":[
"uesslingenbuch-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf-de.emailsignatures365.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf-de.emailsignatures365.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX uesslingenbuch-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.uesslingen-buch.ch CNAME → selector1-uesslingenbuch-ch02e._domainkey.uesslingenbuch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.uesslingen-buch.ch CNAME → selector2-uesslingenbuch-ch02e._domainkey.uesslingenbuch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "uesslingen-buch.ch"
+ ],
+ "guess":[
+ "uesslingen-buch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4621":{
"bfs":"4621",
"name":"Warth-Weiningen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"warth-weiningen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "warth-weiningen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "warth-weiningen.ch"
+ ],
+ "guess":[
+ "warth-weiningen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4641":{
"bfs":"4641",
"name":"Altnau",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"altnau.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:_spf.i-web.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "altnau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altnau.ch"
+ ],
+ "guess":[
+ "altnau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4643":{
"bfs":"4643",
"name":"Bottighofen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"bottighofen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.i-web.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bottighofen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bottighofen.ch"
+ ],
+ "guess":[
+ "bottighofen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4646":{
"bfs":"4646",
"name":"Ermatingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"ermatingen.ch",
"mx":[
- "mta1.tg.ch",
- "mta2.tg.ch"
- ],
- "spf":"v=spf1 ip4:193.135.56.6 include:_spf.sui-inter.net include:tg.ch include:spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:spf-westeu.emailsignatures365.com +mx +a ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 include:_spf.sui-inter.net include:tg.ch include:spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:spf-westeu.emailsignatures365.com +mx +a ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all v=spf1 ip4:20.93.157.195 ip4:13.93.42.39 ip4:20.86.165.118 ip4:40.69.19.60 ip4:137.116.240.241 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
+ "ermatingen-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:_spf.sui-inter.net include:spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:spf-westeu.emailsignatures365.com +mx +a ~all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ermatingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ermatingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ermatingen.ch"
+ ],
+ "guess":[
+ "ermatingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4651":{
"bfs":"4651",
"name":"Gottlieben",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"gottlieben.ch",
"mx":[
"mx.gottlieben.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:170.205.81.210 ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:170.205.81.210 ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gottlieben.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gottlieben.ch"
+ ],
+ "guess":[
+ "gottlieben.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4656":{
"bfs":"4656",
"name":"Güttingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"guettingen.ch",
"mx":[
"mx.guettingen.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 ip4:81.63.169.2 include:spf.protection.outlook.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 ip4:81.63.169.2 include:spf.protection.outlook.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "guettingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "guettingen.ch"
+ ],
+ "guess":[
+ "guettingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4666":{
"bfs":"4666",
"name":"Kemmental",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"kemmental.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 include:spf.abacuscity.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch ip4:193.135.56.6 include:spf.abacuscity.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kemmental.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kemmental.ch"
+ ],
+ "guess":[
+ "kemmental.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4671":{
"bfs":"4671",
"name":"Kreuzlingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"kreuzlingen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx a:mail.codx.ch include:spf.privasphere.com ip4:212.4.70.131 ip4:193.246.95.120 ip4:193.246.95.101 ip4:149.126.4.25 include:spf.protection.outlook.com include:_spf.abxsec.com include:skr.spf.ymc.host include:_spf.psm.knowbe4.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx a:mail.codx.ch include:spf.privasphere.com ip4:212.4.70.131 ip4:193.246.95.120 ip4:193.246.95.101 ip4:149.126.4.25 include:spf.protection.outlook.com include:_spf.abxsec.com include:skr.spf.ymc.host include:_spf.psm.knowbe4.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:185.110.152.8 ip4:185.110.153.8 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "kreuzlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "kreuzlingen.ch"
+ ],
+ "guess":[
+ "kreuzlingen.ch",
+ "stadt-kreuzlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4681":{
"bfs":"4681",
"name":"Langrickenbach",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"langrickenbach.ch",
"mx":[
"langrickenbach-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:193.135.56.6 ip4:213.55.169.132 include:spf.protection.outlook.com include:tg.ch include:spf.abxsec.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 ip4:213.55.169.132 include:spf.protection.outlook.com include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX langrickenbach-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15796 is Swiss ISP: Netzone AG"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "langrickenbach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "langrickenbach.ch"
+ ],
+ "guess":[
+ "langrickenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4683":{
"bfs":"4683",
"name":"Lengwil",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"lengwil.ch",
"mx":[
"mail1.rzobt.ch",
"mail2.rzobt.ch"
],
"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all v=spf1 ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:185.156.8.32/32 ip4:185.156.8.31/32 ip4:185.156.11.2/32 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.rzobt.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lengwil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lengwil.ch"
+ ],
+ "guess":[
+ "lengwil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4691":{
"bfs":"4691",
"name":"Münsterlingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"muensterlingen.ch",
"mx":[
"muensterlingen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:mx01.securemailbox.ch include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abxsec.com include:spf.eu.signature365.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:mx01.securemailbox.ch include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abxsec.com include:spf.eu.signature365.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:20.54.238.131 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.swhost.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muensterlingen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muensterlingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muensterlingen.ch"
+ ],
+ "guess":[
+ "muensterlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4696":{
"bfs":"4696",
"name":"Tägerwilen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"taegerwilen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 a mx ip4:193.135.56.0/24 ip4:193.135.56.6 ~all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.taegerwilen.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "taegerwilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "taegerwilen.ch"
+ ],
+ "guess":[
+ "taegerwilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4701":{
"bfs":"4701",
"name":"Wäldi",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"waeldi.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "waeldi.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "waeldi.ch"
+ ],
+ "guess":[
+ "waeldi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4711":{
"bfs":"4711",
"name":"Affeltrangen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"affeltrangen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "affeltrangen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "affeltrangen.ch"
+ ],
+ "guess":[
+ "affeltrangen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4716":{
"bfs":"4716",
"name":"Bettwiesen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"bettwiesen.ch",
"mx":[
"bettwiesen.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 include:spf.tmes.trendmicro.eu include:spf.protection.outlook.com ip4:109.205.200.45 ip4:193.135.56.6 mx include:spf.abxsec.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.tmes.trendmicro.eu include:spf.protection.outlook.com ip4:109.205.200.45 ip4:193.135.56.6 mx include:spf.abxsec.com ~all v=spf1 ip4:18.185.115.0/25 ip4:18.185.115.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:3.72.196.143 ip4:18.156.0.20 ip4:35.156.245.132 ip4:18.208.22.124 ip4:18.208.22.125 ip4:18.96.32.128/27 ip6:2a05:d014:10e:d900::/60 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "gateway":"trendmicro",
- "mx_asns":[
- 16509
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"trendmicro",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bettwiesen.ch"
+ ],
+ "guess":[
+ "bettwiesen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4721":{
"bfs":"4721",
"name":"Bichelsee-Balterswil",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"bichelsee-balterswil.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bichelsee-balterswil.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bichelsee-balterswil.ch"
+ ],
+ "guess":[
+ "bichelsee-balterswil.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4723":{
"bfs":"4723",
"name":"Braunau",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"braunau.ch",
"mx":[
"braunau-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:46.4.250.97 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:46.4.250.97 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX braunau-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.braunau.ch CNAME → selector1-braunau-ch._domainkey.gmdbraunau.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.braunau.ch CNAME → selector2-braunau-ch._domainkey.gmdbraunau.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "braunau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "braunau.ch"
+ ],
+ "guess":[
+ "braunau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4724":{
"bfs":"4724",
"name":"Eschlikon",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"eschlikon.ch",
"mx":[
"eschlikon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 include:_spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 include:_spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eschlikon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.eschlikon.ch CNAME → selector1-eschlikon-ch._domainkey.gmdeschlikon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.eschlikon.ch CNAME → selector2-eschlikon-ch._domainkey.gmdeschlikon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eschlikon.ch"
+ ],
+ "guess":[
+ "eschlikon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4726":{
"bfs":"4726",
"name":"Fischingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"fischingen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 include:tg.ch include:spf1.egeko.ch include:spf.abxsec.com include:_spf.sui-inter.net +mx +a ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:tg.ch include:spf1.egeko.ch include:spf.abxsec.com include:_spf.sui-inter.net +mx +a ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fischingen.ch"
+ ],
+ "guess":[
+ "fischingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4741":{
"bfs":"4741",
"name":"Lommis",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"lommis.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 a mx include:spf.abxsec.com include:tg.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx include:spf.abxsec.com include:tg.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lommis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lommis.ch"
+ ],
+ "guess":[
+ "lommis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4746":{
"bfs":"4746",
- "name":"Münchwilen",
- "canton":"",
+ "name":"Münchwilen (TG)",
+ "canton":"Kanton Thurgau",
"domain":"muenchwilen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muenchwilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "muenchwilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4751":{
"bfs":"4751",
- "name":"Rickenbach",
- "canton":"",
+ "name":"Rickenbach (TG)",
+ "canton":"Kanton Thurgau",
"domain":"rickenbach-tg.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:spf.protection.cyon.net -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:spf.protection.cyon.net -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
- },
- "4752":{
- "bfs":"4752",
- "name":"Wilen",
- "canton":"",
- "domain":"wilen.ch",
- "mx":[
- "mta1.tg.ch",
- "mta2.tg.ch"
- ],
- "spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rickenbach-tg.ch"
+ ],
+ "guess":[
+ "rickenbach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4756":{
"bfs":"4756",
"name":"Schönholzerswilen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"schoenholzerswilen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.i-web.ch ~all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "schoenholzerswilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "schoenholzerswilen.ch"
+ ],
+ "guess":[
+ "schoenholzerswilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4761":{
"bfs":"4761",
"name":"Sirnach",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"sirnach.ch",
"mx":[
"mta1.abxsec.com",
@@ -26409,534 +93572,1612 @@
],
"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.0/24 a:mail.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.0/24 a:mail.i-web.ch -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
"gateway":"abxsec",
- "mx_asns":[
- 9108
- ]
+ "sources_detail":{
+ "scrape":[
+ "sirnach.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sirnach.ch"
+ ],
+ "guess":[
+ "sirnach.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4776":{
"bfs":"4776",
"name":"Tobel-Tägerschen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"tobel-taegerschen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.16 include:spf.escapenet.ch include:egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.16 include:spf.escapenet.ch include:egeko.ch -all v=spf1 ip4:193.9.122.0/24 ip6:2a05:d014:564:200::/56 include:_spf.sui-inter.net -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "tobel-taegerschen.ch"
+ ],
+ "guess":[
+ "tobel-taegerschen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4781":{
"bfs":"4781",
"name":"Wängi",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"waengi.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:sui-inter.net include:dxb.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:sui-inter.net include:dxb.ch ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 include:_spf.sui-inter.net +mx +a -all v=spf1 +a +mx include:spf.dxb-hosting.ch include:spf.smtp.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip6:2001:1680:101:abc::1 ip6:2001:1680:101:3c7::1 ip4:83.150.38.164 ip4:82.220.39.205 ip4:82.220.39.132 ip4:83.150.38.161 ip4:83.150.38.163 ip4:83.150.38.167 ip4:185.223.31.127 include:spf.protection.outlook.com +a +mx -all v=spf1 ip4:192.40.160.0/19 ip4:74.91.80.0/20 include:mktomail.com ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 ip4:199.15.212.0/22 ip4:72.3.185.0/24 ip4:72.32.154.0/24 ip4:72.32.217.0/24 ip4:72.32.243.0/24 ip4:94.236.119.0/26 ip4:37.188.97.188/32 ip4:185.28.196.0/22 ip4:192.28.128.0/18 ip4:103.237.104.0/22 ip4:130.248.172.0/24 ip4:130.248.173.0/24 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "waengi.ch"
+ ],
+ "guess":[
+ "waengi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4786":{
"bfs":"4786",
- "name":"Wilen",
- "canton":"",
+ "name":"Wilen (TG)",
+ "canton":"Kanton Thurgau",
"domain":"wilen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wilen.ch"
+ ],
+ "guess":[
+ "wilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4791":{
"bfs":"4791",
"name":"Wuppenau",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"wuppenau.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wuppenau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wuppenau.ch"
+ ],
+ "guess":[
+ "wuppenau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4801":{
"bfs":"4801",
"name":"Berlingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"berlingen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "berlingen.ch"
+ ],
+ "guess":[
+ "berlingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4806":{
"bfs":"4806",
"name":"Eschenz",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"eschenz.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eschenz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eschenz.ch"
+ ],
+ "guess":[
+ "eschenz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4811":{
"bfs":"4811",
"name":"Herdern",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"herdern.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "herdern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "herdern.ch"
+ ],
+ "guess":[
+ "herdern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4816":{
"bfs":"4816",
"name":"Homburg",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"homburg.ch",
"mx":[
"mail.homburg.ch"
],
"spf":"v=spf1 mx include:tg.ch",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.homburg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "homburg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "homburg.ch"
+ ],
+ "guess":[
+ "homburg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4821":{
"bfs":"4821",
"name":"Hüttwilen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"huettwilen.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:egeko.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:egeko.ch -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:spf1.egeko.ch include:spfhelik.ategra.ch include:spf.privasphere.com mx -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:49.13.159.203 ip4:80.254.182.95 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "huettwilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "huettwilen.ch"
+ ],
+ "guess":[
+ "huettwilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4826":{
"bfs":"4826",
"name":"Mammern",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"mammern.ch",
"mx":[
"mx1.rufcloud.ch",
"mx2.rufcloud.ch"
],
"spf":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mammern.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mammern.ch"
+ ],
+ "guess":[
+ "mammern.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4831":{
"bfs":"4831",
"name":"Müllheim",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"muellheim.ch",
"mx":[
"mail.muellheim.ch"
],
"spf":"v=spf1 +a +mx include:spf.customer.swiss-egov.cloud include:_spf.sui-inter.net include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx include:spf.customer.swiss-egov.cloud include:_spf.sui-inter.net include:spf.abxsec.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.muellheim.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "muellheim.ch"
+ ],
+ "guess":[
+ "muellheim.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4841":{
"bfs":"4841",
"name":"Pfyn",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"pfyn.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:_spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pfyn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pfyn.ch"
+ ],
+ "guess":[
+ "pfyn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4846":{
"bfs":"4846",
"name":"Raperswilen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"raperswilen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "raperswilen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "raperswilen.ch"
+ ],
+ "guess":[
+ "raperswilen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4851":{
"bfs":"4851",
"name":"Salenstein",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"salenstein.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch",
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "salenstein.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "salenstein.ch"
+ ],
+ "guess":[
+ "salenstein.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4864":{
"bfs":"4864",
"name":"Steckborn",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"steckborn.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 ip4:193.33.128.155 +a +mx +ip4:193.33.128.141 +include:spf.mandrillapp.com +include:relay.mailchannels.net include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:193.33.128.155 +a +mx +ip4:193.33.128.141 +include:spf.mandrillapp.com +include:relay.mailchannels.net include:_spf.i-web.ch ~all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch",
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "steckborn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "steckborn.ch"
+ ],
+ "guess":[
+ "steckborn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4871":{
"bfs":"4871",
"name":"Wagenhausen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"wagenhausen.ch",
"mx":[
"mx.wagenhausen.ch"
],
"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mx.wagenhausen.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wagenhausen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wagenhausen.ch"
+ ],
+ "guess":[
+ "wagenhausen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4881":{
"bfs":"4881",
"name":"Amlikon-Bissegg",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"amlikon-bissegg.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf1.egeko.ch ip4:193.135.56.6 -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf1.egeko.ch ip4:193.135.56.6 -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:159.144.38.58 ip4:159.144.36.112 ip4:159.144.218.138 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "amlikon-bissegg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "amlikon-bissegg.ch"
+ ],
+ "guess":[
+ "amlikon-bissegg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4891":{
"bfs":"4891",
- "name":"Berg",
- "canton":"",
+ "name":"Berg (TG)",
+ "canton":"Kanton Thurgau",
"domain":"berg-tg.ch",
"mx":[
"gmd-berg.in.tmes.trendmicro.eu"
],
"spf":"v=spf1 +a ip4:185.230.20.53 include:spf.yop.ch include:spf.tmes.trendmicro.com include:spf.abxsec.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a ip4:185.230.20.53 include:spf.yop.ch include:spf.tmes.trendmicro.com include:spf.abxsec.com include:spf.protection.outlook.com -all v=spf1 ip4:88.99.104.177 ip6:2a01:4f8:10a:18f0::2 ip4:142.132.151.148 ip4:176.9.125.122 ip6:2a01:4f8:151:8471::2 ip4:116.202.134.208 ip4:162.55.89.17 ip4:128.140.61.185 -all v=spf1 ip4:18.208.22.64/26 ip4:18.208.22.128/25 ip4:18.185.115.128/26 ip4:18.185.115.0/25 ip4:13.238.202.0/25 ip4:13.238.202.128/26 ip4:18.176.203.128/25 ip4:13.213.174.128/25 ip4:18.177.156.0/25 ip4:13.213.220.0/25 include:spfb.tmes.trendmicro.com ~all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:107.22.223.18 ip4:52.70.252.86 ip4:35.156.245.132 ip4:18.156.0.20 ip4:3.72.196.143 ip4:54.146.4.63 ip4:54.174.82.86 ip6:2600:1f18:42fe:5c00::/60 ip6:2a05:d014:10e:d900::/60 ip6:2406:da1c:1ef6:1c00::/60 include:spfc.tmes.trendmicro.com ~all v=spf1 ip4:18.188.9.192/26 ip4:18.188.239.128/26 ip4:34.253.238.128/26 ip4:34.253.238.192/26 ip4:15.168.56.0/25 ip4:15.168.49.64/26 ip4:15.168.56.128/26 ip4:18.97.0.160/27 ip4:18.96.32.128/27 ip6:2406:da14:194d:a200::/60 ip6:2406:da18:4ed:be00::/60 ~all",
- "gateway":"trendmicro",
- "mx_asns":[
- 16509
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"trendmicro",
+ "sources_detail":{
+ "scrape":[
+ "143.ch",
+ "alz.ch",
+ "atlantis-kita-hort.ch",
+ "azweinfelden.ch",
+ "babysits.ch",
+ "bbm-tg.ch",
+ "berg-tg.ch",
+ "bergerzentrum.ch",
+ "bruennliacker.ch",
+ "christ-in-us.org",
+ "eg-kehlhof.ch",
+ "evang-berg.ch",
+ "familien-zentrum.ch",
+ "familienplattform-ostschweiz.ch",
+ "forstrevier-mittelthurgau.ch",
+ "grunliberale.ch",
+ "hpsm.ch",
+ "kabag.ch",
+ "kath-berg.ch",
+ "kinderkrippe-calimero.ch",
+ "koibw.ch",
+ "kulturpool-mittelthurgau.ch",
+ "kvatg.ch",
+ "ludo-buerglen.ch",
+ "lungenliga-tg.ch",
+ "mzdberg.ch",
+ "nrpag.ch",
+ "perspektive-tg.ch",
+ "post.ch",
+ "projuventute-sh-tg.ch",
+ "raiffeisen.ch",
+ "regiobiblio-weinfelden.ch",
+ "rheumaliga.ch",
+ "scberg.ch",
+ "selbsthilfe-tg.ch",
+ "spielchischte.net",
+ "spitex-mittelthurgau.ch",
+ "stgag.ch",
+ "tageo.ch",
+ "tagesfamilien-motg.ch",
+ "tbweinfelden.ch",
+ "tcberg.ch",
+ "tertianum.ch",
+ "tg.ch",
+ "tg.prosenectute.ch",
+ "thalmannbestattungsdienste.ch",
+ "vsbb.ch",
+ "weinfelden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "berg-tg.ch"
+ ],
+ "guess":[
+ "berg.ch",
+ "gemeinde-berg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4901":{
"bfs":"4901",
"name":"Birwinken",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"birwinken.ch",
"mx":[
"mail100.rizag.ch"
],
"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all v=spf1 ip4:46.140.146.20 ip4:46.140.146.21 ip4:46.140.146.22 ip4:46.140.146.68 ip4:62.2.255.205 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 6730
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "birwinken.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "birwinken.ch"
+ ],
+ "guess":[
+ "birwinken.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4911":{
"bfs":"4911",
- "name":"Bürglen",
- "canton":"",
+ "name":"Bürglen (TG)",
+ "canton":"Kanton Thurgau",
"domain":"buerglen-tg.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buerglen-tg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buerglen-tg.ch"
+ ],
+ "guess":[
+ "buerglen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4921":{
"bfs":"4921",
"name":"Bussnang",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"bussnang.ch",
"mx":[
"mx.bussnang.ch"
],
"spf":"v=spf1 mx include:tg.ch include:spf.protection.cyon.net include:spf.abxsec.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:spf.protection.cyon.net include:spf.abxsec.com -all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mx.bussnang.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bussnang.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bussnang.ch"
+ ],
+ "guess":[
+ "bussnang.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4941":{
"bfs":"4941",
"name":"Märstetten",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"maerstetten.ch",
"mx":[
"maerstetten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:193.135.56.6 ip4:34.65.211.248 ip4:81.63.140.74 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:193.135.56.6 ip4:34.65.211.248 ip4:81.63.140.74 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX maerstetten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.maerstetten.ch CNAME → selector1-maerstetten-ch._domainkey.gmdmaerstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.maerstetten.ch CNAME → selector2-maerstetten-ch._domainkey.gmdmaerstetten.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"google",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 396982 matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maerstetten.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maerstetten.ch"
+ ],
+ "guess":[
+ "maerstetten.ch",
+ "mrstetten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4946":{
"bfs":"4946",
"name":"Weinfelden",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"weinfelden.ch",
"mx":[
"weinfelden-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com ip4:193.135.56.6 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com ip4:193.135.56.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.246.95.96/27 ip6:2A02:C382:0:8007::/64 ip4:193.246.95.252 ip4:160.63.80.14/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX weinfelden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.weinfelden.ch CNAME → selector1-weinfelden-ch._domainkey.gmdweinfelden.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.weinfelden.ch CNAME → selector2-weinfelden-ch._domainkey.gmdweinfelden.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "weinfelden.ch"
+ ],
+ "guess":[
+ "weinfelden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"4951":{
"bfs":"4951",
"name":"Wigoltingen",
- "canton":"",
+ "canton":"Kanton Thurgau",
"domain":"wigoltingen.ch",
"mx":[
"mta1.tg.ch",
"mta2.tg.ch"
],
"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:tg.ch include:_spf.i-web.ch ~all v=spf1 ip4:161.78.14.101 ip4:161.78.3.250 mx include:spf.privasphere.com include:spf.protection.outlook.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverknd.tg.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "wigoltingen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "wigoltingen.ch"
+ ],
+ "guess":[
+ "wigoltingen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5001":{
"bfs":"5001",
"name":"Arbedo-Castione",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"arbedocastione.ch",
"mx":[
"mail.arbedocastione.ch"
],
"spf":"v=spf1 a:lin24.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:89.251.240.236 ip4:213.133.233.20 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin24.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:89.251.240.236 ip4:213.133.233.20 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 198172
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arbedocastione.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arbedocastione.ch"
+ ],
+ "guess":[
+ "arbedocastione.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5002":{
"bfs":"5002",
"name":"Bellinzona",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"bellinzona.ch",
"mx":[
"mail2.bellinzona.ch"
],
"spf":"v=spf1 mx ptr ip4:89.251.240.236 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.13 include:_asms6spf.assolo.net ip4:213.133.224.155 ip4:178.23.174.28 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:54.229.2.165 ip4:52.17.45.98 ip4:52.16.190.81 ip4:52.30.130.201 ip4:213.133.224.78 ip4:62.55.182.68/32 include:_spf.bellinzona.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr ip4:89.251.240.236 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.13 include:_asms6spf.assolo.net ip4:213.133.224.155 ip4:178.23.174.28 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:54.229.2.165 ip4:52.17.45.98 ip4:52.16.190.81 ip4:52.30.130.201 ip4:213.133.224.78 ip4:62.55.182.68/32 include:_spf.bellinzona.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com -all v=spf1 ip4:213.133.224.19 ip4:213.133.224.59 ip4:213.133.224.90 ip4:213.133.224.91 ip4:213.133.224.83 ~all v=spf1 ip4:178.23.174.19 ip4:178.23.174.18 ip4:178.23.174.17 ip4:178.23.174.16 ip4:62.55.182.68 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all",
- "mx_asns":[
- 198172
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"aws",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 16509 matches aws"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bellinzona.ch"
+ ],
+ "guess":[
+ "bellinzona.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5003":{
"bfs":"5003",
"name":"Cadenazzo",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"cadenazzo.ch",
"mx":[
"mail.cadenazzo.ch"
],
"spf":"v=spf1 mx ptr include:spf.protection.outlook.com ip4:89.251.240.236 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr include:spf.protection.outlook.com ip4:89.251.240.236 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 198172
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cadenazzo.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cadenazzo.ch"
+ ],
+ "guess":[
+ "cadenazzo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5009":{
"bfs":"5009",
"name":"Isone",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"isone.ch",
"mx":[
"isone-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:lin24.assolo.net ip4:213.133.224.180 include:_asms10spf.assolo.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin24.assolo.net ip4:213.133.224.180 include:_asms10spf.assolo.net include:spf.protection.outlook.com -all v=spf1 ip4:213.133.224.51 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX isone-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "edu.ti.ch",
+ "isone.ch",
+ "isuav.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "isone.ch"
+ ],
+ "guess":[
+ "isone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5010":{
"bfs":"5010",
- "name":"Lumino TI",
+ "name":"Lumino",
"canton":"Kanton Tessin",
"domain":"lumino.ch",
"mx":[
@@ -26944,17 +95185,81 @@
],
"spf":"v=spf1 mx a include:CustSPF.tinext.com ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.64 ip4:178.23.174.0/27 ip4:213.133.224.40 ip4:213.133.224.18 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a include:CustSPF.tinext.com ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.64 ip4:178.23.174.0/27 ip4:213.133.224.40 ip4:213.133.224.18 include:spf.protection.outlook.com -all v=spf1 ip4:46.21.25.0/24 include:spf.iway.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lumino-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lumino.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lumino.ch"
+ ],
+ "guess":[
+ "lumino.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5017":{
"bfs":"5017",
- "name":"Sant’Antonino TI",
+ "name":"Sant'Antonino",
"canton":"Kanton Tessin",
"domain":"santonino.ch",
"mx":[
@@ -26962,168 +95267,545 @@
],
"spf":"v=spf1 mx a ip4:89.251.240.236 ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"independent",
- "mx_asns":[
- 198172
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "santonino.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "santonino.ch"
+ ],
+ "guess":[
+ "santantonino.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5048":{
"bfs":"5048",
"name":"Acquarossa",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"acquarossa.ch",
"mx":[
"acquarossa-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX acquarossa-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "acquarossa.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "acquarossa.ch"
+ ],
+ "guess":[
+ "acquarossa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5049":{
"bfs":"5049",
"name":"Blenio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"comuneblenio.ch",
"mx":[
"comuneblenio-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.133.224.103 ip4:213.133.224.105 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.133.224.103 ip4:213.133.224.105 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX comuneblenio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "comuneblenio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "comuneblenio.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5050":{
"bfs":"5050",
"name":"Serravalle",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"serravalle.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:89.207.237.84 ip4:213.133.224.180 ip4:213.133.224.209 ip4:213.133.224.68 ip4:178.23.174.0/27 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:89.207.237.84 ip4:213.133.224.180 ip4:213.133.224.209 ip4:213.133.224.68 ip4:178.23.174.0/27 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "distrettoblenio.ch",
+ "serravalle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "serravalle.ch"
+ ],
+ "guess":[
+ "serravalle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5061":{
"bfs":"5061",
"name":"Airolo",
- "canton":"",
- "domain":"comuneairolo.ch",
- "mx":[
- "mx.swizzonic.email"
- ],
- "spf":"v=spf1 include:spf.webapps.net ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.webapps.net ~all v=spf1 a include:spf1.webapps.net include:spf2.webapps.net ~all v=spf1 ip4:81.88.48.32/27 ip4:81.88.50.224/27 ip4:81.88.54.64/27 ip4:81.88.55.96/27 ip4:81.88.56.0/27 ip4:81.88.62.160/27 ip4:81.88.63.128/27 ip4:195.7.249.16/29 include:dominiando.email ~all v=spf1 ip4:195.110.101.32/27 ip4:195.110.122.160/27 ip4:195.110.123.0/27 ip4:185.2.4.0/22 ip4:81.88.49.224/27 ip4:195.7.249.29 ip4:81.88.52.0/23 ip4:185.110.66.0/24 ip4:213.158.94.0/23 ip4:81.88.54.154/32 ip4:3.73.27.108 ip4:3.125.172.46 ~all v=spf1 mx ip4:81.88.54.130 ip4:81.88.54.152/30 ~all",
- "mx_asns":[
- 39729
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscoverredirect.liveapp.ch"
- }
+ "canton":"Kanton Tessin",
+ "domain":"airolo.ch",
+ "mx":[
+ "airolo-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX airolo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.airolo.ch CNAME → selector1-airolo-ch._domainkey.municipioairolo.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.airolo.ch CNAME → selector2-airolo-ch._domainkey.municipioairolo.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "airolo.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "comuneairolo.ch"
+ ],
+ "guess":[
+ "airolo.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"5063":{
"bfs":"5063",
"name":"Bedretto",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"bedretto.ch",
"mx":[
"bedretto.ch"
],
"spf":"v=spf1 ip4:5.182.248.166 include:tizoo.com +a +mx +ip4:212.147.66.228 +ip4:89.207.237.84 +ip4:178.23.174.0/27 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:5.182.248.166 include:tizoo.com +a +mx +ip4:212.147.66.228 +ip4:89.207.237.84 +ip4:178.23.174.0/27 ~all v=spf1 ip4:212.147.66.228 +a +mx ip4:5.182.248.3 ip4:5.182.248.4 ip4:5.182.248.140 ip4:5.182.248.144 ip4:5.182.248.148 ip4:5.182.248.151 ip4:5.182.248.160 ip4:5.182.248.166 ip4:5.182.248.176 ip4:5.182.248.183 ip4:5.182.248.132 ip4:212.147.66.247 ip4:212.147.66.245 ip4:212.147.66.246 ip4:5.182.248.11 ~all",
- "mx_asns":[
- 209042
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "bedretto.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bedretto.ch"
+ ],
+ "guess":[
+ "bedretto.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5071":{
"bfs":"5071",
"name":"Dalpe",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"dalpe.ch",
"mx":[
"dalpe.ch"
],
"spf":"v=spf1 a mx ip4:89.207.237.84 ip4:178.23.174.0/27 include:_spf.server4all.de ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:89.207.237.84 ip4:178.23.174.0/27 include:_spf.server4all.de ~all v=spf1 include:_netblocks-v4.server4all.de ~all v=spf1 ip4:212.48.119.0/24 ip4:212.48.120.0/24 ip4:212.48.127.0/24 ip4:212.53.140.0/24 ip4:212.53.160.0/24 ip4:212.72.171.0/24 ip4:212.72.182.0/24 ip4:212.72.183.0/24 ip4:212.72.184.0/24 ip4:212.53.165.0/24 ~all",
- "mx_asns":[
- 8893
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "dalpe.ch"
+ ],
+ "guess":[
+ "dalpe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5072":{
"bfs":"5072",
"name":"Faido",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"faido.ch",
"mx":[
"mail.faido.ch"
],
"spf":"v=spf1 mx ptr include:spf.protection.outlook.com ip4:89.251.240.236 ip4:178.23.174.28 ip4:178.23.174.19 ip4:178.23.174.18 ip4:178.23.174.17 ip4:178.23.174.16 ip4:178.23.174.0/27 ip4:89.207.237.84/32 ip4:213.133.224.98 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ptr include:spf.protection.outlook.com ip4:89.251.240.236 ip4:178.23.174.28 ip4:178.23.174.19 ip4:178.23.174.18 ip4:178.23.174.17 ip4:178.23.174.16 ip4:178.23.174.0/27 ip4:89.207.237.84/32 ip4:213.133.224.98 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 198172
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "faido.ch"
+ ],
+ "guess":[
+ "faido.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5073":{
"bfs":"5073",
"name":"Giornico",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"giornico.ch",
"mx":[
"asms.assolo.net"
],
"spf":"v=spf1 a include:_asms6spf.assolo.net ip4:213.133.224.99 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.13 ip4:213.133.224.14 ip4:213.133.224.16 ip4:213.133.224.5 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a include:_asms6spf.assolo.net ip4:213.133.224.99 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.13 ip4:213.133.224.14 ip4:213.133.224.16 ip4:213.133.224.5 -all v=spf1 ip4:213.133.224.19 ip4:213.133.224.59 ip4:213.133.224.90 ip4:213.133.224.91 ip4:213.133.224.83 ~all",
- "mx_asns":[
- 51423
- ],
- "autodiscover":{
- "autodiscover_cname":"wasms.assolo.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "giornico.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "giornico.ch"
+ ],
+ "guess":[
+ "giornico.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5076":{
"bfs":"5076",
"name":"Personico",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"personico.ch",
"mx":[
"personico-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.62.135.38 include:spf.protection.outlook.com include:antispam01.moresi.com include:antispam02.moresi.com include:antispam03.moresi.com include:antispam04.moresi.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.62.135.38 include:spf.protection.outlook.com include:antispam01.moresi.com include:antispam02.moresi.com include:antispam03.moresi.com include:antispam04.moresi.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX personico-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "personico.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "personico.ch"
+ ],
+ "guess":[
+ "personico.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5077":{
"bfs":"5077",
@@ -27135,42 +95817,123 @@
],
"spf":"v=spf1 include:_asms7spf.assolo.net ip4:213.133.224.143 ip4:213.133.224.79 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_asms7spf.assolo.net ip4:213.133.224.143 ip4:213.133.224.79 -all v=spf1 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.18 ip4:213.133.224.13 ~all",
- "mx_asns":[
- 51423
- ],
- "autodiscover":{
- "autodiscover_cname":"wasms.assolo.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "pollegio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pollegio.ch"
+ ],
+ "guess":[
+ "pollegio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5079":{
"bfs":"5079",
"name":"Quinto",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"tiquinto.ch",
"mx":[
"tiquinto-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:83.166.142.218 include:servers.mcsv.net ?all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:83.166.142.218 include:servers.mcsv.net ?all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all",
- "mx_asns":[
- 8075
- ]
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tiquinto-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tiquinto.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tiquinto.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5091":{
"bfs":"5091",
"name":"Ascona",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"ascona.ch",
"mx":[
"asmav.assolo.net"
],
"spf":"v=spf1 a:asmav.assolo.net a:lin12.assolo.net a:asms2.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ~all",
"provider":"independent",
- "mx_asns":[
- 51423
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "ascona.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ascona.ch"
+ ],
+ "guess":[
+ "ascona.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5096":{
"bfs":"5096",
@@ -27182,13 +95945,75 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brione-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brione.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brione.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5097":{
"bfs":"5097",
@@ -27200,13 +96025,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com a:asmav.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:195.190.166.214 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:asmav.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:195.190.166.214 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brissago-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brissago.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brissago.ch"
+ ],
+ "guess":[
+ "brissago.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5108":{
"bfs":"5108",
@@ -27218,46 +96107,211 @@
],
"spf":"v=spf1 mx include:_asms4spf.assolo.net include:spf.protection.outlook.com a:lin31.assolo.net a:lin8.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:_asms4spf.assolo.net include:spf.protection.outlook.com a:lin31.assolo.net a:lin8.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all v=spf1 a:asms4.assolo.net ip4:213.133.224.22 a:asms8.assolo.net ip4:213.133.224.213 ip4:213.133.224.13 ip4:213.133.234.32 ip4:213.133.224.24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gordola-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gordola.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gordola.ch"
+ ],
+ "guess":[
+ "gordola.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5112":{
"bfs":"5112",
"name":"Lavertezzo",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"lavertezzo.ch",
"mx":[
"lavertezzo-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lavertezzo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lavertezzo.ch"
+ ],
+ "guess":[
+ "lavertezzo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5113":{
"bfs":"5113",
"name":"Locarno",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"locarno.ch",
"mx":[
"mx42.locarno.ch",
"mx43.locarno.ch"
],
"spf":"v=spf1 ip4:212.4.70.139 ip4:62.55.182.68 ip4:217.193.141.42 ip4:217.193.141.43 a:mailout.ip-plus.net mx -all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "locarno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "locarno.ch"
+ ],
+ "guess":[
+ "locarno.ch",
+ "stadt-locarno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5115":{
"bfs":"5115",
@@ -27269,18 +96323,82 @@
],
"spf":"v=spf1 a:lin24.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com a:asms2.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin24.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com a:asms2.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all v=spf1 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.18 ip4:213.133.224.13 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX losone-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "losone.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "losone.ch"
+ ],
+ "guess":[
+ "losone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5117":{
"bfs":"5117",
"name":"Mergoscia",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"mergoscia.ch",
"mx":[
"mx01.tophost.ch",
@@ -27288,81 +96406,299 @@
],
"spf":"",
"provider":"independent",
- "mx_asns":[
- 35206
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":60.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mergoscia.ch"
+ ],
+ "guess":[
+ "mergoscia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5118":{
"bfs":"5118",
"name":"Minusio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"minusio.ch",
"mx":[
"smtp.assolo.net"
],
"spf":"v=spf1 include:_asms6spf.assolo.net a:lin32.assolo.net ip4:213.133.224.13 ip4:83.173.217.38 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.79 ip4:213.133.224.68 ip4:213.133.224.160 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_asms6spf.assolo.net a:lin32.assolo.net ip4:213.133.224.13 ip4:83.173.217.38 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.79 ip4:213.133.224.68 ip4:213.133.224.160 -all v=spf1 ip4:213.133.224.19 ip4:213.133.224.59 ip4:213.133.224.90 ip4:213.133.224.91 ip4:213.133.224.83 ~all",
- "mx_asns":[
- 51423
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "minusio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "minusio.ch"
+ ],
+ "guess":[
+ "minusio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5120":{
"bfs":"5120",
"name":"Muralto",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"muralto.ch",
"mx":[
"muralto-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:195.190.166.213 +a +mx ip4:195.190.166.204 ip4:89.207.237.84 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.190.166.213 +a +mx ip4:195.190.166.204 ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muralto-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muralto.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muralto.ch"
+ ],
+ "guess":[
+ "muralto.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5121":{
"bfs":"5121",
"name":"Orselina",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"orselina.ch",
"mx":[
"orselina-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:lin12.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin12.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all v=spf1 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.18 ip4:213.133.224.13 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX orselina-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brione.ch",
+ "orselina.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "orselina.ch"
+ ],
+ "guess":[
+ "orselina.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5125":{
"bfs":"5125",
"name":"Ronco sopra Ascona",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"ronco-s-ascona.ch",
"mx":[
"roncosascona-ch01k.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX roncosascona-ch01k.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ronco-s-ascona.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ronco-s-ascona.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5131":{
"bfs":"5131",
@@ -27375,91 +96711,280 @@
],
"spf":"v=spf1 a:lin17.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin17.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 5602,
- 31034
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tenero-contra.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tenero-contra.ch"
+ ],
+ "guess":[
+ "tenero-contra.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5136":{
"bfs":"5136",
"name":"Onsernone",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"onsernone.swiss",
"mx":[
"onsernone-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_asms5spf.assolo.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_asms5spf.assolo.net include:spf.protection.outlook.com -all v=spf1 ip4:213.133.224.60 ip4:213.133.224.13 ip4:213.133.224.14 ip4:213.133.224.6 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX onsernone-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "locarnese.ch",
+ "onsernone.swiss",
+ "ti.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "onsernone.swiss"
+ ],
+ "guess":[
+ "onsernone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5138":{
"bfs":"5138",
"name":"Cugnasco-Gerra",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"cugnasco-gerra.ch",
"mx":[
"mail.cugnasco-gerra.ch"
],
"spf":"v=spf1 a:lin16.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 include:_asms4spf.assolo.net ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a:lin16.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 include:_asms4spf.assolo.net ~all v=spf1 a:asms4.assolo.net ip4:213.133.224.22 a:asms8.assolo.net ip4:213.133.224.213 ip4:213.133.224.13 ip4:213.133.234.32 ip4:213.133.224.24 ~all",
- "mx_asns":[
- 51423
- ],
- "autodiscover":{
- "autodiscover_cname":"wasms.assolo.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "cugnasco-gerra.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cugnasco-gerra.ch"
+ ],
+ "guess":[
+ "cugnasco-gerra.ch",
+ "cugnascogerra.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5141":{
"bfs":"5141",
"name":"Agno",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"agno.ch",
"mx":[
"asms4.assolo.net"
],
"spf":"v=spf1 mx include:_asms4spf.assolo.net ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:_asms4spf.assolo.net ~all v=spf1 a:asms4.assolo.net ip4:213.133.224.22 a:asms8.assolo.net ip4:213.133.224.213 ip4:213.133.224.13 ip4:213.133.234.32 ip4:213.133.224.24 ~all",
- "mx_asns":[
- 51423
- ],
- "autodiscover":{
- "autodiscover_cname":"wasms.assolo.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "agno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "agno.ch"
+ ],
+ "guess":[
+ "agno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5143":{
"bfs":"5143",
"name":"Aranno",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"aranno.ch",
"mx":[
"aranno-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:green.icteam.swiss a:asmav.assolo.net a:asms2.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.103 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:green.icteam.swiss a:asmav.assolo.net a:asms2.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.103 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aranno-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aranno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aranno.ch"
+ ],
+ "guess":[
+ "aranno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5144":{
"bfs":"5144",
"name":"Arogno",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"arogno.ch",
"mx":[
"7azulib01.atomdata.ch",
@@ -27467,120 +96992,466 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.174.26.10 ip4:178.174.0.238 ip4:91.208.130.32 ip4:91.208.130.31 a:lin16.assolo.net include:mailhost.ticino-online.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.174.26.10 ip4:178.174.0.238 ip4:91.208.130.32 ip4:91.208.130.31 a:lin16.assolo.net include:mailhost.ticino-online.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075,
- 25091
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arogno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arogno.ch"
+ ],
+ "guess":[
+ "arogno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5148":{
"bfs":"5148",
"name":"Bedano",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"bedano.ch",
"mx":[
"mail.bedano.ch"
],
"spf":"v=spf1 mx ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:146.4.99.230 include:spf.privasphere.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:146.4.99.230 include:spf.privasphere.com -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.bedano.ch",
- "autodiscover_srv":"mail.bedano.ch"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bedano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bedano.ch"
+ ],
+ "guess":[
+ "bedano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5151":{
"bfs":"5151",
"name":"Bioggio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"bioggio.ch",
"mx":[
"bioggio-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.246.38.166 a:green.icteam.swiss -all ",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.246.38.166 a:green.icteam.swiss -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.bioggio.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bioggio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bioggio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bioggio.ch"
+ ],
+ "guess":[
+ "bioggio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5154":{
"bfs":"5154",
"name":"Bissone",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"bissone.ch",
"mx":[
"bissone-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bissone-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bissone.ch CNAME → selector1-bissone-ch._domainkey.bissone.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bissone.ch CNAME → selector2-bissone-ch._domainkey.bissone.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bissone.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bissone.ch"
+ ],
+ "guess":[
+ "bissone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5160":{
"bfs":"5160",
"name":"Brusino Arsizio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"brusinoarsizio.ch",
"mx":[
"brusinoarsizio-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX brusinoarsizio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "brusinoarsizio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "brusinoarsizio.ch"
+ ],
+ "guess":[
+ "brusinoarsizio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5161":{
"bfs":"5161",
"name":"Cademario",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"cademario.ch",
"mx":[
"cademario-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:195.190.166.213 ip4:62.48.123.84 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:195.190.166.213 ip4:62.48.123.84 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cademario-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cademario.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cademario.ch"
+ ],
+ "guess":[
+ "cademario.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5162":{
"bfs":"5162",
"name":"Cadempino",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"cadempino.ch",
"mx":[
"mail.cadempino.ch"
],
"spf":"v=spf1 +a +mx ip4:185.94.150.0/26 ip4:89.207.237.84 178.23.174.0/27 -all",
"provider":"independent",
- "mx_asns":[
- 197352
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "cadempino.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cadempino.ch"
+ ],
+ "guess":[
+ "cadempino.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5167":{
"bfs":"5167",
@@ -27592,49 +97463,241 @@
],
"spf":"v=spf1 ip4:195.190.166.212 ip4:195.190.166.206 +a +mx +ip4:195.190.166.205 +include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.190.166.212 ip4:195.190.166.206 +a +mx +ip4:195.190.166.205 +include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":91.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX canobbio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "canobbio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "canobbio.ch"
+ ],
+ "guess":[
+ "canobbio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5171":{
"bfs":"5171",
"name":"Caslano",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"caslano.ch",
"mx":[
"caslano-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:213.133.233.22 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:213.133.233.22 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX caslano-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "caslano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "caslano.ch"
+ ],
+ "guess":[
+ "caslano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5176":{
"bfs":"5176",
"name":"Comano",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"comano.ch",
"mx":[
"comano-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:lin17.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin17.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all v=spf1 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.18 ip4:213.133.224.13 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX comano-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "comano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "comano.ch"
+ ],
+ "guess":[
+ "comano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5180":{
"bfs":"5180",
@@ -27646,18 +97709,83 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.173 a:lin12.assolo.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.173 a:lin12.assolo.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cureglia-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cureglia.ch",
+ "poliziaredde.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cureglia.ch"
+ ],
+ "guess":[
+ "cureglia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5186":{
"bfs":"5186",
"name":"Grancia",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"grancia.ch",
"mx":[
"mx1.mail.hostpoint.ch",
@@ -27665,13 +97793,22 @@
],
"spf":"v=spf1 redirect=spf.mail.hostpoint.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
- ],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "grancia.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grancia.ch"
+ ],
+ "guess":[
+ "grancia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5187":{
"bfs":"5187",
@@ -27683,32 +97820,107 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gravesano-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gravesano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gravesano.ch"
+ ],
+ "guess":[
+ "gravesano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5189":{
"bfs":"5189",
"name":"Lamone",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"lamone.ch",
"mx":[
"mail.ticinoposta.ch"
],
"spf":"v=spf1 mx a:mail.ticinoposta.ch a:ticinoposta.mifaweb.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
"provider":"independent",
- "mx_asns":[
- 207143
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lamone.ch"
+ ],
+ "guess":[
+ "lamone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5192":{
"bfs":"5192",
"name":"Lugano",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"lugano.ch",
"mx":[
"smtp11.lugano.ch",
@@ -27716,28 +97928,116 @@
],
"spf":"v=spf1 mx a ip4:195.14.126.66 ip4:195.14.126.67 include:143896222.spf04.hubspotemail.net include:CustSPF.tinext.com include:emailwarp.com include:servers.mcsv.net include:spf.swisscom.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:195.14.126.66 ip4:195.14.126.67 include:143896222.spf04.hubspotemail.net include:CustSPF.tinext.com include:emailwarp.com include:servers.mcsv.net include:spf.swisscom.com -all v=spf1 ip4:3.93.157.0/24 ip4:3.210.190.0/24 ip4:18.208.124.128/25 ip4:54.174.52.0/24 ip4:54.174.57.0/24 ip4:54.174.59.0/24 ip4:54.174.60.0/23 ip4:54.174.63.0/24 ip4:108.179.144.0/20 ip4:139.180.17.0/24 ip4:141.193.184.32/27 ip4:141.193.184.64/26 ip4:141.193.184.128/25 ip4:141.193.185.32/27 ip4:141.193.185.64/26 ip4:141.193.185.128/25 ip4:143.244.80.0/20 ip4:158.247.16.0/20 ip4:216.139.64.0/19 -all v=spf1 ip4:46.21.25.0/24 include:spf.iway.ch -all v=spf1 include:spf1.emailwarp.com -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:138.188.176.0/26 ip4:138.188.176.128/26 ip4:138.188.166.96/27 ~all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all v=spf1 include:spf2.emailwarp.com ip4:185.241.65.0/26 -all v=spf1 ip4:159.89.28.206/32 ip4:165.227.133.244/32 ip4:207.154.223.214/32 -all",
- "mx_asns":[
- 50849
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lugano.ch"
+ ],
+ "guess":[
+ "lugano.ch",
+ "stadt-lugano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5193":{
"bfs":"5193",
"name":"Magliaso",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"magliaso.ch",
"mx":[
"magliaso-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:178.23.174.0/27 mx ip4:89.207.237.84 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.23.174.0/27 mx ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX magliaso-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "magliaso.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "magliaso.ch"
+ ],
+ "guess":[
+ "magliaso.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5194":{
"bfs":"5194",
@@ -27750,13 +98050,59 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:cryms.com ip4:178.23.174.0/27 ip4:89.207.237.84 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:cryms.com ip4:178.23.174.0/27 ip4:89.207.237.84 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:185.181.207.136 +ip4:91.121.50.245 +ip4:149.202.24.251 +ip4:149.202.90.195 +ip4:91.121.63.178 +ip4:178.32.139.74 +ip4:94.130.69.119 +ip6:2a01:4f8:10b:32d3::3 +ip6:2001:41d0:1004:ac3::1 +ip4:185.181.207.136 include:spf.protection.outlook.com include:143889994.spf04.hubspotemail.net include:sendgrid.net -all v=spf1 ip4:3.93.157.0/24 ip4:3.210.190.0/24 ip4:18.208.124.128/25 ip4:54.174.52.0/24 ip4:54.174.57.0/24 ip4:54.174.59.0/24 ip4:54.174.60.0/23 ip4:54.174.63.0/24 ip4:108.179.144.0/20 ip4:139.180.17.0/24 ip4:141.193.184.32/27 ip4:141.193.184.64/26 ip4:141.193.184.128/25 ip4:141.193.185.32/27 ip4:141.193.185.64/26 ip4:141.193.185.128/25 ip4:143.244.80.0/20 ip4:158.247.16.0/20 ip4:216.139.64.0/19 -all v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "mx_asns":[
- 196810
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.manno.ch CNAME → selector1-manno-ch._domainkey.municipiomanno.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.manno.ch CNAME → selector2-manno-ch._domainkey.municipiomanno.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "manno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "manno.ch"
+ ],
+ "guess":[
+ "manno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5196":{
"bfs":"5196",
@@ -27768,27 +98114,133 @@
],
"spf":"v=spf1 ip4:185.79.206.82 ip4:185.79.206.83 ip4:185.79.206.84 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.247 a:lin32.assolo.net -all",
"provider":"independent",
- "mx_asns":[
- 57676
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "massagno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "massagno.ch"
+ ],
+ "guess":[
+ "massagno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5198":{
"bfs":"5198",
"name":"Melide",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"melide.ch",
"mx":[
"melide-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com include:custspf.tinext.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com include:custspf.tinext.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.21.25.0/24 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX melide-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.melide.ch CNAME → selector1-melide-ch._domainkey.municipiomelide.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.melide.ch CNAME → selector2-melide-ch._domainkey.municipiomelide.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "melide.ch"
+ ],
+ "guess":[
+ "melide.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5199":{
"bfs":"5199",
@@ -27800,50 +98252,269 @@
],
"spf":"v=spf1 a:lin16.assolo.net a:lin31.assolo.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin16.assolo.net a:lin31.assolo.net include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mezzovicovira-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mezzovico-vira.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mezzovico-vira.ch"
+ ],
+ "guess":[
+ "mezzovico-vira.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5203":{
"bfs":"5203",
"name":"Morcote",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"morcote.ch",
"mx":[
"morcote-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:62.2.108.198 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.3.37.249 ip4:213.133.224.64/29 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:62.2.108.198 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.3.37.249 ip4:213.133.224.64/29 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"comune2018.morcote.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX morcote-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.morcote.ch CNAME → selector1-morcote-ch._domainkey.morcote.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.morcote.ch CNAME → selector2-morcote-ch._domainkey.morcote.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "morcote.ch"
+ ],
+ "guess":[
+ "morcote.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5205":{
"bfs":"5205",
"name":"Muzzano",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"muzzano.ch",
"mx":[
"muzzano-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.3.37.48 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.3.37.48 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX muzzano-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muzzano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muzzano.ch"
+ ],
+ "guess":[
+ "muzzano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5206":{
"bfs":"5206",
@@ -27855,49 +98526,160 @@
],
"spf":"v=spf1 mx a include:CustSPF.tinext.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a include:CustSPF.tinext.com -all v=spf1 ip4:46.21.25.0/24 include:spf.iway.ch -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 197352
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "neggio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "neggio.ch"
+ ],
+ "guess":[
+ "neggio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5208":{
"bfs":"5208",
"name":"Origlio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"origlio.ch",
"mx":[
"origlio-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX origlio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "origlio.ch"
+ ],
+ "guess":[
+ "origlio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5210":{
"bfs":"5210",
"name":"Paradiso",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"paradiso.ch",
"mx":[
"mxfilter1.paradiso.ch",
"mxfilter2.paradiso.ch"
],
"spf":"v=spf1 a:intranet.paradiso.ch a:mail.paradiso.ch a:residenza.paradiso.ch a:vps.braile.ch ip4:46.14.23.114/32 ip4:51.75.55.164 redirect=spf.mail.hostpoint.ch",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a:intranet.paradiso.ch a:mail.paradiso.ch a:residenza.paradiso.ch a:vps.braile.ch ip4:46.14.23.114/32 ip4:51.75.55.164 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 6730
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "paradiso.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "paradiso.ch"
+ ],
+ "guess":[
+ "paradiso.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5212":{
"bfs":"5212",
"name":"Ponte Capriasca",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"pontecapriasca.ch",
"mx":[
"ch-backup-mailsecurity.cybersecservices.ch",
@@ -27906,51 +98688,198 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com a:ch-backup-mailsecurity.cybersecservices.ch a:ch-mailsecurity.cybersecservices.ch ip4:195.186.122.112 ip4:195.186.122.114 ip4:195.186.101.108 ip4:195.186.101.109 ip4:193.246.38.134 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:195.141.20.198 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:ch-backup-mailsecurity.cybersecservices.ch a:ch-mailsecurity.cybersecservices.ch ip4:195.186.122.112 ip4:195.186.122.114 ip4:195.186.101.108 ip4:195.186.101.109 ip4:193.246.38.134 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:195.141.20.198 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075,
- 196810
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pontecapriasca-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pontecapriasca.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pontecapriasca.ch"
+ ],
+ "guess":[
+ "pontecapriasca.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5214":{
"bfs":"5214",
"name":"Porza",
"canton":"Kanton Tessin",
- "domain":"ti.ch",
- "mx":[
- "smtp1.ti.ch",
- "smtp2.ti.ch"
- ],
- "spf":"v=spf1 mx include:spf.protection.outlook.com include:spf1.ti.ch include:spf2.ti.ch include:spf3.ti.ch include:spf4.ti.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:spf1.ti.ch include:spf2.ti.ch include:spf3.ti.ch include:spf4.ti.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:mailout.ip-plus.net include:spf.privasphere.com include:spf.brevo.com ip4:193.246.182.248 ip4:193.246.182.26 -all v=spf1 ip4:195.176.176.171 ip4:195.176.176.153 ip4:195.176.176.141 -all v=spf1 ip4:162.23.32.11 ip4:162.23.32.12 ip4:162.23.32.13 ip4:162.23.32.14 ip4:162.23.97.166 ip4:162.23.97.167 -all v=spf1 ip4:54.229.2.165 ip4:52.30.130.201 ip4:52.17.45.98 ip4:52.16.190.81 ip4:193.246.181.195 ip4:193.246.181.196 ip4:83.166.148.54 -all v=spf1 ip4:185.166.96.0/24 ip4:185.166.99.0/24 ip4:83.150.3.96/27 ip4:83.150.37.32/27 ip4:212.25.12.128/27 ip4:212.25.12.192/28 include:spf.iway.ch -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 ip4:212.25.0.0/19 ip4:194.246.118.0/23 ip4:83.150.31.160/28 ip4:83.150.63.0/24 ip4:83.150.52.0/24 ip4:95.143.53.48/28 ip4:80.89.210.64/28 ip6:2001:8e0::/32 ip4:185.168.143.0/27 ~all",
- "mx_asns":[
- 559
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.ti.ch"
- }
+ "domain":"porza.ch",
+ "mx":[
+ "asms5.assolo.net"
+ ],
+ "spf":"v=spf1 include:_asms5spf.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "porza.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5216":{
"bfs":"5216",
"name":"Pura",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"pura.ch",
"mx":[
"pura-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:asmav.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:asmav.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pura-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pura.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pura.ch"
+ ],
+ "guess":[
+ "pura.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5221":{
"bfs":"5221",
@@ -27962,211 +98891,941 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.105 ip4:213.133.224.103 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.105 ip4:213.133.224.103 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX savosa-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "savosa.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "savosa.ch"
+ ],
+ "guess":[
+ "savosa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5225":{
"bfs":"5225",
"name":"Sorengo",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"sorengo.ch",
"mx":[
"sorengo-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:89.207.237.84 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX sorengo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sorengo.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sorengo.ch"
+ ],
+ "guess":[
+ "sorengo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5226":{
"bfs":"5226",
"name":"Capriasca",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"capriasca.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 ip4:213.133.233.21 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 ip4:213.133.233.21 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "capriasca.ch"
+ ],
+ "guess":[
+ "capriasca.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5227":{
"bfs":"5227",
"name":"Torricella-Taverne",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"torricella-taverne.ch",
"mx":[
"torricellataverne-ch02e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX torricellataverne-ch02e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "edu.ti.ch",
+ "torricella-taverne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "torricella-taverne.ch"
+ ],
+ "guess":[
+ "torricella-taverne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5230":{
"bfs":"5230",
"name":"Vernate",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"vernate.ch",
"mx":[
"mail.vernate.ch"
],
"spf":"v=spf1 mx ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 mx ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.vernate.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vernate.ch"
+ ],
+ "guess":[
+ "vernate.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5231":{
"bfs":"5231",
"name":"Vezia",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"vezia.ch",
"mx":[
"vezia-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.133.224.68 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.133.224.68 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vezia-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vezia.ch CNAME → selector1-vezia-ch._domainkey.comunevezia.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vezia.ch CNAME → selector2-vezia-ch._domainkey.comunevezia.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vezia.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vezia.ch"
+ ],
+ "guess":[
+ "vezia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5233":{
"bfs":"5233",
"name":"Vico Morcote",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"vicomorcote.ch",
"mx":[
"vicomorcote-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a:lin24.assolo.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:lin24.assolo.net include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vicomorcote-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vicomorcote.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vicomorcote.ch"
+ ],
+ "guess":[
+ "vicomorcote.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5236":{
"bfs":"5236",
- "name":"Collina d’Oro",
- "canton":"",
+ "name":"Collina d'Oro",
+ "canton":"Kanton Tessin",
"domain":"collinadoro.swiss",
"mx":[
"collinadoro-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:146.4.29.26 ip4:146.4.29.27 ip4:213.133.226.37 a:cdointranetvm.assolo.net a:intranet.collinadoro.swiss a:intranet.collinadoro.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:146.4.29.26 ip4:146.4.29.27 ip4:213.133.226.37 a:cdointranetvm.assolo.net a:intranet.collinadoro.swiss a:intranet.collinadoro.com include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX collinadoro-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "collinadoro.swiss",
+ "poliziaceresiosud.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "collinadoro.swiss"
+ ],
+ "guess":[
+ "collinadoro.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5237":{
"bfs":"5237",
"name":"Alto Malcantone",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"altomalcantone.ch",
"mx":[
"altomalcantone-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.236.28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.236.28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX altomalcantone-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "altomalcantone.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "altomalcantone.ch"
+ ],
+ "guess":[
+ "altomalcantone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5238":{
"bfs":"5238",
"name":"Monteceneri",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"monteceneri.ch",
"mx":[
"monteceneri-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:62.202.13.115 ip4:80.74.159.65 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:62.202.13.115 ip4:80.74.159.65 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX monteceneri-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.monteceneri.ch CNAME → selector1-monteceneri-ch._domainkey.monteceneri365.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.monteceneri.ch CNAME → selector2-monteceneri-ch._domainkey.monteceneri365.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "monteceneri.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "monteceneri.ch"
+ ],
+ "guess":[
+ "monteceneri.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5239":{
"bfs":"5239",
"name":"Tresa",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"tresa.ch",
"mx":[
"tresa-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:46.14.230.94 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:46.14.230.94 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tresa-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.tresa.ch CNAME → selector1-tresa-ch._domainkey.croglio.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.tresa.ch CNAME → selector2-tresa-ch._domainkey.croglio.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tresa.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tresa.ch"
+ ],
+ "guess":[
+ "tresa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5240":{
"bfs":"5240",
"name":"Val Mara",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"valmara.ch",
"mx":[
"valmara-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX valmara-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "valmara.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "valmara.ch"
+ ],
+ "guess":[
+ "valmara.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5242":{
"bfs":"5242",
@@ -28178,66 +99837,221 @@
],
"spf":"v=spf1 ip4:213.133.236.29 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.labcc.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:213.133.236.29 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.labcc.ch -all v=spf1 ip4:31.44.38.212 ip4:31.44.38.213 -all",
- "mx_asns":[
- 5398
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "balerna.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "balerna.ch"
+ ],
+ "guess":[
+ "balerna.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5249":{
"bfs":"5249",
"name":"Castel San Pietro",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"castelsanpietro.ch",
"mx":[
"asmav.assolo.net"
],
"spf":"v=spf1 include:_asms6spf.assolo.net ip4:213.133.224.164 ip4:213.133.224.21 ip4:81.62.228.226 ip4:46.21.27.18 ip4:46.21.27.19 ip4:46.21.27.20 ip4:46.21.27.12 ip4:178.23.174.0/27 ip4:89.207.237.84 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_asms6spf.assolo.net ip4:213.133.224.164 ip4:213.133.224.21 ip4:81.62.228.226 ip4:46.21.27.18 ip4:46.21.27.19 ip4:46.21.27.20 ip4:46.21.27.12 ip4:178.23.174.0/27 ip4:89.207.237.84 -all v=spf1 ip4:213.133.224.19 ip4:213.133.224.59 ip4:213.133.224.90 ip4:213.133.224.91 ip4:213.133.224.83 ~all",
- "mx_asns":[
- 51423
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.castelsanpietro.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "castelsanpietro.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "castelsanpietro.ch"
+ ],
+ "guess":[
+ "castelsanpietro.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5250":{
"bfs":"5250",
"name":"Chiasso",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"chiasso.ch",
"mx":[
"asmav.assolo.net"
],
"spf":"v=spf1 include:_spf.mlsend.com ip4:213.200.244.96/29 ip4:178.23.174.0/27 a:mail.chiasso.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.mlsend.com ip4:213.200.244.96/29 ip4:178.23.174.0/27 a:mail.chiasso.ch -all v=spf1 ip4:185.249.220.0/24 ip4:185.225.161.0/24 ~all",
- "mx_asns":[
- 51423
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chiasso.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chiasso.ch"
+ ],
+ "guess":[
+ "chiasso.ch",
+ "stadt-chiasso.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5251":{
"bfs":"5251",
"name":"Coldrerio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"coldrerio.ch",
"mx":[
"coldrerio-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:46.21.25.126 ip4:194.209.9.131 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com include:spf1.dos-group.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:46.21.25.126 ip4:194.209.9.131 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com include:spf1.dos-group.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:194.209.9.1/24 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX coldrerio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "coldrerio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "coldrerio.ch"
+ ],
+ "guess":[
+ "coldrerio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5254":{
"bfs":"5254",
"name":"Mendrisio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"mendrisio.ch",
"mx":[
"mx01.cloud.vadesecure.com",
@@ -28246,270 +100060,811 @@
"mx04.cloud.vadesecure.com"
],
"spf":"v=spf1 include:servers.mcsv.net ip4:217.193.168.186 ip4:62.2.94.100 include:spf.cloud.vadesecure.com include:spf.protection.outlook.com ip4:195.144.52.177 ip4:62.2.94.104 ip4:62.2.94.114 mx ip4:62.55.182.68 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:servers.mcsv.net ip4:217.193.168.186 ip4:62.2.94.100 include:spf.cloud.vadesecure.com include:spf.protection.outlook.com ip4:195.144.52.177 ip4:62.2.94.104 ip4:62.2.94.114 mx ip4:62.55.182.68 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:109.197.246.0/26 ip4:217.74.103.0/24 ip4:52.47.203.24 ip4:35.180.3.224 ip4:52.143.185.155 ip4:52.143.133.92 ip4:195.154.80.82 ip4:163.172.55.8 ip4:51.15.159.199 ip4:52.143.144.224 ip4:52.143.151.82 ip4:163.172.240.98 ip4:163.172.240.110 ip4:163.172.240.111 ip4:135.125.122.66 ip4:135.125.122.67 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 12876,
- 16276
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.mendrisio.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mendrisio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mendrisio.ch"
+ ],
+ "guess":[
+ "mendrisio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5257":{
"bfs":"5257",
"name":"Morbio Inferiore",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"morbioinf.ch",
"mx":[
"morbioinf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 a:lin16.assolo.net -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 a:lin16.assolo.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX morbioinf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.morbioinf.ch CNAME → selector1-morbioinf-ch._domainkey.morbioinferiore.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.morbioinf.ch CNAME → selector2-morbioinf-ch._domainkey.morbioinferiore.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "morbioinf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "morbioinf.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5260":{
"bfs":"5260",
"name":"Novazzano",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"novazzano.ch",
"mx":[
"novazzano-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx:mail.ticinoposta.ch ip4:178.23.174.0/27 ip4:84.16.245.14 ip4:84.16.245.15 ip4:84.16.244.136 ip4:89.207.237.84 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx:mail.ticinoposta.ch ip4:178.23.174.0/27 ip4:84.16.245.14 ip4:84.16.245.15 ip4:84.16.244.136 ip4:89.207.237.84 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX novazzano-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "novazzano.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "novazzano.ch"
+ ],
+ "guess":[
+ "novazzano.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5263":{
"bfs":"5263",
"name":"Riva San Vitale",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"rivasanvitale.ch",
"mx":[
"mailscanner.moresi.com"
],
"spf":"v=spf1 mx ip4:178.23.174.0/27 ip4:89.207.237.84 ip6:2a02:ab40:0:1003::/64 ip4:213.133.236.26 -all",
"provider":"independent",
- "mx_asns":[
- 196810
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.becloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "rivasanvitale.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rivasanvitale.ch"
+ ],
+ "guess":[
+ "rivasanvitale.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5266":{
"bfs":"5266",
"name":"Stabio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"stabio.ch",
"mx":[
"ch-backup-mailsecurity.cybersecservices.ch",
"ch-mailsecurity.cybersecservices.ch"
],
"spf":"v=spf1 a:smtp.mlt-systems.ch a:cpanel.mlt-systems.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 a:smtp.mlt-systems.ch a:cpanel.mlt-systems.ch include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 196810
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.stabio.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.stabio.ch CNAME → selector1-stabio-ch._domainkey.comunestabio.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.stabio.ch CNAME → selector2-stabio-ch._domainkey.comunestabio.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "stabio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "stabio.ch"
+ ],
+ "guess":[
+ "stabio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5268":{
"bfs":"5268",
"name":"Vacallo",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"vacallo.ch",
"mx":[
"mail.ticinoposta.ch"
],
"spf":"v=spf1 mx a:mail.ticinoposta.ch a:ticinoposta.mifaweb.net -all",
"provider":"independent",
- "mx_asns":[
- 207143
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vacallo.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vacallo.ch"
+ ],
+ "guess":[
+ "vacallo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5269":{
"bfs":"5269",
"name":"Breggia",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"comunebreggia.ch",
"mx":[
"mail.comunebreggia.ch"
],
"spf":"v=spf1 include:_asms3spf.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.236 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_asms3spf.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.236 -all v=spf1 a:asms3.assolo.net ip4:213.133.224.11 ip4:213.133.224.212 ip4:213.133.224.13 a:asms9.assolo.net ip4:213.133.224.218 ip4:213.133.224.21 ip4:213.133.224.42 ip4:213.133.224.75 ~all",
- "mx_asns":[
- 51423
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "comunebreggia.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "comunebreggia.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5281":{
"bfs":"5281",
"name":"Biasca",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"biasca.ch",
"mx":[
"biasca-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.133.224.25 ip4:213.133.226.34 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:89.251.240.41/32 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.133.224.25 ip4:213.133.226.34 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:89.251.240.41/32 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX biasca-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.biasca.ch CNAME → selector1-biasca-ch._domainkey.biascacomune.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.biasca.ch CNAME → selector2-biasca-ch._domainkey.biascacomune.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "biasca.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "biasca.ch"
+ ],
+ "guess":[
+ "biasca.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5287":{
"bfs":"5287",
"name":"Riviera",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"comuneriviera.ch",
"mx":[
"mail1.comuneriviera.ch"
],
"spf":"v=spf1 mx ip4:213.133.224.155 ip4:213.133.224.173 ip4:46.14.64.106 ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.209 ip4:213.133.224.68 ~all",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
- ]
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "comuneriviera.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "comuneriviera.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5304":{
"bfs":"5304",
"name":"Bosco/Gurin",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"bosco-gurin.ch",
"mx":[
"bosco-gurin.ch"
],
"spf":"v=spf1 +a +mx +ip4:195.190.166.210 ~all",
"provider":"independent",
- "mx_asns":[
- 12620
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "bosco-gurin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bosco-gurin.ch"
+ ],
+ "guess":[
+ "bosco-gurin.ch",
+ "bosco.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5307":{
"bfs":"5307",
"name":"Campo (Vallemaggia)",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"campo-vallemaggia.ch",
"mx":[
"campovallemaggia-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX campovallemaggia-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "campo-vallemaggia.ch",
+ "ti.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "campo-vallemaggia.ch"
+ ],
+ "guess":[
+ "campo.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5309":{
"bfs":"5309",
"name":"Cerentino",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"cerentino.ch",
"mx":[
"mail.cerentino.ch"
],
"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "cerentino.ch",
+ "shindesign.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cerentino.ch"
+ ],
+ "guess":[
+ "cerentino.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5310":{
"bfs":"5310",
"name":"Cevio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"cevio.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cevio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cevio.ch"
+ ],
+ "guess":[
+ "cevio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5315":{
"bfs":"5315",
"name":"Linescio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"linescio.ch",
"mx":[
"mail.linescio.ch"
],
"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "linescio.ch"
+ ],
+ "guess":[
+ "linescio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5317":{
"bfs":"5317",
"name":"Maggia",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"maggia.ch",
"mx":[
"mail.maggia.ch"
],
"spf":"v=spf1 a:maggia.ch mx ~all",
"provider":"independent",
- "mx_asns":[
- 24940
- ],
- "autodiscover":{
- "autodiscover_srv":"lx43.hoststar.hosting"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maggia.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maggia.ch"
+ ],
+ "guess":[
+ "maggia.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5323":{
"bfs":"5323",
"name":"Lavizzara",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"lavizzara.ch",
"mx":[
"lavizzara.ch"
],
"spf":"v=spf1 ip4:195.190.166.214 +a +mx +ip4:195.190.166.208 ~all",
"provider":"independent",
- "mx_asns":[
- 12620
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lavizzara.ch"
+ ],
+ "guess":[
+ "lavizzara.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5324":{
"bfs":"5324",
"name":"Avegno Gordevio",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"avegnogordevio.ch",
"mx":[
"avegnogordevio-ch.mail.protection.outlook.com",
@@ -28518,14 +100873,71 @@
],
"spf":"v=spf1 ip4:195.190.166.212 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:195.190.166.212 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075,
- 12620
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX avegnogordevio-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "avegnogordevio.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "avegnogordevio.ch"
+ ],
+ "guess":[
+ "avegnogordevio.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5395":{
"bfs":"5395",
@@ -28537,18 +100949,82 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.180.162.206 ip4:213.200.233.58 ip4:109.164.222.186 ip4:109.164.214.150 ip4:146.4.115.166 ip4:213.133.234.100 ip4:213.133.224.103 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:213.180.162.206 ip4:213.200.233.58 ip4:109.164.222.186 ip4:109.164.214.150 ip4:146.4.115.166 ip4:213.133.234.100 ip4:213.133.224.103 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lema-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lema.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lema.ch"
+ ],
+ "guess":[
+ "lema.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5396":{
"bfs":"5396",
"name":"Terre di Pedemonte",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"pedemonte.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -28556,67 +101032,246 @@
],
"spf":"v=spf1 include:_asms3spf.assolo.net include:spf.protection.outlook.com a:lin12.assolo.net a:lin21.assolo.net ip4:213.133.224.236 ip4:213.133.224.237 ip4:213.133.224.238 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_asms3spf.assolo.net include:spf.protection.outlook.com a:lin12.assolo.net a:lin21.assolo.net ip4:213.133.224.236 ip4:213.133.224.237 ip4:213.133.224.238 -all v=spf1 a:asms3.assolo.net ip4:213.133.224.11 ip4:213.133.224.212 ip4:213.133.224.13 a:asms9.assolo.net ip4:213.133.224.218 ip4:213.133.224.21 ip4:213.133.224.42 ip4:213.133.224.75 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"sophos",
- "mx_asns":[
- 16509
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"sophos",
+ "sources_detail":{
+ "scrape":[
+ "pedemonte.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pedemonte.ch"
+ ],
+ "guess":[
+ "terredipedemonte.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5397":{
"bfs":"5397",
"name":"Centovalli",
- "canton":"",
- "domain":"intragna.ch",
+ "canton":"Kanton Tessin",
+ "domain":"centovalli.swiss",
"mx":[
"mx1-eu1.ppe-hosted.com",
"mx2-eu1.ppe-hosted.com"
],
"spf":"v=spf1 mx a:dispatch-eu.ppe-hosted.com ~all",
"provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"proofpoint",
- "mx_asns":[
- 52129
- ]
+ "sources_detail":{
+ "override":[
+ "centovalli.swiss"
+ ]
+ },
+ "resolve_flags":[]
},
"5398":{
"bfs":"5398",
"name":"Gambarogno",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"gambarogno.ch",
"mx":[
"asmav.assolo.net"
],
"spf":"v=spf1 ip4:109.164.223.179 a:lin15.assolo.net a:lin24.assolo.net -all",
"provider":"independent",
- "mx_asns":[
- 51423
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gambarogno.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gambarogno.ch"
+ ],
+ "guess":[
+ "gambarogno.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5399":{
"bfs":"5399",
"name":"Verzasca",
- "canton":"",
+ "canton":"Kanton Tessin",
"domain":"verzasca.swiss",
"mx":[
"verzasca-swiss.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.133.224.79 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:213.133.224.79 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verzasca-swiss.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "verzasca.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "verzasca.swiss"
+ ],
+ "guess":[
+ "verzasca.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5401":{
"bfs":"5401",
"name":"Aigle",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"aigle.ch",
"mx":[
"fallbackmx.spamexperts.eu",
@@ -28625,86 +101280,365 @@
],
"spf":"v=spf1 include:_netblocks.aigle.ch include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_netblocks.aigle.ch include:spf.protection.outlook.com ~all v=spf1 ip4:46.175.9.207 ip4:62.48.3.130 ip4:62.48.3.132 ip4:62.48.3.139 ip4:62.48.3.140 ip4:212.147.15.97 ip4:185.54.6.109 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 16633,
- 43054
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.aigle.ch CNAME → selector1-aigle-ch._domainkey.communeaigle.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.aigle.ch CNAME → selector2-aigle-ch._domainkey.communeaigle.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aigle.ch",
+ "vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aigle.ch"
+ ],
+ "guess":[
+ "aigle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5402":{
"bfs":"5402",
"name":"Bex",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bex.ch",
"mx":[
"bex-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.109 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.109 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bex-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bex.ch"
+ ],
+ "guess":[
+ "bex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5403":{
"bfs":"5403",
"name":"Chessel",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chessel.ch",
"mx":[
"chessel-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chessel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chessel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chessel.ch"
+ ],
+ "guess":[
+ "chessel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5404":{
"bfs":"5404",
"name":"Corbeyrier",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"corbeyrier.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corbeyrier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corbeyrier.ch"
+ ],
+ "guess":[
+ "corbeyrier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5405":{
"bfs":"5405",
"name":"Gryon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"gryon.ch",
"mx":[
"gryon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.111 a mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.111 a mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gryon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gryon.ch CNAME → selector1-gryon-ch._domainkey.communegryon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gryon.ch CNAME → selector2-gryon-ch._domainkey.communegryon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gryon-tourisme.ch",
+ "gryon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gryon.ch"
+ ],
+ "guess":[
+ "gryon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5406":{
"bfs":"5406",
@@ -28716,54 +101650,245 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lavey-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.lavey.ch CNAME → selector1-lavey-ch._domainkey.communelavey.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.lavey.ch CNAME → selector2-lavey-ch._domainkey.communelavey.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lavey.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lavey.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5407":{
"bfs":"5407",
"name":"Leysin",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"leysin.ch",
"mx":[
"mps.telecomservices.ch"
],
"spf":"v=spf1 a:mail.leysin.ch a:mps.telecomservices.ch include:spf.protection.outlook.com include:witecom.ch include:servers.mcsv.net include:spf.protection.outlook.com include:protection.outlook.com ip4:185.43.245.131 ip4:84.253.14.34 ip4:84.253.7.218 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a:mail.leysin.ch a:mps.telecomservices.ch include:spf.protection.outlook.com include:witecom.ch include:servers.mcsv.net include:spf.protection.outlook.com include:protection.outlook.com ip4:185.43.245.131 ip4:84.253.14.34 ip4:84.253.7.218 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.43.244.0/22 ip6:2a05:4880::/29 include:fwdsc.swisscenter.com -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all",
- "mx_asns":[
- 43800
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.leysin.ch CNAME → selector1-leysin-ch._domainkey.adminleysin.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.leysin.ch CNAME → selector2-leysin-ch._domainkey.adminleysin.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leysin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leysin.ch"
+ ],
+ "guess":[
+ "leysin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5408":{
"bfs":"5408",
"name":"Noville",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"noville.ch",
"mx":[
"noville-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX noville-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cartoriviera.ch",
+ "noville.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "noville.ch"
+ ],
+ "guess":[
+ "noville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5409":{
"bfs":"5409",
"name":"Ollon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ollon.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -28771,170 +101896,706 @@
],
"spf":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com include:_spf-eu.ppe-hosted.com a:dispatch-eu.ppe-hosted.com a:dispatch1-eu1.ppe-hosted.com ip4:185.54.6.109 ip4:145.232.246.230 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com include:_spf-eu.ppe-hosted.com a:dispatch-eu.ppe-hosted.com a:dispatch1-eu1.ppe-hosted.com ip4:185.54.6.109 ip4:145.232.246.230 -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:dispatch-eu.ppe-hosted.com ~all",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ollon.ch"
+ ],
+ "guess":[
+ "ollon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5410":{
"bfs":"5410",
"name":"Ormont-Dessous",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ormont-dessous.ch",
"mx":[
"ormontdessous-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.blk.ymc.swiss ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.blk.ymc.swiss ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ormontdessous-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ormont-dessous.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ormont-dessous.ch"
+ ],
+ "guess":[
+ "ormont-dessous.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5411":{
"bfs":"5411",
"name":"Ormont-Dessus",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ormont-dessus.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch mx -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch mx -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34146
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ormont-dessus.ch"
+ ],
+ "guess":[
+ "ormont-dessus.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5412":{
"bfs":"5412",
"name":"Rennaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rennaz.ch",
"mx":[
"rennaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.hostcenter.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com include:_spf.hostcenter.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rennaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rennaz.ch CNAME → selector1-rennaz-ch._domainkey.communerennaz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rennaz.ch CNAME → selector2-rennaz-ch._domainkey.communerennaz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rennaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rennaz.ch"
+ ],
+ "guess":[
+ "rennaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5413":{
"bfs":"5413",
- "name":"Roche",
- "canton":"",
+ "name":"Roche (VD)",
+ "canton":"Kanton Waadt",
"domain":"roche-vd.ch",
"mx":[
"rochevd-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.109 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.109 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rochevd-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.roche-vd.ch CNAME → selector1-rochevd-ch01c._domainkey.communederoche.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.roche-vd.ch CNAME → selector2-rochevd-ch01c._domainkey.communederoche.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "roche-vd.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5414":{
"bfs":"5414",
- "name":"Villeneuve",
- "canton":"",
+ "name":"Villeneuve (VD)",
+ "canton":"Kanton Waadt",
"domain":"villeneuve.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:spf.evok.ch include:spf.rcv.ch include:_spf.i-web.ch include:spf1.ne.ch ip4:194.56.250.0/23 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.evok.ch include:spf.rcv.ch include:_spf.i-web.ch include:spf1.ne.ch ip4:194.56.250.0/23 -all v=spf1 ip4:193.33.30.81/32 ip4:193.33.30.87/32 ip4:193.33.30.91/32 ip4:193.33.30.92/32 ip4:193.33.30.124/32 ip4:193.33.30.125/32 ip4:185.122.238.197/32 ip4:185.122.238.201/32 ip4:185.122.238.202/32 include:seppmail.evok.ch -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:193.33.30.89/32 ip4:185.122.238.200/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "villeneuve.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "villeneuve.ch"
+ ],
+ "guess":[
+ "villeneuve.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5415":{
"bfs":"5415",
"name":"Yvorne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"yvorne.ch",
"mx":[
"yvorne-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:193.34.137.65 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:193.34.137.65 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX yvorne-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.yvorne.ch CNAME → selector1-yvorne-ch._domainkey.communeyvorne.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.yvorne.ch CNAME → selector2-yvorne-ch._domainkey.communeyvorne.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "yvorne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "yvorne.ch"
+ ],
+ "guess":[
+ "yvorne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5422":{
"bfs":"5422",
"name":"Aubonne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"aubonne.ch",
"mx":[
"aubonne-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.rcv.ch include:_spf.psm.knowbe4.com include:spf.protection.outlook.com ip4:217.119.144.0/24 ip4:217.119.146.132 ip4:185.54.6.105 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.rcv.ch include:_spf.psm.knowbe4.com include:spf.protection.outlook.com ip4:217.119.144.0/24 ip4:217.119.146.132 ip4:185.54.6.105 ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:23.21.109.197 ip4:23.21.109.212 ip4:147.160.167.14 ip4:147.160.167.15 ip4:52.49.235.189 ip4:52.49.201.246 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aubonne-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.aubonne.ch CNAME → selector1-aubonne-ch._domainkey.aubonnech.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.aubonne.ch CNAME → selector2-aubonne-ch._domainkey.aubonnech.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aubonne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aubonne.ch"
+ ],
+ "guess":[
+ "aubonne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5423":{
"bfs":"5423",
"name":"Ballens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ballens.ch",
"mx":[
"ballens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ?all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ballens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ballens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ballens.ch"
+ ],
+ "guess":[
+ "ballens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5424":{
"bfs":"5424",
"name":"Berolle",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"berolle.ch",
"mx":[
"mail.berolle.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "berolle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "berolle.ch"
+ ],
+ "guess":[
+ "berolle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5425":{
"bfs":"5425",
@@ -28946,13 +102607,75 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bierevd-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "biere-vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "biere-vd.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5426":{
"bfs":"5426",
@@ -28964,35 +102687,126 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.105 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.105 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bougyvillars-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aubonne.ch",
+ "bougy-villars.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bougy-villars.ch"
+ ],
+ "guess":[
+ "bougy-villars.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5427":{
"bfs":"5427",
"name":"Féchy",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"fechy.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fechy.ch"
+ ],
+ "guess":[
+ "fechy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5428":{
"bfs":"5428",
- "name":"Gimel VD",
+ "name":"Gimel",
"canton":"Kanton Waadt",
"domain":"gimel.ch",
"mx":[
@@ -29000,13 +102814,69 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gimel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gimel.ch"
+ ],
+ "guess":[
+ "gimel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5429":{
"bfs":"5429",
@@ -29018,85 +102888,316 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX longirod-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "longirod.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "longirod.ch"
+ ],
+ "guess":[
+ "longirod.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5430":{
"bfs":"5430",
"name":"Marchissy",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"marchissy.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "marchissy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "marchissy.ch"
+ ],
+ "guess":[
+ "marchissy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5431":{
"bfs":"5431",
- "name":"Mollens",
- "canton":"",
+ "name":"Mollens (VD)",
+ "canton":"Kanton Waadt",
"domain":"mollensvd.ch",
"mx":[
"mollensvd-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mollensvd-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mollensvd.ch"
+ ],
+ "guess":[
+ "mollens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5434":{
"bfs":"5434",
"name":"Saint-George",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"stgeorge.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.vtx.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.vtx.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:194.38.175.0/24 ip4:194.38.166.0/27 ip4:212.40.2.0/25 ip4:212.109.85.192/27 ip4:212.147.10.0/26 ip4:212.147.62.64/26 ip4:212.147.62.128/27 ip4:212.147.99.24/29 ip4:194.148.30.0/24 ip4:195.15.4.240/28 include:_spf-24x.romandie.hosting -all v=spf1 include:amazonses.com ?all v=spf1 a:catcher-241.romandie.hosting a:catcher-242.romandie.hosting ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "stgeorge.ch"
+ ],
+ "guess":[
+ "saint-george.ch",
+ "saintgeorge.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5435":{
"bfs":"5435",
"name":"Saint-Livres",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"st-livres.ch",
"mx":[
"stlivres-ch0e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com a:dynamic.st-livres.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com a:dynamic.st-livres.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stlivres-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "st-livres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "st-livres.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5436":{
"bfs":"5436",
@@ -29108,13 +103209,39 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saint-oyens.ch"
+ ],
+ "guess":[
+ "saint-oyens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5437":{
"bfs":"5437",
@@ -29126,13 +103253,35 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "saubraz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saubraz.ch"
+ ],
+ "guess":[
+ "saubraz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5451":{
"bfs":"5451",
@@ -29144,227 +103293,1040 @@
],
"spf":"v=spf1 +a:relay01.wlk-ems.com +a:exchange.avenches.ch ip4:212.90.203.0/27 ip4:195.186.0.0/16 include:spf.protection.outlook.com include:spf.mailjet.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a:relay01.wlk-ems.com +a:exchange.avenches.ch ip4:212.90.203.0/27 ip4:195.186.0.0/16 include:spf.protection.outlook.com include:spf.mailjet.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX avenches-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "avenches.ch"
+ ],
+ "guess":[
+ "avenches.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5456":{
"bfs":"5456",
"name":"Cudrefin",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cudrefin.ch",
"mx":[
"cudrefin-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cudrefin-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cudrefin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cudrefin.ch"
+ ],
+ "guess":[
+ "cudrefin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5458":{
"bfs":"5458",
"name":"Faoug",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"faoug.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "faoug.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "faoug.ch"
+ ],
+ "guess":[
+ "faoug.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5464":{
"bfs":"5464",
"name":"Vully-les-Lacs",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vully-les-lacs.ch",
"mx":[
"vullyleslacs-ch01cc.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.14.2.218 include:spf.protection.outlook.com include:spf.eadmin-solutions.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.14.2.218 include:spf.protection.outlook.com include:spf.eadmin-solutions.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vullyleslacs-ch01cc.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vully-les-lacs.ch CNAME → selector1-vullyleslacs-ch01cc._domainkey.vllacs.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vully-les-lacs.ch CNAME → selector2-vullyleslacs-ch01cc._domainkey.vllacs.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vully-les-lacs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vully-les-lacs.ch"
+ ],
+ "guess":[
+ "vully-les-lacs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5471":{
"bfs":"5471",
"name":"Bettens",
- "canton":"",
- "domain":"bettens.ch",
+ "canton":"Kanton Waadt",
+ "domain":"bluewin.ch",
"mx":[
- "marot.bettens.ch"
+ "mx01.p.bluenet.ch",
+ "mx02.p.bluenet.ch"
],
- "spf":"",
+ "spf":"v=spf1 redirect=_spf.bluewin.ch",
"provider":"independent",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bluewin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5472":{
"bfs":"5472",
"name":"Bournens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bournens.ch",
"mx":[
"bournens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bournens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bournens.ch"
+ ],
+ "guess":[
+ "bournens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5473":{
"bfs":"5473",
- "name":"Boussens VD",
- "canton":"",
+ "name":"Boussens",
+ "canton":"Kanton Waadt",
"domain":"boussens.ch",
"mx":[
"boussens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX boussens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boussens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boussens.ch"
+ ],
+ "guess":[
+ "boussens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5474":{
"bfs":"5474",
"name":"La Chaux (Cossonay)",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lachaux.ch",
"mx":[
"lachaux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com include:spf.infomaniak.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com include:spf.infomaniak.ch ~all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lachaux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lachaux.ch"
+ ],
+ "guess":[
+ "la-chaux.ch",
+ "lachaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5475":{
"bfs":"5475",
"name":"Chavannes-le-Veyron",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chavannes-le-veyron.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chavannes-le-veyron.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chavannes-le-veyron.ch"
+ ],
+ "guess":[
+ "chavannes-le-veyron.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5476":{
"bfs":"5476",
"name":"Chevilly",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chevilly.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chevilly.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chevilly.ch"
+ ],
+ "guess":[
+ "chevilly.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5477":{
"bfs":"5477",
"name":"Cossonay",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cossonay.ch",
"mx":[
"cossonay-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:145.232.246.190 ip4:185.54.6.105 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:145.232.246.190 ip4:185.54.6.105 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cossonay-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cossonay.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cossonay.ch"
+ ],
+ "guess":[
+ "cossonay.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5479":{
"bfs":"5479",
"name":"Cuarnens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cuarnens.ch",
"mx":[
"cuarnens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:62.202.19.61 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:62.202.19.61 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cuarnens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cuarnens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cuarnens.ch"
+ ],
+ "guess":[
+ "cuarnens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5480":{
"bfs":"5480",
"name":"Daillens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"daillens.ch",
"mx":[
"daillens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX daillens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.daillens.ch CNAME → selector1-daillens-ch._domainkey.daillens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.daillens.ch CNAME → selector2-daillens-ch._domainkey.daillens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "daillens.ch"
+ ],
+ "guess":[
+ "daillens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5481":{
"bfs":"5481",
- "name":"Dizy VD",
+ "name":"Dizy",
"canton":"Kanton Waadt",
"domain":"dizy.ch",
"mx":[
@@ -29372,31 +104334,155 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dizy-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "dizy.ch"
+ ],
+ "guess":[
+ "dizy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5482":{
"bfs":"5482",
"name":"Eclépens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"eclepens.ch",
"mx":[
"eclepens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eclepens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eclepens.ch"
+ ],
+ "guess":[
+ "eclepens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5483":{
"bfs":"5483",
@@ -29408,61 +104494,184 @@
],
"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:fwdsc.swisscenter.com -all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all",
- "mx_asns":[
- 49457
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ferreyres.ch"
+ ],
+ "guess":[
+ "ferreyres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5484":{
"bfs":"5484",
"name":"Gollion",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"gollion.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gollion.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gollion.ch"
+ ],
+ "guess":[
+ "gollion.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5485":{
"bfs":"5485",
"name":"Grancy",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"grancy.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grancy.ch"
+ ],
+ "guess":[
+ "grancy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5486":{
"bfs":"5486",
- "name":"L’Isle",
- "canton":"",
+ "name":"L'Isle",
+ "canton":"Kanton Waadt",
"domain":"lisle.ch",
"mx":[
"lisle-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lisle-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lisle.ch"
+ ],
+ "guess":[
+ "lisle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5487":{
"bfs":"5487",
@@ -29474,13 +104683,35 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.o-i.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lussery-villars.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lussery-villars.ch"
+ ],
+ "guess":[
+ "lussery-villars.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5488":{
"bfs":"5488",
@@ -29492,32 +104723,89 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mauraz.ch"
+ ],
+ "guess":[
+ "mauraz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5489":{
"bfs":"5489",
- "name":"Mex",
- "canton":"",
+ "name":"Mex (VD)",
+ "canton":"Kanton Waadt",
"domain":"mex.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mex.ch"
+ ],
+ "guess":[
+ "mex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5490":{
"bfs":"5490",
- "name":"Moiry VD",
+ "name":"Moiry",
"canton":"Kanton Waadt",
"domain":"moiry.ch",
"mx":[
@@ -29525,69 +104813,209 @@
],
"spf":"v=spf1 include:_spf.kreativmedia.ch mx a a:smtp-sh.infomaniak.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch mx a a:smtp-sh.infomaniak.ch -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "moiry.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moiry.ch"
+ ],
+ "guess":[
+ "moiry.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5491":{
"bfs":"5491",
"name":"Mont-la-Ville",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"mont-la-ville.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grf-fiduciaire.ch",
+ "mont-la-ville.ch",
+ "slide-effect.com"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mont-la-ville.ch"
+ ],
+ "guess":[
+ "mont-la-ville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5492":{
"bfs":"5492",
"name":"Montricher",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"montricher.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montricher.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montricher.ch"
+ ],
+ "guess":[
+ "montricher.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5493":{
"bfs":"5493",
"name":"Orny",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"orny.ch",
"mx":[
"orny-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:178.199.52.153 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.199.52.153 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX orny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.orny.ch CNAME → selector1-orny-ch._domainkey.communeorny.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.orny.ch CNAME → selector2-orny-ch._domainkey.communeorny.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "orny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "orny.ch"
+ ],
+ "guess":[
+ "orny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5495":{
"bfs":"5495",
"name":"Penthalaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"penthalaz.ch",
"mx":[
"cloud7.spamtitan.com",
@@ -29595,67 +105023,379 @@
],
"spf":"v=spf1 mx mx:rcv.ch include:relay.mail.infomaniak.ch include:_spf_cd.spamtitan.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx mx:rcv.ch include:relay.mail.infomaniak.ch include:_spf_cd.spamtitan.com include:spf.protection.outlook.com ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:34.236.127.150 ip4:52.2.95.112 ip4:52.4.138.46 ip4:52.45.19.177 ip4:52.5.202.67 ip4:54.164.100.18 ip4:100.52.62.155 ip4:3.221.136.17 ip4:100.50.239.226 ip4:18.205.228.94 ip4:18.207.12.57 ip4:34.194.51.1 ip4:34.230.214.253 ip4:52.45.214.19 ip4:54.157.90.193 ip4:3.219.94.195 ip4:52.45.52.207 ip4:54.197.86.18 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "penthalaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "penthalaz.ch"
+ ],
+ "guess":[
+ "penthalaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5496":{
"bfs":"5496",
"name":"Penthaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"penthaz.ch",
"mx":[
"penthaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX penthaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.penthaz.ch CNAME → selector1-penthaz-ch._domainkey.penthaz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.penthaz.ch CNAME → selector2-penthaz-ch._domainkey.penthaz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "penthaz.ch"
+ ],
+ "guess":[
+ "penthaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5497":{
"bfs":"5497",
"name":"Pompaples",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"pompaples.ch",
"mx":[
"pompaples-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pompaples-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pompaples.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pompaples.ch"
+ ],
+ "guess":[
+ "pompaples.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5498":{
"bfs":"5498",
"name":"La Sarraz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lasarraz.ch",
"mx":[
"lasarraz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a:webcms.ruf.ch include:spf.ganesh-hosting.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a:webcms.ruf.ch include:spf.ganesh-hosting.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lasarraz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lasarraz.ch"
+ ],
+ "guess":[
+ "lasarraz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5499":{
"bfs":"5499",
@@ -29667,141 +105407,622 @@
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "senarclens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "senarclens.ch"
+ ],
+ "guess":[
+ "senarclens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5501":{
"bfs":"5501",
"name":"Sullens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"sullens.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.81/32 ip4:193.33.30.87/32 ip4:193.33.30.91/32 ip4:193.33.30.92/32 ip4:193.33.30.124/32 ip4:193.33.30.125/32 ip4:185.122.238.197/32 ip4:185.122.238.201/32 ip4:185.122.238.202/32 include:seppmail.evok.ch -all v=spf1 ip4:193.33.30.89/32 ip4:185.122.238.200/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "sullens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sullens.ch"
+ ],
+ "guess":[
+ "sullens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5503":{
"bfs":"5503",
"name":"Vufflens-la-Ville",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vufflens-la-ville.ch",
"mx":[
"vufflenslaville-ch02j.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vufflenslaville-ch02j.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vufflens-la-ville.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vufflens-la-ville.ch"
+ ],
+ "guess":[
+ "vufflens-la-ville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5511":{
"bfs":"5511",
"name":"Assens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"assens.ch",
"mx":[
"assens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.14.23.22 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.14.23.22 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX assens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "assens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "assens.ch"
+ ],
+ "guess":[
+ "assens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5512":{
"bfs":"5512",
"name":"Bercher",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bercher-vd.ch",
"mx":[
"berchervd-ch01i.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:185.54.6.111 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:185.54.6.111 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX berchervd-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bercher-vd.ch CNAME → selector1-berchervd-ch01i._domainkey.greffebercher.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bercher-vd.ch CNAME → selector2-berchervd-ch01i._domainkey.greffebercher.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bercher-vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bercher-vd.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5514":{
"bfs":"5514",
"name":"Bottens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bottens.ch",
"mx":[
"bottens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.200.241.130 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.200.241.130 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bottens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bottens.ch CNAME → selector1-bottens-ch._domainkey.communebottens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bottens.ch CNAME → selector2-bottens-ch._domainkey.communebottens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bottens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bottens.ch"
+ ],
+ "guess":[
+ "bottens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5515":{
"bfs":"5515",
"name":"Bretigny-sur-Morrens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bretigny.ch",
"mx":[
"bretigny-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bretigny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bretigny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bretigny.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5516":{
"bfs":"5516",
- "name":"Cugy",
- "canton":"",
+ "name":"Cugy (VD)",
+ "canton":"Kanton Waadt",
"domain":"cugy-vd.ch",
"mx":[
"cugyvd-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cugyvd-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cugy-vd.ch CNAME → selector1-cugyvd-ch01b._domainkey.communecugy.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cugy-vd.ch CNAME → selector2-cugyvd-ch01b._domainkey.communecugy.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cugy-vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cugy-vd.ch"
+ ],
+ "guess":[
+ "cugy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5518":{
"bfs":"5518",
"name":"Echallens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"echallens.ch",
"mx":[
"mx1.mtaroutes.com",
@@ -29811,32 +106032,110 @@
],
"spf":"v=spf1 include:spf1.ne.ch include:spf.mtaroutes.com include:spf.ganesh-hosting.ch ip4:185.214.154.116 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf1.ne.ch include:spf.mtaroutes.com include:spf.ganesh-hosting.ch ip4:185.214.154.116 -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 include:spf.antispamcloud.com -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:130.117.251.9 ip4:130.117.251.10 ip6:2001:978:2:6::20:10 ip6:2001:978:2:6::20:a ip4:94.75.244.176/27 ip4:94.75.192.139/27 ip4:95.211.2.195/26 ip4:95.211.2.198/26 ip4:95.211.2.199/26 ip4:95.211.2.201/26 ip4:95.211.2.202/26 ip4:95.211.2.204/26 ip4:94.75.244.183/27 ip4:94.75.244.184/27 ip6:2001:1af8:4400:a047:6::1 ip4:37.58.58.55/27 ip4:199.115.117.7/27 ip4:199.115.117.10/27 ip4:199.115.117.11/27 ip6:2604:9a00:2010:a024:21::1 ip4:185.201.16.0/22 ip4:192.69.18.0/24 ip4:208.70.90.0/24 ip4:45.91.121.0/24 ip4:45.93.148.0/24 ip4:45.131.180.0/24 ip4:45.140.132.0/24 ip4:193.41.32.0/24 ip4:185.225.27.0/24 ip4:80.91.219.0/24 ip4:188.190.113.0/24 ip4:45.147.95.0/24 ip4:46.229.240.0/24 ip4:87.236.163.0/24 ip4:188.190.112.0/24 ip4:192.69.19.0/24 ip4:208.70.91.0/24 ip4:185.209.51.0/24 ip4:185.218.226.0/24 -all",
- "mx_asns":[
- 16633,
- 43054
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.echallens.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "echallens.ch"
+ ],
+ "guess":[
+ "echallens.ch",
+ "echallens.vd.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5520":{
"bfs":"5520",
"name":"Essertines-sur-Yverdon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"essertines-sur-yverdon.ch",
"mx":[
"essertinessuryverdon-ch02ee.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX essertinessuryverdon-ch02ee.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "essertines-sur-yverdon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "essertines-sur-yverdon.ch"
+ ],
+ "guess":[
+ "essertines-sur-yverdon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5521":{
"bfs":"5521",
@@ -29848,17 +106147,82 @@
],
"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:185.54.6.111 ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.protection.outlook.com ip4:185.54.6.111 ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX etagnieres-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "echallens.ch",
+ "etagnieres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "etagnieres.ch"
+ ],
+ "guess":[
+ "etagnieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5522":{
"bfs":"5522",
- "name":"Fey VD",
+ "name":"Fey",
"canton":"Kanton Waadt",
"domain":"fey-vd.ch",
"mx":[
@@ -29866,17 +106230,111 @@
],
"spf":"v=spf1 ip4:62.202.5.220 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:62.202.5.220 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX feyvd-ch0i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.fey-vd.ch CNAME → selector1-feyvd-ch0i._domainkey.communefey.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.fey-vd.ch CNAME → selector2-feyvd-ch0i._domainkey.communefey.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fey-vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fey-vd.ch"
+ ],
+ "guess":[
+ "fey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5523":{
"bfs":"5523",
- "name":"Froideville VD",
+ "name":"Froideville",
"canton":"Kanton Waadt",
"domain":"froideville.ch",
"mx":[
@@ -29884,82 +106342,374 @@
],
"spf":"v=spf1 a mx a:mailgate.ti-informatique.com include:_spf.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx a:mailgate.ti-informatique.com include:_spf.i-web.ch -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "froideville.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "froideville.ch"
+ ],
+ "guess":[
+ "froideville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5527":{
"bfs":"5527",
- "name":"Morrens",
- "canton":"",
+ "name":"Morrens (VD)",
+ "canton":"Kanton Waadt",
"domain":"morrens.ch",
"mx":[
"morrens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX morrens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "morrens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "morrens.ch"
+ ],
+ "guess":[
+ "morrens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5529":{
"bfs":"5529",
"name":"Oulens-sous-Echallens",
- "canton":"",
- "domain":"oulens.ch",
+ "canton":"Kanton Waadt",
+ "domain":"oulens-sous-echallens.ch",
"mx":[
- "mta-gw.infomaniak.ch"
+ "oulenssousechallens-ch01ei.mail.protection.outlook.com"
],
- "spf":"v=spf1 a mx include:spf.infomaniak.ch include:_spf.blk.ymc.swiss -all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 a mx include:spf.infomaniak.ch include:_spf.blk.ymc.swiss -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oulenssousechallens-ch01ei.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.oulens-sous-echallens.ch CNAME → selector1-oulenssousechallens-ch01ei._domainkey.oulenssousechallens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.oulens-sous-echallens.ch CNAME → selector2-oulenssousechallens-ch01ei._domainkey.oulenssousechallens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oulens-sous-echallens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oulens.ch"
+ ],
+ "guess":[
+ "oulens-sous-echallens.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"5530":{
"bfs":"5530",
"name":"Pailly",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"pailly.ch",
"mx":[
"pailly-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX pailly-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.pailly.ch CNAME → selector1-pailly-ch._domainkey.communepailly.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.pailly.ch CNAME → selector2-pailly-ch._domainkey.communepailly.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pailly.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pailly.ch"
+ ],
+ "guess":[
+ "pailly.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5531":{
"bfs":"5531",
"name":"Penthéréaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"penthereaz.ch",
"mx":[
"penthereaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX penthereaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "penthereaz.ch"
+ ],
+ "guess":[
+ "penthereaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5533":{
"bfs":"5533",
@@ -29971,13 +106721,35 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "poliez-pittet.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "poliez-pittet.ch"
+ ],
+ "guess":[
+ "poliez-pittet.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5534":{
"bfs":"5534",
@@ -29989,29 +106761,121 @@
],
"spf":"v=spf1 include:spf.fastnet.ch include:spf.sogomail.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.fastnet.ch include:spf.sogomail.ch +mx +a -all v=spf1 include:spf.sogomail.ch ip4:193.246.63.0/24 ip4:194.6.183.0/24 ip4:195.65.49.0/24 ip4:195.176.194.0/24 ip6:2001:918::/32 mx -all v=spf1 ip4:91.212.152.0/24 ~all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"cleanmail",
- "mx_asns":[
- 15547
- ]
+ "sources_detail":{
+ "scrape":[
+ "rueyres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rueyres.ch"
+ ],
+ "guess":[
+ "rueyres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5535":{
"bfs":"5535",
- "name":"Saint-Barthélemy",
- "canton":"",
+ "name":"Saint-Barthélemy (VD)",
+ "canton":"Kanton Waadt",
"domain":"st-barthelemy.ch",
"mx":[
"stbarthelemy-ch0e.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:46.14.27.30/32 ip4:193.246.38.134/32 ip4:164.128.171.231/32 include:spf.protection.outlook.com ?all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:46.14.27.30/32 ip4:193.246.38.134/32 ip4:164.128.171.231/32 include:spf.protection.outlook.com ?all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stbarthelemy-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.st-barthelemy.ch CNAME → selector1-stbarthelemy-ch0e._domainkey.communedestbarthelemy.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.st-barthelemy.ch CNAME → selector2-stbarthelemy-ch0e._domainkey.communedestbarthelemy.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "st-barthelemy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "st-barthelemy.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5537":{
"bfs":"5537",
@@ -30023,201 +106887,734 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villarsleterroir-ch01ie.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "villars-le-terroir.ch"
+ ],
+ "guess":[
+ "villars-le-terroir.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5539":{
"bfs":"5539",
"name":"Vuarrens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vuarrens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vuarrens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vuarrens.ch"
+ ],
+ "guess":[
+ "vuarrens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5540":{
"bfs":"5540",
"name":"Montilliez",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"montilliez.ch",
"mx":[
"mailfilter.pinhaotec.com"
],
"spf":"v=spf1 mx ip4:5.1.96.0/24 -all",
"provider":"independent",
- "mx_asns":[
- 198385
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "montilliez.ch"
+ ],
+ "guess":[
+ "montilliez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5541":{
"bfs":"5541",
"name":"Goumoëns",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"goumoens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "goumoens.ch"
+ ],
+ "guess":[
+ "goumoens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5551":{
"bfs":"5551",
"name":"Bonvillars",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bonvillars.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bonvillars.ch"
+ ],
+ "guess":[
+ "bonvillars.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"5552":{
"bfs":"5552",
"name":"Bullet",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bullet.ch",
"mx":[
"bullet-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bullet-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bullet.ch CNAME → selector1-bullet-ch._domainkey.communebullet.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bullet.ch CNAME → selector2-bullet-ch._domainkey.communebullet.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bullet.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bullet.ch"
+ ],
+ "guess":[
+ "bullet.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5553":{
"bfs":"5553",
"name":"Champagne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"champagne.ch",
"mx":[
"champagne-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX champagne-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "champagne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "champagne.ch"
+ ],
+ "guess":[
+ "champagne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5554":{
"bfs":"5554",
"name":"Concise",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"concise.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "concise.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "concise.ch"
+ ],
+ "guess":[
+ "concise.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5555":{
"bfs":"5555",
"name":"Corcelles-près-Concise",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"corcelles-concise.ch",
"mx":[
"corcellesconcise-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corcellesconcise-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.corcelles-concise.ch CNAME → selector1-corcellesconcise-ch02c._domainkey.corcellesconcise.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.corcelles-concise.ch CNAME → selector2-corcellesconcise-ch02c._domainkey.corcellesconcise.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corcelles-concise.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corcelles-concise.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5556":{
"bfs":"5556",
"name":"Fiez",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"fiez.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fiez.ch"
+ ],
+ "guess":[
+ "fiez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5557":{
"bfs":"5557",
"name":"Fontaines-sur-Grandson",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"fontaines-sur-grandson.ch",
"mx":[
"mail.fontaines-sur-grandson.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fontaines-sur-grandson.ch"
+ ],
+ "guess":[
+ "fontaines-sur-grandson.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5559":{
"bfs":"5559",
"name":"Giez",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"giez.ch",
"mx":[
"giez-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all include:mailgw.tizoo.com",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all include:mailgw.tizoo.com v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:5.182.248.11/32 ip4:212.147.66.228/32 ip4:212.147.66.247/32",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX giez-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.giez.ch CNAME → selector1-giez-ch._domainkey.communegiez.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.giez.ch CNAME → selector2-giez-ch._domainkey.communegiez.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "giez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "giez.ch"
+ ],
+ "guess":[
+ "giez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5560":{
"bfs":"5560",
@@ -30229,31 +107626,121 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grandevent-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.grandevent.ch CNAME → selector1-grandevent-ch._domainkey.grandeventch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.grandevent.ch CNAME → selector2-grandevent-ch._domainkey.grandeventch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grandevent.ch"
+ ],
+ "guess":[
+ "grandevent.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5561":{
"bfs":"5561",
"name":"Grandson",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"grandson.ch",
"mx":[
"mta.witecom.ch"
],
"spf":"v=spf1 mx include:spf.witecom.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.witecom.ch -all v=spf1 ip4:185.43.244.0/22 ip6:2a05:4880::/29 -all",
- "mx_asns":[
- 199811
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.grandson.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grandson.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grandson.ch"
+ ],
+ "guess":[
+ "grandson.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5562":{
"bfs":"5562",
@@ -30265,85 +107752,146 @@
],
"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:fwdsc.swisscenter.com -all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all",
- "mx_asns":[
- 49457
- ],
- "autodiscover":{
- "autodiscover_cname":"automx.swisscenter.com",
- "autodiscover_srv":"automx.swisscenter.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mauborget.ch"
+ ],
+ "guess":[
+ "mauborget.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5563":{
"bfs":"5563",
"name":"Mutrux",
"canton":"Kanton Waadt",
- "domain":"mutrux.ch",
+ "domain":"mutrux.swiss",
"mx":[
- "mail.mutrux.ch"
+ "mta-gw.infomaniak.ch"
],
- "spf":"v=spf1 mx include:spf.w4ymail.at -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.w4ymail.at -all v=spf1 ip4:81.19.149.0/24 ip4:81.19.145.16/29 ip4:81.19.154.96/28 ip4:81.19.154.98/32 ip4:81.19.154.99/32 ip4:185.16.191.128/29 ip6:2a00:1a68:1:101::/64 -all",
- "mx_asns":[
- 8560
- ]
+ "spf":"v=spf1 include:spf.infomaniak.ch -all",
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "mutrux.swiss"
+ ]
+ },
+ "resolve_flags":[]
},
"5564":{
"bfs":"5564",
"name":"Novalles",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"novalles.ch",
"mx":[
"mail.horus.ch"
],
"spf":"v=spf1 include:spf.horus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.horus.ch ~all v=spf1 ip4:194.182.164.99 ip4:185.19.29.61 ip4:194.182.167.72 ip4:159.100.254.204 ip4:159.100.247.17 ip4:81.6.33.6 ip6:2a04:c44:e00:3eb:482:6cff:fe00:d47 ip6:2a04:c44:e00:3eb:4e4:eff:fe00:862 ip6:2a04:c44:e00:3eb:4da:96ff:fe00:724 ip6:2a04:c44:e00:3eb:475:38ff:fe00:102c ip6:2a04:c43:e00:3eb:47f:feff:fe00:17a ~all",
- "mx_asns":[
- 61098
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "novalles.ch"
+ ],
+ "guess":[
+ "novalles.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5565":{
"bfs":"5565",
- "name":"Onnens",
- "canton":"",
+ "name":"Onnens (VD)",
+ "canton":"Kanton Waadt",
"domain":"onnens.ch",
"mx":[
"mta.witecom.ch"
],
"spf":"v=spf1 include:spf.witecom.ch ?all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.witecom.ch ?all v=spf1 ip4:185.43.244.0/22 ip6:2a05:4880::/29 -all",
- "mx_asns":[
- 199811
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.ynv.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "onnens.ch"
+ ],
+ "guess":[
+ "onnens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5566":{
"bfs":"5566",
"name":"Provence",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"provence.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "provence.ch"
+ ],
+ "guess":[
+ "provence.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5568":{
"bfs":"5568",
"name":"Sainte-Croix",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"sainte-croix.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -30351,35 +107899,92 @@
],
"spf":"v=spf1 include:_spf_eucentral1.prod.hydra.sophos.com include:_spf.blk.ymc.swiss -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf_eucentral1.prod.hydra.sophos.com include:_spf.blk.ymc.swiss -all v=spf1 ip4:94.140.18.0/24 ip4:35.159.27.8/30 ip4:35.159.27.28/30 ip4:35.159.27.32/30 ip4:35.159.27.48/29 ip4:35.159.27.160/28 ~all v=spf1 ip4:185.110.152.0/22 ~all",
- "gateway":"sophos",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"webmail.sainte-croix.ch"
- }
+ "gateway":"sophos",
+ "sources_detail":{
+ "scrape":[
+ "sainte-croix.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sainte-croix.ch"
+ ],
+ "guess":[
+ "sainte-croix.ch",
+ "saintecroix.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5571":{
"bfs":"5571",
"name":"Tévenon",
"canton":"Kanton Waadt",
- "domain":"villars-burquin.ch",
+ "domain":"tevenon.ch",
"mx":[
- "mx1.rufcloud.ch",
- "mx2.rufcloud.ch"
+ "mta.witecom.ch"
],
- "spf":"v=spf1 include:spf.infomaniak.ch ?all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 6730
- ]
+ "spf":"v=spf1 mx include:spf.witecom.ch include:spf.customer.swiss-egov.cloud ?all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "override":[
+ "tevenon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5581":{
"bfs":"5581",
"name":"Belmont-sur-Lausanne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"belmont.ch",
"mx":[
"etrn-01.vtx.ch",
@@ -30387,49 +107992,195 @@
],
"spf":"v=spf1 ip4:193.246.106.0/23 ip4:145.232.253.0/24 -all",
"provider":"independent",
- "mx_asns":[
- 12350,
- 201586
- ],
- "autodiscover":{
- "autodiscover_cname":"ex.pully.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "belmont.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5582":{
"bfs":"5582",
"name":"Cheseaux-sur-Lausanne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cheseaux.ch",
"mx":[
"cheseaux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cheseaux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "cheseaux.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5583":{
"bfs":"5583",
"name":"Crissier",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"crissier.ch",
"mx":[
"crissier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.mailjet.com include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.mailjet.com include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX crissier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "crissier.ch"
+ ],
+ "guess":[
+ "crissier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5584":{
"bfs":"5584",
@@ -30441,65 +108192,280 @@
],
"spf":"v=spf1 +a:mail.epalinges.ch +a:www.epalinges.ch include:spf1.ne.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a:mail.epalinges.ch +a:www.epalinges.ch include:spf1.ne.ch include:spf.protection.outlook.com -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.epalinges.ch",
- "autodiscover_srv":"webmail.epalinges.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX epalinges-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.epalinges.ch CNAME → selector1-epalinges-ch._domainkey.epalingesch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.epalinges.ch CNAME → selector2-epalinges-ch._domainkey.epalingesch.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "epalinges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "epalinges.ch"
+ ],
+ "guess":[
+ "epalinges.ch",
+ "epalinges.vd.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5585":{
"bfs":"5585",
"name":"Jouxtens-Mézery",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"jouxtens-mezery.ch",
"mx":[
"jouxtensmezery-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX jouxtensmezery-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.jouxtens-mezery.ch CNAME → selector1-jouxtensmezery-ch02b._domainkey.communejouxtensmezery.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.jouxtens-mezery.ch CNAME → selector2-jouxtensmezery-ch02b._domainkey.communejouxtensmezery.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "jouxtens-mezery.ch"
+ ],
+ "guess":[
+ "jouxtens-mezery.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5586":{
"bfs":"5586",
"name":"Lausanne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lausanne.ch",
"mx":[
"mxvdl.lausanne.ch"
],
"spf":"v=spf1 ip4:193.200.220.0/24 mx:lausanne.ch include:_spf.general.transactional-mail-a.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.200.220.0/24 mx:lausanne.ch include:_spf.general.transactional-mail-a.com -all v=spf1 ip4:94.199.92.0/23 ip4:103.196.252.0/23 ip4:185.93.140.0/22 ip4:185.215.216.0/22 ip4:207.126.136.0/22 ip4:199.204.12.0/22 ip6:2a02:7b01:0:42::1:0/114 ip6:2a02:7b01:1000:42::1:0/114 ip6:2a02:7b01:2000:42::1:0/114 ip6:2a02:7b02:2000:42::1:0/114 ip6:2a02:7b02:0:42::1:0/114 ip6:2a02:7b03:0:42::1:0/114 ~all",
- "mx_asns":[
- 34781
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lausanne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lausanne.ch"
+ ],
+ "guess":[
+ "lausanne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5587":{
"bfs":"5587",
"name":"Le Mont-sur-Lausanne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lemontsurlausanne.ch",
"mx":[
"remote.lemontsurlausanne.ch"
],
"spf":"v=spf1 a mx a:mta-gw.evok.ch ip4:213.200.229.44 ip4:94.103.98.202 ip4:185.54.6.105 ip4:46.14.178.178 include:spf.infomaniak.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 a mx a:mta-gw.evok.ch ip4:213.200.229.44 ip4:94.103.98.202 ip4:185.54.6.105 ip4:46.14.178.178 include:spf.infomaniak.ch ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.lemontsurlausanne.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lemontsurlausanne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lemontsurlausanne.ch"
+ ],
+ "guess":[
+ "lemontsurlausanne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5588":{
"bfs":"5588",
@@ -30511,17 +108477,46 @@
],
"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all",
"provider":"independent",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "paudex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "paudex.ch"
+ ],
+ "guess":[
+ "paudex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5589":{
"bfs":"5589",
"name":"Prilly",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"prilly.ch",
"mx":[
"mail.prilly.ch",
@@ -30529,15 +108524,38 @@
],
"spf":"v=spf1 a mx include:_spf.i-web.ch include:spf.mailpro.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:_spf.i-web.ch include:spf.mailpro.com ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:178.239.38.0/24 ip4:62.133.56.0/24 ip4:62.50.74.80/28 ip4:62.50.73.144/28 ip4:62.50.76.40/29 ip4:62.50.76.16/28 ip4:195.81.131.64/27 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip6:2a06:fa00::/29 -all",
- "mx_asns":[
- 34781
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "prilly.ch"
+ ],
+ "guess":[
+ "prilly.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5590":{
"bfs":"5590",
"name":"Pully",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"pully.ch",
"mx":[
"etrn-01.vtx.ch",
@@ -30545,32 +108563,137 @@
],
"spf":"v=spf1 ip4:193.246.106.0/23 ip4:145.232.253.0/24 ip4:148.196.186.40 ip4:205.201.133.57 include:spf1.ne.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:193.246.106.0/23 ip4:145.232.253.0/24 ip4:148.196.186.40 ip4:205.201.133.57 include:spf1.ne.ch -all v=spf1 ip4:148.196.30.0/24 -all",
- "mx_asns":[
- 12350,
- 201586
- ],
- "autodiscover":{
- "autodiscover_cname":"ex.pully.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "pully.ch"
+ ],
+ "guess":[
+ "pully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5591":{
"bfs":"5591",
- "name":"Renens",
- "canton":"",
+ "name":"Renens (VD)",
+ "canton":"Kanton Waadt",
"domain":"renens.ch",
"mx":[
"renens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:194.29.0.13 ip4:51.107.19.113 include:spf.protection.outlook.com include:spf2.sbr-master.net include:spf1.ne.ch include:spf.infomaniak.ch include:spf-de.emailsignatures365.com a:b.spf.service-now.com a:c.spf.service-now.com a:d.spf.service-now.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.29.0.13 ip4:51.107.19.113 include:spf.protection.outlook.com include:spf2.sbr-master.net include:spf1.ne.ch include:spf.infomaniak.ch include:spf-de.emailsignatures365.com a:b.spf.service-now.com a:c.spf.service-now.com a:d.spf.service-now.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:spf.sarbacane.com -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all v=spf1 ip4:92.175.137.8/29 ip4:185.227.1.128/29 ip4:185.140.220.0/22 ip4:149.6.90.8/29 ip4:217.74.111.240/28 ip4:81.93.29.64/28 ip4:185.8.253.128/28 ip4:37.97.66.0/25 ip4:217.74.111.144/28 ip4:185.75.141.192/27 ip4:109.197.246.193/27 ip4:109.197.241.240/28 ip4:109.197.245.96/27 ip4:185.218.212.96/27 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX renens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "renens.ch"
+ ],
+ "guess":[
+ "renens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5592":{
"bfs":"5592",
@@ -30582,36 +108705,185 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.komodo.ch ip4:46.14.212.184/29 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.komodo.ch ip4:46.14.212.184/29 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.62.168.0/22 ip4:194.113.228.0/22 ip6:2a02:7e60::/32 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.romanel-sur-lausanne.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX romanelsurlausanne-ch01ii.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.romanel-sur-lausanne.ch CNAME → selector1-romanelsurlausanne-ch01ii._domainkey.romanelsurlausanne.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.romanel-sur-lausanne.ch CNAME → selector2-romanelsurlausanne-ch01ii._domainkey.romanelsurlausanne.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "romanel-sur-lausanne.ch"
+ ],
+ "guess":[
+ "romanel-sur-lausanne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5601":{
"bfs":"5601",
"name":"Chexbres",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chexbres.ch",
"mx":[
"chexbres-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:193.8.140.198/32 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:193.8.140.198/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chexbres-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chexbres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chexbres.ch"
+ ],
+ "guess":[
+ "chexbres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5604":{
"bfs":"5604",
- "name":"Forel",
+ "name":"Forel (Lavaux)",
"canton":"Kanton Waadt",
"domain":"forel.ch",
"mx":[
@@ -30619,18 +108891,80 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX forel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "forel.ch"
+ ],
+ "guess":[
+ "forel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5606":{
"bfs":"5606",
"name":"Lutry",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lutry.ch",
"mx":[
"mail.lutry.rcv.ch",
@@ -30638,68 +108972,243 @@
],
"spf":"v=spf1 a mx include:spf.vtx.ch include:spf.rcv.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.vtx.ch include:spf.rcv.ch ~all v=spf1 ip4:194.38.175.0/24 ip4:194.38.166.0/27 ip4:212.40.2.0/25 ip4:212.109.85.192/27 ip4:212.147.10.0/26 ip4:212.147.62.64/26 ip4:212.147.62.128/27 ip4:212.147.99.24/29 ip4:194.148.30.0/24 ip4:195.15.4.240/28 include:_spf-24x.romandie.hosting -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 a:catcher-241.romandie.hosting a:catcher-242.romandie.hosting ~all",
- "mx_asns":[
- 15675
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.lutry.rcv.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lutry.ch"
+ ],
+ "guess":[
+ "lutry.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5607":{
"bfs":"5607",
"name":"Puidoux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"puidoux.ch",
"mx":[
"puidoux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX puidoux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "puidoux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "puidoux.ch"
+ ],
+ "guess":[
+ "puidoux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5609":{
"bfs":"5609",
"name":"Rivaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rivaz.ch",
"mx":[
"rivaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rivaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "rivaz.ch"
+ ],
+ "guess":[
+ "rivaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5610":{
"bfs":"5610",
- "name":"Saint-Saphorin",
- "canton":"",
+ "name":"Saint-Saphorin (Lavaux)",
+ "canton":"Kanton Waadt",
"domain":"saint-saphorin.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saint-saphorin.ch"
+ ],
+ "guess":[
+ "saint-saphorin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5611":{
"bfs":"5611",
- "name":"Savigny VD",
+ "name":"Savigny",
"canton":"Kanton Waadt",
"domain":"savigny.ch",
"mx":[
@@ -30707,18 +109216,92 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.rcv.ch ip4:185.54.6.105 include:_spf.webforge.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.rcv.ch ip4:185.54.6.105 include:_spf.webforge.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX savigny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.savigny.ch CNAME → selector1-savigny-ch._domainkey.communedesavigny.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.savigny.ch CNAME → selector2-savigny-ch._domainkey.communedesavigny.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "savigny.ch"
+ ],
+ "guess":[
+ "savigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5613":{
"bfs":"5613",
"name":"Bourg-en-Lavaux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"b-e-l.ch",
"mx":[
"cust4434-1.in.mailcontrol.com",
@@ -30726,9 +109309,21 @@
],
"spf":"v=spf1 include:fwdsc.swisscenter.com include:mailcontrol.com include:servicehoster.ch a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com ip4:185.54.6.105 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:fwdsc.swisscenter.com include:mailcontrol.com include:servicehoster.ch a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com ip4:185.54.6.105 ~all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all v=spf1 ip4:85.115.32.0/19 ip4:86.111.216.0/21 ip4:116.50.56.0/21 ip4:208.87.232.0/21 ip4:196.216.238.0/23 ip4:192.151.176.0/20 ~all v=spf1 ip4:194.191.24.160/27 ip4:194.191.24.192/26 ip4:194.191.24.244/32 ip4:178.20.103.193 include:secure-mailgate.com -all v=spf1 ip4:46.243.95.179 ip4:46.243.95.180 ip4:128.127.70.0/26 ip4:89.22.108.0/24 ip4:192.162.87.0/24 ip4:109.237.142.0/24 ip6:2a02:a60:0:5::/64 ip4:46.243.88.174 ip4:46.243.88.175 ip4:46.243.88.176 ip4:46.243.88.177 ip4:31.47.251.17 a:mailcloud.dogado.de -all",
- "mx_asns":[
- 44444
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "b-e-l.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "b-e-l.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[
+ "website_mismatch"
]
},
"5621":{
@@ -30741,103 +109336,428 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX aclens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.aclens.ch CNAME → selector1-aclens-ch._domainkey.communeaclens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.aclens.ch CNAME → selector2-aclens-ch._domainkey.communeaclens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aclens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aclens.ch"
+ ],
+ "guess":[
+ "aclens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5622":{
"bfs":"5622",
"name":"Bremblens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bremblens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bremblens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bremblens.ch"
+ ],
+ "guess":[
+ "bremblens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5623":{
"bfs":"5623",
"name":"Buchillon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"buchillon.ch",
"mx":[
"buchillon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buchillon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "buchillon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "buchillon.ch"
+ ],
+ "guess":[
+ "buchillon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5624":{
"bfs":"5624",
"name":"Bussigny",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bussigny.ch",
"mx":[
"bussigny-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:212.71.120.144/28 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:212.71.120.144/28 ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bussigny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bussigny.ch CNAME → selector1-bussigny-ch._domainkey.bussignych.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bussigny.ch CNAME → selector2-bussigny-ch._domainkey.bussignych.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bussigny.ch"
+ ],
+ "guess":[
+ "bussigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5627":{
"bfs":"5627",
"name":"Chavannes-près-Renens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chavannes.ch",
"mx":[
"chavannes-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf-de.emailsignatures365.com ip4:212.71.120.144/28 ip4:185.25.192.92/32 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf-de.emailsignatures365.com ip4:212.71.120.144/28 ip4:185.25.192.92/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chavannes-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.chavannes.ch CNAME → selector1-chavannes-ch._domainkey.communechavannes.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.chavannes.ch CNAME → selector2-chavannes-ch._domainkey.communechavannes.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chavannes.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5628":{
"bfs":"5628",
- "name":"Chigny VD",
- "canton":"",
+ "name":"Chigny",
+ "canton":"Kanton Waadt",
"domain":"chigny.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.vtx.ch ip4:185.54.6.105 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.vtx.ch ip4:185.54.6.105 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:194.38.175.0/24 ip4:194.38.166.0/27 ip4:212.40.2.0/25 ip4:212.109.85.192/27 ip4:212.147.10.0/26 ip4:212.147.62.64/26 ip4:212.147.62.128/27 ip4:212.147.99.24/29 ip4:194.148.30.0/24 ip4:195.15.4.240/28 include:_spf-24x.romandie.hosting -all v=spf1 include:amazonses.com ?all v=spf1 a:catcher-241.romandie.hosting a:catcher-242.romandie.hosting ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chigny.ch",
+ "lemansites.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chigny.ch"
+ ],
+ "guess":[
+ "chigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5629":{
"bfs":"5629",
@@ -30849,31 +109769,115 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "clarmont.ch"
+ ],
+ "guess":[
+ "clarmont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5631":{
"bfs":"5631",
"name":"Denens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"denens.ch",
"mx":[
"denens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.mailhostbox.com include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.mailhostbox.com include:spf.protection.outlook.com -all v=spf1 redirect=_spf.mailhostbox.com v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:_netblocks1.mailhostbox.com include:_netblocks2.mailhostbox.com include:_netblocks3.mailhostbox.com include:all._spf.ds.network ~all v=spf1 ip4:162.210.70.34 ip4:162.210.70.51 ip4:162.210.70.52/30 ip4:162.210.70.56/30 ip4:162.222.225.9 ip4:162.222.225.10/31 ip4:162.222.225.12/30 ip4:162.222.225.16/28 ip4:162.222.225.32 ip4:162.222.225.40/31 ip4:162.222.225.58/31 ~all v=spf1 ip4:199.79.62.66 ip4:199.79.63.209 ip4:199.79.63.210/31 ip4:199.79.63.212/30 ip4:199.79.63.216/29 ip4:199.79.63.228 ip4:199.79.63.249 ip4:204.11.59.83 ip4:204.11.59.142 ip4:208.91.198.22 ip4:208.91.198.28 ip4:208.91.198.44 ip4:74.119.239.0/25 ~all v=spf1 ip4:208.91.198.48 ip4:208.91.198.156 ip4:208.91.198.232 ip4:208.91.199.196/31 ip4:208.91.199.206/31 ip4:208.91.199.208/29 ip4:208.91.199.216/30 ip4:208.91.199.220 ip4:208.91.199.224/31 ip4:208.91.199.228/31 ip4:208.91.199.247 ~all v=spf1 +ip4:203.170.80.0/21 +ip4:27.54.80.0/20 +ip4:27.123.24.0/21 +ip4:27.124.112.0/20 +ip4:103.250.212.0/22 +ip4:103.254.136.0/22 +ip4:103.226.220.0/22 +ip4:163.47.72.0/22 +ip4:43.243.116.0/22 +ip4:43.250.248.0/22 +ip4:176.74.24.0/21 +ip4:185.184.152.0/22 +ip4:103.67.234.0/23 +ip4:103.67.248.0/24 +ip4:103.68.164.0/22 +ip4:103.52.62.0/24 +ip4:103.20.200.0/22 +ip4:122.201.64.0/18 +ip4:103.9.100.0/22 +ip4:111.235.136.0/22 +ip4:119.31.232.0/21 +ip4:101.100.192.0/18 +ip4:103.245.92.0/22 +ip4:103.11.188.0/22 +ip4:43.245.108.0/22 +ip4:103.15.232.0/22 +ip4:43.245.96.0/22 +ip4:43.245.252.0/22 +ip4:103.24.4.0/24 +ip4:103.24.7.0/24 +ip4:103.76.36.0/24 +ip4:103.76.37.0/24 +ip4:116.0.16.0/21 +ip4:103.43.38.0/24 +ip4:27.111.81.0/24 +ip4:27.111.82.0/23 +ip4:27.111.84.0/24 +ip4:27.111.86.0/24 +ip4:27.111.88.0/23 +ip4:27.111.92.0/22 +ip4:116.0.16.0/21 +ip4:203.17.36.0/24 +ip4:203.26.41.0/24 +ip4:203.28.48.0/23 +ip4:203.28.50.0/24 +ip4:203.27.76.0/24 +ip4:103.28.48.0/22 +ip4:202.146.208.0/21 +ip4:103.29.84.0/23 +ip4:103.42.224.0/23 +ip4:114.142.160.0/22 +ip4:43.245.52.0/22 +ip4:119.47.112.0/22 +ip4:112.109.82.0/23 +ip4:119.47.122.0/23 +ip4:103.253.193.0/24 +ip4:112.109.74.0/24 +ip4:112.109.81.0/24 +ip4:112.109.84.0/24 +ip4:119.47.117.0/24 +ip4:119.47.118.0/24 +ip4:119.47.124.0/24 +ip4:202.174.80.0/24 +ip6:2402:af00::/32 +ip6:2001:df2:e400::/48 +ip6:2402:cb40::/32 +ip6:2a00:fd80::/32 +ip6:2407:4c00::/32 +ip6:2400:6d80::/32 +ip6:2404:8280::/32 +ip6:2405:df80::/32 +ip6:2400:8240::/32 +ip6:2405:3f00::/31 +ip6:2403:cb00::/32 +ip6:2407:2200::/32 +ip6:2406:adc0::/32 +ip6:2404:3800:1::/48 +ip6:2404:3800:f::/48 +ip6:2406:1200:1::/48 +ip6:2406:1200:f::/48 +ip4:27.54.84.71/28 +ip4:27.54.84.89/28 +ip4:27.54.82.0/24 +ip4:27.54.80.46/32 +ip4:27.54.80.47/32",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX denens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "denens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "denens.ch"
+ ],
+ "guess":[
+ "denens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5632":{
"bfs":"5632",
@@ -30885,18 +109889,88 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.customer.swiss-egov.cloud -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.customer.swiss-egov.cloud -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX denges-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "denges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "denges.ch"
+ ],
+ "guess":[
+ "denges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5633":{
"bfs":"5633",
"name":"Echandens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"echandens.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -30904,73 +109978,334 @@
"mx3.azinformatique.ch",
"mx4.azinformatique.ch"
],
- "spf":"v=spf1 mx a ip4:185.98.28.16 -all",
- "provider":"independent",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mails.echandens.ch"
- }
+ "spf":"v=spf1 mx a ip4:185.98.28.16 include:spf.eadmin-solutions.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "echandens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "echandens.ch"
+ ],
+ "guess":[
+ "echandens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5634":{
"bfs":"5634",
"name":"Echichens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"echichens.ch",
"mx":[
"echichens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX echichens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "echichens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "echichens.ch"
+ ],
+ "guess":[
+ "echichens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5635":{
"bfs":"5635",
- "name":"Ecublens",
- "canton":"",
+ "name":"Ecublens (VD)",
+ "canton":"Kanton Waadt",
"domain":"ecublens.ch",
"mx":[
"ecublens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:62.2.153.110 include:spf.ganesh-hosting.ch include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mailjet.com include:spf-eu.emailsignatures365.com a:c.spf.service-now.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:62.2.153.110 include:spf.ganesh-hosting.ch include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mailjet.com include:spf-eu.emailsignatures365.com a:c.spf.service-now.com -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 ip4:13.74.137.176 ip4:52.138.216.130 ip4:40.114.221.220 ip4:40.113.3.253 ip4:23.100.56.64 ip4:137.116.240.241 ip4:13.74.144.83 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ecublens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ecublens.ch CNAME → selector1-ecublens-ch._domainkey.communeecublens.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ecublens.ch CNAME → selector2-ecublens-ch._domainkey.communeecublens.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ecublens.ch"
+ ],
+ "guess":[
+ "ecublens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5636":{
"bfs":"5636",
"name":"Etoy",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"etoy.ch",
"mx":[
"etoy-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.14.144.46 include:spf.protection.outlook.com include:_spf.bluewin.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.14.144.46 include:spf.protection.outlook.com include:_spf.bluewin.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.247.246.0/24 ip4:138.188.174.0/24 ip4:138.188.175.0/24 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX etoy-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.etoy.ch CNAME → selector1-etoy-ch._domainkey.etoy.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.etoy.ch CNAME → selector2-etoy-ch._domainkey.etoy.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "etoy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "etoy.ch"
+ ],
+ "guess":[
+ "etoy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5637":{
"bfs":"5637",
"name":"Lavigny",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lavigny.ch",
"mx":[
"alt1.aspmx.l.google.com",
@@ -30981,46 +110316,257 @@
],
"spf":"v=spf1 include:_spf.google.com ~all",
"provider":"google",
- "spf_resolved":"v=spf1 include:_spf.google.com ~all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all",
- "mx_asns":[
- 15169
- ]
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt1.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt2.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt3.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt4.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lavigny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lavigny.ch"
+ ],
+ "guess":[
+ "lavigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5638":{
"bfs":"5638",
"name":"Lonay",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lonay.ch",
"mx":[
"lonay-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lonay-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lonay.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lonay.ch"
+ ],
+ "guess":[
+ "lonay.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5639":{
"bfs":"5639",
- "name":"Lully VD",
- "canton":"",
+ "name":"Lully (VD)",
+ "canton":"Kanton Waadt",
"domain":"lully.ch",
"mx":[
"lully-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lully-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lully.ch"
+ ],
+ "guess":[
+ "lully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5640":{
"bfs":"5640",
@@ -31032,32 +110578,127 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lussysurmorges-ch01cc.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lussy-sur-morges.ch"
+ ],
+ "guess":[
+ "lussy-sur-morges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5642":{
"bfs":"5642",
"name":"Morges",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"morges.ch",
"mx":[
"mx1.hc1035-98.eu.iphmx.com",
"mx2.hc1035-98.eu.iphmx.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com include:spf1.ne.ch ip4:159.100.243.117 ip4:185.19.28.207 exists:%{i}.spf.hc1035-98.eu.iphmx.com ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com include:spf1.ne.ch ip4:159.100.243.117 ip4:185.19.28.207 exists:%{i}.spf.hc1035-98.eu.iphmx.com ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:148.196.30.0/24 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 30238
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.morges.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":70.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "gateway":"cisco",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "morges.ch"
+ ],
+ "guess":[
+ "morges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5643":{
"bfs":"5643",
@@ -31069,13 +110710,53 @@
],
"spf":"v=spf1 ip4:194.209.244.213 ip4:37.0.59.14 include:spf.infomaniak.ch include:_spf.i-web.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 ip4:194.209.244.213 ip4:37.0.59.14 include:spf.infomaniak.ch include:_spf.i-web.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "preverenges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "preverenges.ch"
+ ],
+ "guess":[
+ "preverenges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5645":{
"bfs":"5645",
@@ -31087,37 +110768,185 @@
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.infomaniak.ch include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.infomaniak.ch include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.asp.ruf.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX romanelsurmorges-ch01ii.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.romanel-sur-morges.ch CNAME → selector1-romanelsurmorges-ch01ii._domainkey.romanelsurmorgesch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.romanel-sur-morges.ch CNAME → selector2-romanelsurmorges-ch01ii._domainkey.romanelsurmorgesch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "romanel-sur-morges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "romanel-sur-morges.ch"
+ ],
+ "guess":[
+ "romanel-sur-morges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5646":{
"bfs":"5646",
"name":"Saint-Prex",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"saint-prex.ch",
"mx":[
"saintprex-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX saintprex-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "taniaemery.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saint-prex.ch"
+ ],
+ "guess":[
+ "saint-prex.ch",
+ "saintprex.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"5648":{
"bfs":"5648",
- "name":"Saint-Sulpice",
- "canton":"",
+ "name":"Saint-Sulpice (VD)",
+ "canton":"Kanton Waadt",
"domain":"st-sulpice.ch",
"mx":[
"mail.rcv.ch",
@@ -31126,32 +110955,155 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.rcv.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.rcv.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all",
- "mx_asns":[
- 8075,
- 15675
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stsulpice-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "st-sulpice.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "st-sulpice.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5649":{
"bfs":"5649",
"name":"Tolochenaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"tolochenaz.ch",
"mx":[
"tolochenaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tolochenaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "tolochenaz.ch"
+ ],
+ "guess":[
+ "tolochenaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5650":{
"bfs":"5650",
@@ -31164,14 +111116,95 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075,
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vauxsurmorges-ch01bb.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vaux-sur-morges.ch CNAME → selector1-vauxsurmorges-ch01bb._domainkey.vauxsurmorges.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vaux-sur-morges.ch CNAME → selector2-vauxsurmorges-ch01bb._domainkey.vauxsurmorges.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vaux-sur-morges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vaux-sur-morges.ch"
+ ],
+ "guess":[
+ "vaux-sur-morges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5651":{
"bfs":"5651",
@@ -31183,13 +111216,84 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villarssaintecroix-ch01i1e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.villars-sainte-croix.ch CNAME → selector2-villarssaintecroix-ch01i1e._domainkey.communevillarssaintecroix.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "polouest.ch",
+ "villars-sainte-croix.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "villars-sainte-croix.ch"
+ ],
+ "guess":[
+ "villars-sainte-croix.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5652":{
"bfs":"5652",
@@ -31201,158 +111305,562 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villarssousyens-ch01i1b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "villars-sous-yens.ch"
+ ],
+ "guess":[
+ "villars-sous-yens.ch",
+ "villarssousyens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5653":{
"bfs":"5653",
"name":"Vufflens-le-Château",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vufflens-le-chateau.ch",
"mx":[
"vufflenslechateau-ch02j.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vufflenslechateau-ch02j.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pro-xy.ch",
+ "vufflens-le-chateau.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vufflens-le-chateau.ch"
+ ],
+ "guess":[
+ "vufflens-le-chateau.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5654":{
"bfs":"5654",
"name":"Vullierens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vullierens.ch",
"mx":[
"vullierens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vullierens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vullierens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vullierens.ch"
+ ],
+ "guess":[
+ "vullierens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5655":{
"bfs":"5655",
"name":"Yens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"yens.ch",
"mx":[
"yens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 mx a -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX yens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "yens.ch"
+ ],
+ "guess":[
+ "yens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5656":{
"bfs":"5656",
"name":"Hautemorges",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"hautemorges.ch",
"mx":[
"hautemorges-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:84.253.10.182 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:84.253.10.182 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hautemorges-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.hautemorges.ch CNAME → selector1-hautemorges-ch._domainkey.communehautemorges.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.hautemorges.ch CNAME → selector2-hautemorges-ch._domainkey.communehautemorges.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hautemorges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hautemorges.ch"
+ ],
+ "guess":[
+ "hautemorges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5661":{
"bfs":"5661",
"name":"Boulens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"boulens.ch",
"mx":[
"mail.boulens.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "boulens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boulens.ch"
+ ],
+ "guess":[
+ "boulens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5663":{
"bfs":"5663",
"name":"Bussy-sur-Moudon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bussy-sur-moudon.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bussy-sur-moudon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bussy-sur-moudon.ch"
+ ],
+ "guess":[
+ "bussy-sur-moudon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5665":{
"bfs":"5665",
"name":"Chavannes-sur-Moudon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chavannes-sur-moudon.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.trisinformatique.com include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.trisinformatique.com include:spf.infomaniak.ch -all v=spf1 ip4:185.181.160.24 ip4:46.231.205.91 ip4:141.101.62.16 ip4:80.80.228.56 ip4:185.200.221.130 ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chavannes-sur-moudon.ch"
+ ],
+ "guess":[
+ "chavannes-sur-moudon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5669":{
"bfs":"5669",
"name":"Curtilles",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"curtilles.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "curtilles.ch"
+ ],
+ "guess":[
+ "curtilles.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5671":{
"bfs":"5671",
- "name":"Dompierre",
+ "name":"Dompierre (VD)",
"canton":"Kanton Waadt",
"domain":"dompierre-vd.ch",
"mx":[
@@ -31360,13 +111868,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dompierrevd-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dompierre-vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dompierre-vd.ch"
+ ],
+ "guess":[
+ "dompierre.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5673":{
"bfs":"5673",
@@ -31378,79 +111950,304 @@
],
"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX hermenches-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "hermenches.ch"
+ ],
+ "guess":[
+ "hermenches.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5674":{
"bfs":"5674",
"name":"Lovatens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lovatens.ch",
"mx":[
"srv.lovatens.ch"
],
"spf":"v=spf1 a mx include:spf.swizzonic-mail.ch include:_spf.blk.ymc.swiss include:_spf.i-web.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:spf.swizzonic-mail.ch include:_spf.blk.ymc.swiss include:_spf.i-web.ch ~all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 199229
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "lovatens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lovatens.ch"
+ ],
+ "guess":[
+ "lovatens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5675":{
"bfs":"5675",
"name":"Lucens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lucens.ch",
"mx":[
"lucens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.111 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.111 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lucens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lucens.ch"
+ ],
+ "guess":[
+ "lucens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5678":{
"bfs":"5678",
"name":"Moudon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"moudon.ch",
"mx":[
"moudon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf1.net4all.ch ip4:212.71.120.144/28 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf1.net4all.ch ip4:212.71.120.144/28 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:80.80.228.110 ip4:80.80.228.43 ip4:80.80.228.47 ip4:80.80.228.81 ip4:80.80.228.82 ip4:80.80.228.83 ip4:80.80.228.58 ip4:80.80.228.17 ip4:80.80.228.52 ip4:80.80.228.99 ip4:80.80.228.112 ip4:80.80.228.114 ip4:80.80.228.56 ip4:141.101.62.117 ip4:141.101.62.243 ip4:80.80.228.21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX moudon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "moudon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moudon.ch"
+ ],
+ "guess":[
+ "moudon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5680":{
"bfs":"5680",
"name":"Ogens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ogens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ogens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ogens.ch"
+ ],
+ "guess":[
+ "ogens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5683":{
"bfs":"5683",
@@ -31468,10 +112265,119 @@
],
"spf":"v=spf1 include:_spf.google.com ~all",
"provider":"google",
- "spf_resolved":"v=spf1 include:_spf.google.com ~all v=spf1 ip4:74.125.0.0/16 ip4:209.85.128.0/17 ip6:2001:4860:4864::/56 ip6:2404:6800:4000::/36 ip6:2607:f8b0:4000::/36 ip6:2800:3f0:4000::/36 ip6:2a00:1450:4000::/36 ip6:2c0f:fb50:4000::/36 ~all",
- "mx_asns":[
- 15169
- ]
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt1.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX alt2.aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx.l.google.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx2.googlemail.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx3.googlemail.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx4.googlemail.com matches google"
+ },
+ {
+ "kind":"mx",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"MX aspmx5.googlemail.com matches google"
+ },
+ {
+ "kind":"spf",
+ "provider":"google",
+ "weight":0.2,
+ "detail":"SPF include:_spf.google.com matches google"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ },
+ {
+ "kind":"asn",
+ "provider":"google",
+ "weight":0.03,
+ "detail":"ASN 15169 matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "prevonloup.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "prevonloup.ch"
+ ],
+ "guess":[
+ "prevonloup.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5684":{
"bfs":"5684",
@@ -31483,13 +112389,41 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rossenges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rossenges.ch"
+ ],
+ "guess":[
+ "rossenges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5688":{
"bfs":"5688",
@@ -31501,13 +112435,33 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "syens.ch"
+ ],
+ "guess":[
+ "syens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5690":{
"bfs":"5690",
@@ -31519,10 +112473,27 @@
],
"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:fwdsc.swisscenter.com -all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all",
- "mx_asns":[
- 49457
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "villars-le-comte.ch"
+ ],
+ "guess":[
+ "villars-le-comte.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5692":{
"bfs":"5692",
@@ -31534,36 +112505,176 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vucherens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vucherens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vucherens.ch"
+ ],
+ "guess":[
+ "vucherens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5693":{
"bfs":"5693",
"name":"Montanaire",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"montanaire.ch",
"mx":[
"montanaire-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com include:mailgun.org -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com include:mailgun.org -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 mx a -all v=spf1 include:_spf.mailgun.org include:_spf.eu.mailgun.org -all v=spf1 include:amazonses.com ?all v=spf1 include:_spf1.mailgun.org include:_spf2.mailgun.org ~all v=spf1 ip4:141.193.32.0/23 ip4:159.135.140.80/29 ip4:159.135.132.128/25 ip4:161.38.204.0/22 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:143.55.236.0/22 ip4:198.244.60.0/22 ip4:204.220.160.0/21 ~all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all v=spf1 ip4:209.61.151.0/24 ip4:166.78.68.0/22 ip4:198.61.254.0/23 ip4:192.237.158.0/23 ip4:23.253.182.0/23 ip4:104.130.96.0/28 ip4:146.20.113.0/24 ip4:146.20.191.0/24 ip4:159.135.224.0/20 ip4:69.72.32.0/20 ~all v=spf1 ip4:104.130.122.0/23 ip4:146.20.112.0/26 ip4:161.38.192.0/20 ip4:143.55.224.0/21 ip4:143.55.232.0/22 ip4:159.112.240.0/20 ip4:198.244.48.0/20 ip4:204.220.168.0/21 ip4:204.220.176.0/20 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX montanaire-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montanaire.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montanaire.ch"
+ ],
+ "guess":[
+ "montanaire.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5701":{
"bfs":"5701",
"name":"Arnex-sur-Nyon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"arnex-sur-nyon.ch",
"mx":[
"mx4.safemail.ch",
@@ -31571,100 +112682,438 @@
],
"spf":"v=spf1 +a +mx +ip4:195.70.7.126 include:dfinet.ch +ip4:195.70.7.126 +ip4:195.70.12.114 +include:smtp.dfinet.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 +a +mx +ip4:195.70.7.126 include:dfinet.ch +ip4:195.70.7.126 +ip4:195.70.12.114 +include:smtp.dfinet.ch ~all v=spf1 mx a include:smtp.dfinet.ch ~all v=spf1 ip4:195.70.7.112/29 ip4:195.70.10.88 ip4:195.70.10.87 ip4:195.70.10.89 ip4:195.70.10.111 ip4:195.70.9.21 ip4:195.70.2.32/28 ip4:195.70.7.120/29 ip4:195.70.3.55 ~all",
- "mx_asns":[
- 12333
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "arnex-sur-nyon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arnex-sur-nyon.ch"
+ ],
+ "guess":[
+ "arnex-sur-nyon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5702":{
"bfs":"5702",
"name":"Arzier-Le Muids",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"arzier.ch",
"mx":[
"arzier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX arzier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "arzier.ch",
+ "vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "arzier.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5703":{
"bfs":"5703",
"name":"Bassins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bassins.ch",
"mx":[
"bassins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bassins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bassins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bassins.ch"
+ ],
+ "guess":[
+ "bassins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5704":{
"bfs":"5704",
"name":"Begnins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"begnins.ch",
"mx":[
"begnins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.129.53.73 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.129.53.73 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX begnins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.begnins.ch CNAME → selector1-begnins-ch._domainkey.communebegnins.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.begnins.ch CNAME → selector2-begnins-ch._domainkey.communebegnins.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "begnins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "begnins.ch"
+ ],
+ "guess":[
+ "begnins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5705":{
"bfs":"5705",
"name":"Bogis-Bossey",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bogis-bossey.ch",
"mx":[
"bogisbossey-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bogisbossey-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bogis-bossey.ch",
+ "vd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bogis-bossey.ch"
+ ],
+ "guess":[
+ "bogis-bossey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5706":{
"bfs":"5706",
"name":"Borex",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"borex.ch",
"mx":[
"borex-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX borex-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.borex.ch CNAME → selector1-borex-ch._domainkey.communeborex.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.borex.ch CNAME → selector2-borex-ch._domainkey.communeborex.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "borex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "borex.ch"
+ ],
+ "guess":[
+ "borex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5707":{
"bfs":"5707",
@@ -31676,154 +113125,744 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chavannesdebogis-ch02cb.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.chavannes-de-bogis.ch CNAME → selector1-chavannesdebogis-ch02cb._domainkey.communecdb.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.chavannes-de-bogis.ch CNAME → selector2-chavannesdebogis-ch02cb._domainkey.communecdb.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chavannes-de-bogis.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chavannes-de-bogis.ch"
+ ],
+ "guess":[
+ "chavannes-de-bogis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5708":{
"bfs":"5708",
"name":"Chavannes-des-Bois",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chavannes-des-bois.ch",
"mx":[
"chavannesdesbois-ch02cc.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chavannesdesbois-ch02cc.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chavannes-des-bois.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chavannes-des-bois.ch"
+ ],
+ "guess":[
+ "chavannes-des-bois.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5709":{
"bfs":"5709",
"name":"Chéserex",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cheserex.ch",
"mx":[
"cheserex-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cheserex-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cheserex.ch CNAME → selector1-cheserex-ch._domainkey.communecheserex.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cheserex.ch CNAME → selector2-cheserex-ch._domainkey.communecheserex.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cheserex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cheserex.ch"
+ ],
+ "guess":[
+ "cheserex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5710":{
"bfs":"5710",
"name":"Coinsins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"coinsins.ch",
"mx":[
"coinsins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX coinsins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "coinsins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "coinsins.ch"
+ ],
+ "guess":[
+ "coinsins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5711":{
"bfs":"5711",
"name":"Commugny",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"commugny.ch",
"mx":[
"commugny-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:159.100.243.181 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:159.100.243.181 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX commugny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "commugny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "commugny.ch"
+ ],
+ "guess":[
+ "commugny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5712":{
"bfs":"5712",
"name":"Coppet",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"coppet.ch",
"mx":[
"coppet-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX coppet-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "coppet.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "coppet.ch"
+ ],
+ "guess":[
+ "coppet.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5713":{
"bfs":"5713",
- "name":"Crans",
- "canton":"",
- "domain":"crans.ch",
+ "name":"Crans (VD)",
+ "canton":"Kanton Waadt",
+ "domain":"cransvd.ch",
"mx":[
- "mta-gw.infomaniak.ch"
+ "cransvd-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.infomaniak.ch -all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cransvd-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "cransvd.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5714":{
"bfs":"5714",
"name":"Crassier",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"crassier.ch",
"mx":[
"crassier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.infomaniak.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.infomaniak.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX crassier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.crassier.ch CNAME → selector1-crassier-ch._domainkey.communecrassier.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.crassier.ch CNAME → selector2-crassier-ch._domainkey.communecrassier.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "crassier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "crassier.ch"
+ ],
+ "guess":[
+ "crassier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5715":{
"bfs":"5715",
"name":"Duillier",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"duillier.ch",
"mx":[
"duillier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX duillier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "duillier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "duillier.ch"
+ ],
+ "guess":[
+ "duillier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5716":{
"bfs":"5716",
@@ -31835,13 +113874,77 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eysins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eysins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eysins.ch"
+ ],
+ "guess":[
+ "eysins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5717":{
"bfs":"5717",
@@ -31853,86 +113956,421 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX founex-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "founex.ch"
+ ],
+ "guess":[
+ "founex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5718":{
"bfs":"5718",
"name":"Genolier",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"genolier.ch",
"mx":[
"genolier-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "spf":"v=spf1 include:spf.protection.outlook.com include:spf.eadmin-solutions.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX genolier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "genolier.ch"
+ ],
+ "guess":[
+ "genolier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5719":{
"bfs":"5719",
"name":"Gingins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"gingins.ch",
"mx":[
"gingins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 ip4:185.54.6.105 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 ip4:185.54.6.105 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.o-i.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gingins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gingins.ch"
+ ],
+ "guess":[
+ "gingins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5720":{
"bfs":"5720",
"name":"Givrins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"givrins.ch",
"mx":[
"givrins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:146.4.37.74 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:146.4.37.74 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX givrins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "givrins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "givrins.ch"
+ ],
+ "guess":[
+ "givrins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5721":{
"bfs":"5721",
"name":"Gland",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"gland.ch",
"mx":[
"gland-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:37.0.35.222 ip4:94.103.98.202 include:spf.protection.outlook.com include:spf.infomaniak.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:37.0.35.222 ip4:94.103.98.202 include:spf.protection.outlook.com include:spf.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gland-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gland.ch CNAME → selector1-gland-ch._domainkey.municipalitedegland.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gland.ch CNAME → selector2-gland-ch._domainkey.municipalitedegland.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gland.ch"
+ ],
+ "guess":[
+ "gland.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5722":{
"bfs":"5722",
@@ -31944,17 +114382,93 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.grens.ch CNAME → selector1-grens-ch._domainkey.grensch.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.grens.ch CNAME → selector2-grens-ch._domainkey.grensch.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grens.ch"
+ ],
+ "guess":[
+ "grens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5723":{
"bfs":"5723",
- "name":"Mies VD",
+ "name":"Mies",
"canton":"Kanton Waadt",
"domain":"mies.ch",
"mx":[
@@ -31962,38 +114476,152 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mies-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mies.ch"
+ ],
+ "guess":[
+ "mies.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5724":{
"bfs":"5724",
"name":"Nyon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"nyon.ch",
"mx":[
"mail.rcv.ch",
"mail2.rcv.ch"
],
"spf":"v=spf1 MX a:iomedia-smtp.infomaniak.ch include:spf.infomaniak.ch include:spf.rcv.ch include:spf1.ne.ch include:spf.protection.outlook.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 MX a:iomedia-smtp.infomaniak.ch include:spf.infomaniak.ch include:spf.rcv.ch include:spf1.ne.ch include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 15675
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.nyon.ch",
- "autodiscover_srv":"owa.nyon.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "nyon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "nyon.ch"
+ ],
+ "guess":[
+ "nyon.ch",
+ "stadt-nyon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5725":{
"bfs":"5725",
"name":"Prangins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"prangins.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -32002,33 +114630,190 @@
],
"spf":"v=spf1 ip4:109.164.235.43 ip4:194.209.244.213 ip4:185.48.146.91 ip4:185.54.6.105 a:dispatch-eu.ppe-hosted.com include:spf.protection.outlook.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:109.164.235.43 ip4:194.209.244.213 ip4:185.48.146.91 ip4:185.54.6.105 a:dispatch-eu.ppe-hosted.com include:spf.protection.outlook.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"proofpoint",
- "mx_asns":[
- 8075,
- 52129
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX prangins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.prangins.ch CNAME → selector1-prangins-ch._domainkey.infologdata.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.prangins.ch CNAME → selector2-prangins-ch._domainkey.infologdata.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[
+ "prangins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "prangins.ch"
+ ],
+ "guess":[
+ "prangins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5726":{
"bfs":"5726",
"name":"La Rippe",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"larippe.ch",
"mx":[
"larippe-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX larippe-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.larippe.ch CNAME → selector1-larippe-ch._domainkey.communelarippe.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.larippe.ch CNAME → selector2-larippe-ch._domainkey.communelarippe.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "larippe.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "larippe.ch"
+ ],
+ "guess":[
+ "larippe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5727":{
"bfs":"5727",
@@ -32040,13 +114825,82 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stcergue-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.st-cergue.ch CNAME → selector1-stcergue-ch0e._domainkey.communestcergue.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.st-cergue.ch CNAME → selector2-stcergue-ch0e._domainkey.communestcergue.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "st-cergue.ch"
+ ],
+ "guess":[
+ "saint-cergue.ch",
+ "saintcergue.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5728":{
"bfs":"5728",
@@ -32058,14 +114912,24 @@
],
"spf":"v=spf1 include:spf.webapps.net ip4:193.34.137.65 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.webapps.net ip4:193.34.137.65 ~all v=spf1 a include:spf1.webapps.net include:spf2.webapps.net ~all v=spf1 ip4:81.88.48.32/27 ip4:81.88.50.224/27 ip4:81.88.54.64/27 ip4:81.88.55.96/27 ip4:81.88.56.0/27 ip4:81.88.62.160/27 ip4:81.88.63.128/27 ip4:195.7.249.16/29 include:dominiando.email ~all v=spf1 ip4:195.110.101.32/27 ip4:195.110.122.160/27 ip4:195.110.123.0/27 ip4:185.2.4.0/22 ip4:81.88.49.224/27 ip4:195.7.249.29 ip4:81.88.52.0/23 ip4:185.110.66.0/24 ip4:213.158.94.0/23 ip4:81.88.54.154/32 ip4:3.73.27.108 ip4:3.125.172.46 ~all v=spf1 mx ip4:81.88.54.130 ip4:81.88.54.152/30 ~all",
- "mx_asns":[
- 39729
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "signy-avenex.ch"
+ ],
+ "guess":[
+ "signy-avenex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5729":{
"bfs":"5729",
- "name":"Tannay VD",
+ "name":"Tannay",
"canton":"Kanton Waadt",
"domain":"tannay.ch",
"mx":[
@@ -32073,54 +114937,283 @@
],
"spf":"v=spf1 include:spf.cybercloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.cybercloud.ch include:spf.protection.outlook.com -all v=spf1 mx ip4:81.23.73.246 ip4:81.23.73.247 ip4:81.23.75.41 ip4:81.23.75.42 a:EXCH14011.cybercloud.ch a:EXCH14012.cybercloud.ch a:EXCH14021.cybercloud.ch a:EXCH14022.cybercloud.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX tannay-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "tannay.ch"
+ ],
+ "guess":[
+ "tannay.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5730":{
"bfs":"5730",
"name":"Trélex",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"trelex.ch",
"mx":[
"trelex-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:83.172.203.166 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:185.54.6.105 ip4:193.34.137.65 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:83.172.203.166 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:185.54.6.105 ip4:193.34.137.65 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX trelex-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.trelex.ch CNAME → selector1-trelex-ch._domainkey.communetrelex.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.trelex.ch CNAME → selector2-trelex-ch._domainkey.communetrelex.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "trelex.ch"
+ ],
+ "guess":[
+ "trelex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5731":{
"bfs":"5731",
"name":"Le Vaud",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"levaud.ch",
"mx":[
"levaud-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com include:amazonses.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com include:amazonses.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"remote.levaud.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX levaud-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"SPF include:amazonses.com matches aws"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.levaud.ch CNAME → selector1-levaud-ch._domainkey.levaud.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.levaud.ch CNAME → selector2-levaud-ch._domainkey.levaud.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "levaud.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "levaud.ch"
+ ],
+ "guess":[
+ "levaud.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5732":{
"bfs":"5732",
- "name":"Vich VD",
+ "name":"Vich",
"canton":"Kanton Waadt",
"domain":"vich.ch",
"mx":[
@@ -32128,17 +115221,75 @@
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vich-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vich.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vich.ch"
+ ],
+ "guess":[
+ "vich.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5741":{
"bfs":"5741",
- "name":"L’Abergement VD",
+ "name":"L'Abergement",
"canton":"Kanton Waadt",
"domain":"labergement.ch",
"mx":[
@@ -32146,177 +115297,643 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX labergement-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "labergement.ch"
+ ],
+ "guess":[
+ "labergement.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5742":{
"bfs":"5742",
"name":"Agiez",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"agiez.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "agiez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "agiez.ch"
+ ],
+ "guess":[
+ "agiez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5743":{
"bfs":"5743",
"name":"Arnex-sur-Orbe",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"arnex-sur-orbe.ch",
"mx":[
- "mta-gw.infomaniak.ch"
- ],
- "spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "arnexsurorbe-ch01cc.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com include:_spf.webforge.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX arnexsurorbe-ch01cc.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "arnex-sur-orbe.ch"
+ ],
+ "guess":[
+ "arnex-sur-orbe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5744":{
"bfs":"5744",
"name":"Ballaigues",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ballaigues.ch",
"mx":[
"ballaigues-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ballaigues-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.ballaigues.ch CNAME → selector1-ballaigues-ch._domainkey.communeballaigues.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.ballaigues.ch CNAME → selector2-ballaigues-ch._domainkey.communeballaigues.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ballaigues.ch"
+ ],
+ "guess":[
+ "ballaigues.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5745":{
"bfs":"5745",
"name":"Baulmes",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"baulmes.ch",
"mx":[
"mta.witecom.ch"
],
"spf":"v=spf1 mx include:spf.witecom.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.witecom.ch -all v=spf1 ip4:185.43.244.0/22 ip6:2a05:4880::/29 -all",
- "mx_asns":[
- 199811
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.baulmes.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "baulmes.ch"
+ ],
+ "guess":[
+ "baulmes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5746":{
"bfs":"5746",
"name":"Bavois",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bavois.ch",
"mx":[
"bavois-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bavois-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bavois.ch"
+ ],
+ "guess":[
+ "bavois.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5747":{
"bfs":"5747",
"name":"Bofflens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bofflens.ch",
"mx":[
"bofflens-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bofflens-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bofflens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bofflens.ch"
+ ],
+ "guess":[
+ "bofflens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5748":{
"bfs":"5748",
"name":"Bretonnières",
- "canton":"",
- "domain":"1329.ch",
+ "canton":"Kanton Waadt",
+ "domain":"bretonnieres.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch v=spf1 include:spf.mail.hostpoint.ch ?all v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "mta-gw.infomaniak.ch"
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "spf":"v=spf1 include:spf.infomaniak.ch ?all",
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bretonnieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5749":{
"bfs":"5749",
"name":"Chavornay",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chavornay.ch",
"mx":[
"chavornay-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:194.153.189.8 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.ne.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.153.189.8 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.ne.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:148.196.30.0/24 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chavornay-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.chavornay.ch CNAME → selector1-chavornay-ch._domainkey.chavornay.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.chavornay.ch CNAME → selector2-chavornay-ch._domainkey.chavornay.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chavornay.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chavornay.ch"
+ ],
+ "guess":[
+ "chavornay.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5750":{
"bfs":"5750",
"name":"Les Clées",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lesclees.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lesclees.ch"
+ ],
+ "guess":[
+ "lesclees.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5752":{
"bfs":"5752",
- "name":"Croy VD",
+ "name":"Croy",
"canton":"Kanton Waadt",
"domain":"croy.ch",
"mx":[
@@ -32324,13 +115941,36 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "croy.ch",
+ "montee-nozon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "croy.ch"
+ ],
+ "guess":[
+ "croy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5754":{
"bfs":"5754",
@@ -32342,83 +115982,198 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.eadmin-solutions.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.eadmin-solutions.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "juriens.ch"
+ ],
+ "guess":[
+ "juriens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5755":{
"bfs":"5755",
"name":"Lignerolle",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lignerolle.ch",
"mx":[
"mx1.swisscenter.com"
],
"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:fwdsc.swisscenter.com -all v=spf1 ip4:94.103.96.0/24 ip6:2a00:a500:0:96::/64 ip4:213.32.20.157/32 -all",
- "mx_asns":[
- 49457
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "override":[
+ "lignerolle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5756":{
"bfs":"5756",
"name":"Montcherand",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"montcherand.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montcherand.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montcherand.ch"
+ ],
+ "guess":[
+ "montcherand.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5757":{
"bfs":"5757",
"name":"Orbe",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"orbe.ch",
"mx":[
"orbe-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +include:relay.mailchannels.net +include:spf.ganesh-hosting.ch +include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +include:relay.mailchannels.net +include:spf.ganesh-hosting.ch +include:spf.protection.outlook.com -all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":89.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX orbe-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "orbe.ch"
+ ],
+ "guess":[
+ "orbe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5758":{
"bfs":"5758",
"name":"La Praz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lapraz.ch",
"mx":[
"mail.horus.ch"
],
"spf":"v=spf1 include:spf.horus.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.horus.ch ~all v=spf1 ip4:194.182.164.99 ip4:185.19.29.61 ip4:194.182.167.72 ip4:159.100.254.204 ip4:159.100.247.17 ip4:81.6.33.6 ip6:2a04:c44:e00:3eb:482:6cff:fe00:d47 ip6:2a04:c44:e00:3eb:4e4:eff:fe00:862 ip6:2a04:c44:e00:3eb:4da:96ff:fe00:724 ip6:2a04:c44:e00:3eb:475:38ff:fe00:102c ip6:2a04:c43:e00:3eb:47f:feff:fe00:17a ~all",
- "mx_asns":[
- 61098
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "lapraz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lapraz.ch"
+ ],
+ "guess":[
+ "lapraz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5759":{
"bfs":"5759",
- "name":"Premier VD",
+ "name":"Premier",
"canton":"Kanton Waadt",
"domain":"premier.ch",
"mx":[
@@ -32426,175 +116181,719 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "premier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "premier.ch"
+ ],
+ "guess":[
+ "premier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5760":{
"bfs":"5760",
"name":"Rances",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rances.ch",
"mx":[
"rances-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rances-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rances.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rances.ch"
+ ],
+ "guess":[
+ "rances.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5761":{
"bfs":"5761",
"name":"Romainmôtier-Envy",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"romainmotier.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "romainmotier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "romainmotier.ch"
+ ],
+ "guess":[
+ "romainmotier-envy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5762":{
"bfs":"5762",
"name":"Sergey",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"sergey.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sergey.ch"
+ ],
+ "guess":[
+ "sergey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5763":{
"bfs":"5763",
"name":"Valeyres-sous-Rances",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"valeyres-sous-rances.ch",
"mx":[
"valeyressousrances-ch02bc.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX valeyressousrances-ch02bc.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "valeyres-sous-rances.ch"
+ ],
+ "guess":[
+ "valeyres-sous-rances.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5764":{
"bfs":"5764",
"name":"Vallorbe",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vallorbe.ch",
"mx":[
"vallorbe-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vallorbe-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vallorbe.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vallorbe.ch"
+ ],
+ "guess":[
+ "vallorbe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5765":{
"bfs":"5765",
"name":"Vaulion",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vaulion.ch",
"mx":[
"vaulion-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vaulion-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vaulion.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vaulion.ch"
+ ],
+ "guess":[
+ "vaulion.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5766":{
"bfs":"5766",
"name":"Vuiteboeuf",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vuiteboeuf.ch",
"mx":[
"vuiteboeuf-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vuiteboeuf-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vuiteboeuf.ch CNAME → selector1-vuiteboeuf-ch._domainkey.communevuiteboeuf.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vuiteboeuf.ch CNAME → selector2-vuiteboeuf-ch._domainkey.communevuiteboeuf.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vuiteboeuf.ch"
+ ],
+ "guess":[
+ "vuiteboeuf.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5785":{
"bfs":"5785",
"name":"Corcelles-le-Jorat",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"corcelles-le-jorat.ch",
"mx":[
"corcelleslejorat-ch02cb.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.110.152.0/22 ~all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corcelleslejorat-ch02cb.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corcelles-le-jorat.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corcelles-le-jorat.ch"
+ ],
+ "guess":[
+ "corcelles-le-jorat.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5790":{
"bfs":"5790",
"name":"Maracon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"maracon.ch",
"mx":[
"maracon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX maracon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "maracon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "maracon.ch"
+ ],
+ "guess":[
+ "maracon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5792":{
"bfs":"5792",
@@ -32606,31 +116905,59 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ip4:185.54.6.105 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ip4:185.54.6.105 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "montpreveyres.ch"
+ ],
+ "guess":[
+ "montpreveyres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5798":{
"bfs":"5798",
"name":"Ropraz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ropraz.ch",
"mx":[
"mail1.copperfasten.ch",
"mail2.copperfasten.ch"
],
- "spf":"v=spf1 +a +mx -all",
- "provider":"independent",
- "mx_asns":[
- 43800
- ],
- "autodiscover":{
- "autodiscover_srv":"pl4.ganesh-hosting.ch"
- }
+ "spf":"v=spf1 include:spf.eadmin-solutions.ch +a +mx -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ropraz.ch"
+ ],
+ "guess":[
+ "ropraz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5799":{
"bfs":"5799",
@@ -32642,159 +116969,596 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:193.34.137.65 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX servion-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.servion.ch CNAME → selector1-servion-ch._domainkey.communeservion.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.servion.ch CNAME → selector2-servion-ch._domainkey.communeservion.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "servion.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "servion.ch"
+ ],
+ "guess":[
+ "servion.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5803":{
"bfs":"5803",
"name":"Vulliens",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vulliens.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vulliens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vulliens.ch"
+ ],
+ "guess":[
+ "vulliens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5804":{
"bfs":"5804",
"name":"Jorat-Menthue",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"jorat-menthue.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jorat-menthue.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jorat-menthue.ch"
+ ],
+ "guess":[
+ "jorat-menthue.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5805":{
"bfs":"5805",
"name":"Oron",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"oron.ch",
"mx":[
"mail.cleanmail.ch"
],
"spf":"v=spf1 a mx ip4:178.174.94.211/29 ip4:193.8.140.198/32 ip4:185.54.6.105 ip4:193.34.137.65 ~all",
"provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
"gateway":"cleanmail",
- "mx_asns":[
- 15547
- ]
+ "sources_detail":{
+ "scrape":[
+ "oron.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oron.ch"
+ ],
+ "guess":[
+ "oron.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5806":{
"bfs":"5806",
"name":"Jorat-Mézières",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"jorat-mezieres.ch",
"mx":[
"owa.jorat-mezieres.ch"
],
"spf":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com mx -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com mx -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.jorat-mezieres.ch",
- "autodiscover_srv":"owa.jorat-mezieres.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jorat-mezieres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jorat-mezieres.ch"
+ ],
+ "guess":[
+ "jorat-mezieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5812":{
"bfs":"5812",
"name":"Champtauroz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"champtauroz.ch",
"mx":[
"champtauroz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX champtauroz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.champtauroz.ch CNAME → selector1-champtauroz-ch._domainkey.communechamptauroz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.champtauroz.ch CNAME → selector2-champtauroz-ch._domainkey.communechamptauroz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "champtauroz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "champtauroz.ch"
+ ],
+ "guess":[
+ "champtauroz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5813":{
"bfs":"5813",
"name":"Chevroux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chevroux.ch",
"mx":[
"chevroux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chevroux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chevroux.ch"
+ ],
+ "guess":[
+ "chevroux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5816":{
"bfs":"5816",
"name":"Corcelles-près-Payerne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"corcelles.ch",
"mx":[
"corcelles-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corcelles-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corcelles.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corcelles.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5817":{
"bfs":"5817",
"name":"Grandcour",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"grandcour.ch",
"mx":[
"grandcour-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grandcour-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grandcour.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grandcour.ch"
+ ],
+ "guess":[
+ "grandcour.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5819":{
"bfs":"5819",
- "name":"Henniez VD",
+ "name":"Henniez",
"canton":"Kanton Waadt",
"domain":"commune-henniez.ch",
"mx":[
@@ -32802,17 +117566,39 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "commune-henniez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "commune-henniez.ch"
+ ],
+ "guess":[
+ "henniez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5821":{
"bfs":"5821",
- "name":"Missy VD",
+ "name":"Missy",
"canton":"Kanton Waadt",
"domain":"missy.ch",
"mx":[
@@ -32820,18 +117606,40 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "missy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "missy.ch"
+ ],
+ "guess":[
+ "missy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5822":{
"bfs":"5822",
"name":"Payerne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"payerne.ch",
"mx":[
"mail.rcv.ch",
@@ -32839,84 +117647,269 @@
],
"spf":"v=spf1 include:spf.rcv.ch include:_spf.i-web.ch include:spf1.ne.ch include:spf.abacuscity.ch ip4:185.54.6.105 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.rcv.ch include:_spf.i-web.ch include:spf1.ne.ch include:spf.abacuscity.ch ip4:185.54.6.105 ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:46.227.226.102 ip4:46.227.226.108 ip4:46.227.226.21 ip4:46.227.228.154 ip4:46.227.228.228 ip4:46.227.228.28 ip6:2a02:cd8:2ee3:e200::15 ip6:2a02:cd8:2ee3:e200::65 ip6:2a02:cd8:2ee3:e200::7b ip6:2a02:cd8:2ee3:e400::1c ip6:2a02:cd8:2ee3:e400::293 ip6:2a02:cd8:2ee3:e400::446 ip4:62.106.93.27 -all",
- "mx_asns":[
- 15675
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "payerne.ch"
+ ],
+ "guess":[
+ "payerne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5827":{
"bfs":"5827",
"name":"Trey",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"trey.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trey.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trey.ch"
+ ],
+ "guess":[
+ "trey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5828":{
"bfs":"5828",
- "name":"Treytorrens",
- "canton":"",
+ "name":"Treytorrens (Payerne)",
+ "canton":"Kanton Waadt",
"domain":"treytorrens.ch",
"mx":[
"mail.treytorrens.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "treytorrens.ch"
+ ],
+ "guess":[
+ "treytorrens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5830":{
"bfs":"5830",
"name":"Villarzel",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"villarzel.ch",
"mx":[
"villarzel-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX villarzel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "villarzel.ch"
+ ],
+ "guess":[
+ "villarzel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5831":{
"bfs":"5831",
"name":"Valbroye",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"valbroye.ch",
"mx":[
"valbroye-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.14.6.235 ip4:213.193.110.206 include:spf.protection.outlook.com include:spf1.ne.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.14.6.235 ip4:213.193.110.206 include:spf.protection.outlook.com include:spf1.ne.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:148.196.30.0/24 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX valbroye-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "valbroye.ch"
+ ],
+ "guess":[
+ "valbroye.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5841":{
"bfs":"5841",
- "name":"Château-d’Oex",
- "canton":"",
+ "name":"Château-d'Oex",
+ "canton":"Kanton Waadt",
"domain":"chateaudoex-admin.ch",
"mx":[
"mail.chateaudoex-admin.rcv.ch",
@@ -32924,48 +117917,200 @@
],
"spf":"v=spf1 include:spf.rcv.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.rcv.ch ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all",
- "mx_asns":[
- 15675
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.chateaudoex-admin.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chateaudoex-admin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chateaudoex-admin.ch"
+ ],
+ "guess":[
+ "chateau-doex.ch",
+ "chateaudoex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5842":{
"bfs":"5842",
"name":"Rossinière",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rossiniere.ch",
"mx":[
"rossiniere-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a include:spf.protection.outlook.com -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rossiniere-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rossiniere.ch CNAME → selector1-rossiniere-ch._domainkey.communerossiniere.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rossiniere.ch CNAME → selector2-rossiniere-ch._domainkey.communerossiniere.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rossiniere.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rossiniere.ch"
+ ],
+ "guess":[
+ "rossiniere.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5843":{
"bfs":"5843",
"name":"Rougemont",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rougemont.ch",
"mx":[
- "office.rougemont.ch"
+ "rougemont-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 mx a ip4:46.14.89.238 ip4:212.71.120.144/28 -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "mx_asns":[
- 3303
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rougemont-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rougemont.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rougemont.ch"
+ ],
+ "guess":[
+ "rougemont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5851":{
"bfs":"5851",
@@ -32977,31 +118122,111 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch mx ip4:185.48.146.23 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch mx ip4:185.48.146.23 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX allaman-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "allaman.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "allaman.ch"
+ ],
+ "guess":[
+ "allaman.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5852":{
"bfs":"5852",
"name":"Bursinel",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bursinel.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bursinel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bursinel.ch"
+ ],
+ "guess":[
+ "bursinel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5853":{
"bfs":"5853",
@@ -33013,297 +118238,1289 @@
],
"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:spf.protection.outlook.com -all v=spf1 mx a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:46.140.160.21 ip4:46.140.160.22 ip4:195.141.2.24 ip4:89.28.153.224/29 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bursins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bursins.ch",
+ "fcbursinsrolleperroy.ch",
+ "gland.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bursins.ch"
+ ],
+ "guess":[
+ "bursins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5854":{
"bfs":"5854",
"name":"Burtigny",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"burtigny.ch",
"mx":[
"burtigny-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all",
+ "spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.54.6.103 ip4:185.54.6.105 ip4:185.54.6.111 ip4:185.54.6.109 ip4:185.54.6.117 ip4:193.34.137.65 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX burtigny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.burtigny.ch CNAME → selector1-burtigny-ch._domainkey.communeburtigny.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.burtigny.ch CNAME → selector2-burtigny-ch._domainkey.communeburtigny.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "burtigny.ch"
+ ],
+ "guess":[
+ "burtigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5855":{
"bfs":"5855",
"name":"Dully",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"dully.ch",
"mx":[
"dully-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX dully-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dully.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dully.ch"
+ ],
+ "guess":[
+ "dully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5856":{
"bfs":"5856",
"name":"Essertines-sur-Rolle",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"essertines-sur-rolle.ch",
"mx":[
"essertinessurrolle-ch02ee.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX essertinessurrolle-ch02ee.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "essertines-sur-rolle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "essertines-sur-rolle.ch"
+ ],
+ "guess":[
+ "essertines-sur-rolle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5857":{
"bfs":"5857",
"name":"Gilly",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"gilly.ch",
"mx":[
"gilly-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gilly-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gilly.ch CNAME → selector1-gilly-ch._domainkey.gillyvd.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gilly.ch CNAME → selector2-gilly-ch._domainkey.gillyvd.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gilly.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gilly.ch"
+ ],
+ "guess":[
+ "gilly.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5858":{
"bfs":"5858",
"name":"Luins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"luins.ch",
"mx":[
"luins-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +mx +a +include:mailgw.tizoo.com +ip4:212.147.66.228 +include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +mx +a +include:mailgw.tizoo.com +ip4:212.147.66.228 +include:spf.protection.outlook.com -all v=spf1 ip4:5.182.248.11/32 ip4:212.147.66.228/32 ip4:212.147.66.247/32 v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":91.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX luins-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "luins.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "luins.ch"
+ ],
+ "guess":[
+ "luins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5859":{
"bfs":"5859",
"name":"Mont-sur-Rolle",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"mont-sur-rolle.ch",
"mx":[
"montsurrolle-ch01bb.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com -all v=spf1 ip4:193.34.136.0/23 ip4:185.54.4.0/23 ip4:185.54.6.0/24 ip4:98.80.189.20 ip4:99.81.216.78 ip4:34.249.190.60 ip4:108.128.137.108 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX montsurrolle-ch01bb.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mont-sur-rolle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mont-sur-rolle.ch"
+ ],
+ "guess":[
+ "mont-sur-rolle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5860":{
"bfs":"5860",
"name":"Perroy",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"perroy.ch",
"mx":[
"perroy-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:46.14.234.46 include:spf.protection.outlook.com include:_spf.dellaro.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:46.14.234.46 include:spf.protection.outlook.com include:_spf.dellaro.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a mx include:_spf.ch-dns.net -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX perroy-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "perroy.ch"
+ ],
+ "guess":[
+ "perroy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5861":{
"bfs":"5861",
"name":"Rolle",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rolle.ch",
"mx":[
"rolle-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx ip4:185.54.6.111 ip4:81.62.216.237 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:185.54.6.111 ip4:81.62.216.237 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.rolle.ch",
- "autodiscover_srv":"mail.rolle.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX rolle-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.rolle.ch CNAME → selector1-rolle-ch._domainkey.communederolle1180.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.rolle.ch CNAME → selector2-rolle-ch._domainkey.communederolle1180.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rolle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rolle.ch"
+ ],
+ "guess":[
+ "rolle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5862":{
"bfs":"5862",
"name":"Tartegnin",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"tartegnin.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "tartegnin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "tartegnin.ch"
+ ],
+ "guess":[
+ "tartegnin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5863":{
"bfs":"5863",
"name":"Vinzel",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vinzel.ch",
"mx":[
"vinzel.ch"
],
"spf":"v=spf1 ip4:5.182.248.186 include:tizoo.com ip4:5.182.248.144 ip4:212.71.120.144/28 +a +mx +ip4:212.147.66.228 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:5.182.248.186 include:tizoo.com ip4:5.182.248.144 ip4:212.71.120.144/28 +a +mx +ip4:212.147.66.228 ~all v=spf1 ip4:212.147.66.228 +a +mx ip4:5.182.248.3 ip4:5.182.248.4 ip4:5.182.248.140 ip4:5.182.248.144 ip4:5.182.248.148 ip4:5.182.248.151 ip4:5.182.248.160 ip4:5.182.248.166 ip4:5.182.248.176 ip4:5.182.248.183 ip4:5.182.248.132 ip4:212.147.66.247 ip4:212.147.66.245 ip4:212.147.66.246 ip4:5.182.248.11 ~all",
- "mx_asns":[
- 209042
- ],
- "autodiscover":{
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "vinzel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vinzel.ch"
+ ],
+ "guess":[
+ "vinzel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5871":{
"bfs":"5871",
- "name":"L’Abbaye",
- "canton":"",
+ "name":"L'Abbaye",
+ "canton":"Kanton Waadt",
"domain":"labbaye.ch",
"mx":[
"labbaye-ch.mail.eo.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webmail.labbaye.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "labbaye.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "labbaye.ch"
+ ],
+ "guess":[
+ "labbaye.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5872":{
"bfs":"5872",
"name":"Le Chenit",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"communeduchenit.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "communeduchenit.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5873":{
"bfs":"5873",
"name":"Le Lieu",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"lelieu.ch",
"mx":[
"lelieu-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lelieu-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lelieu.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lelieu.ch"
+ ],
+ "guess":[
+ "lelieu.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5882":{
"bfs":"5882",
"name":"Chardonne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chardonne.ch",
"mx":[
"chardonne-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:193.5.240.2 ip4:185.54.6.105 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:193.5.240.2 ip4:185.54.6.105 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chardonne-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chardonne.ch",
+ "comx.org",
+ "jongny.ch",
+ "securiv.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chardonne.ch"
+ ],
+ "guess":[
+ "chardonne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5883":{
"bfs":"5883",
"name":"Corseaux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"corseaux.ch",
"mx":[
"corseaux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf1.ne.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf1.ne.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corseaux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corseaux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corseaux.ch"
+ ],
+ "guess":[
+ "corseaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5884":{
"bfs":"5884",
"name":"Corsier-sur-Vevey",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"corsier-sur-vevey.ch",
"mx":[
"corsiersurvevey-ch01ii.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX corsiersurvevey-ch01ii.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.corsier-sur-vevey.ch CNAME → selector1-corsiersurvevey-ch01ii._domainkey.communecorsiersurvevey.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.corsier-sur-vevey.ch CNAME → selector2-corsiersurvevey-ch01ii._domainkey.communecorsiersurvevey.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corsier-sur-vevey.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corsier-sur-vevey.ch"
+ ],
+ "guess":[
+ "corsier-sur-vevey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5885":{
"bfs":"5885",
@@ -33315,18 +119532,94 @@
],
"spf":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com -all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX jongny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.jongny.ch CNAME → selector1-jongny-ch._domainkey.jongnyvd.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.jongny.ch CNAME → selector2-jongny-ch._domainkey.jongnyvd.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jongny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jongny.ch"
+ ],
+ "guess":[
+ "jongny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5886":{
"bfs":"5886",
"name":"Montreux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"montreux.ch",
"mx":[
"mail.rcv.ch",
@@ -33334,18 +119627,34 @@
],
"spf":"v=spf1 include:spf.rcv.ch ip4:194.56.250.0/23 ip4:94.103.98.197/32 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.rcv.ch ip4:194.56.250.0/23 ip4:94.103.98.197/32 ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all",
- "mx_asns":[
- 15675
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.comx.org"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montreux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montreux.ch"
+ ],
+ "guess":[
+ "montreux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5889":{
"bfs":"5889",
"name":"La Tour-de-Peilz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"la-tour-de-peilz.ch",
"mx":[
"mail.rcv.ch",
@@ -33353,144 +119662,610 @@
],
"spf":"v=spf1 include:spf.rcv.ch include:spf1.ne.ch include:_spf.i-web.ch a:mail.equateur.ch a:mail.netbiblio-mailer.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.rcv.ch include:spf1.ne.ch include:_spf.i-web.ch a:mail.equateur.ch a:mail.netbiblio-mailer.ch ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 15675
- ],
- "autodiscover":{
- "autodiscover_cname":"webmail.la-tour-de-peilz.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "la-tour-de-peilz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "la-tour-de-peilz.ch"
+ ],
+ "guess":[
+ "la-tour-de-peilz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5890":{
"bfs":"5890",
"name":"Vevey",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"vevey.ch",
"mx":[
"vevey-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf1.ne.ch ip4:185.54.6.105 include:spf.infomaniak.com include:spf.protection.outlook.com include:spf.villedevevey.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf1.ne.ch ip4:185.54.6.105 include:spf.infomaniak.com include:spf.protection.outlook.com include:spf.villedevevey.ch -all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:145.232.236.148 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"email.vevey.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vevey-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vevey.ch CNAME → selector1-vevey-ch._domainkey.veveych.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vevey.ch CNAME → selector2-vevey-ch._domainkey.veveych.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vevey.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vevey.ch"
+ ],
+ "guess":[
+ "stadt-vevey.ch",
+ "vevey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5891":{
"bfs":"5891",
"name":"Veytaux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"veytaux.ch",
"mx":[
"veytaux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX veytaux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "veytaux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "veytaux.ch"
+ ],
+ "guess":[
+ "veytaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5892":{
"bfs":"5892",
- "name":"Blonay – Saint-Légier",
- "canton":"",
- "domain":"blonay-saint-legier.ch",
+ "name":"Blonay - Saint-Légier",
+ "canton":"Kanton Waadt",
+ "domain":"bstl.ch",
"mx":[
- "mta-gw.infomaniak.ch"
- ],
- "spf":"v=spf1 include:spf.infomaniak.ch -all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "bstl-ch.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bstl-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.bstl.ch CNAME → selector1-bstl-ch._domainkey.blonay.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.bstl.ch CNAME → selector2-bstl-ch._domainkey.blonay.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "bstl.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5902":{
"bfs":"5902",
"name":"Belmont-sur-Yverdon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"belmont-sur-yverdon.ch",
"mx":[
"belmontsuryverdon-ch01ii.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX belmontsuryverdon-ch01ii.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "belmont-sur-yverdon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "belmont-sur-yverdon.ch"
+ ],
+ "guess":[
+ "belmont-sur-yverdon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5903":{
"bfs":"5903",
"name":"Bioley-Magnoux",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bioley-magnoux.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bioley-magnoux.ch"
+ ],
+ "guess":[
+ "bioley-magnoux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5904":{
"bfs":"5904",
"name":"Chamblon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chamblon.ch",
"mx":[
"chamblon-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX chamblon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.chamblon.ch CNAME → selector1-chamblon-ch._domainkey.chamblon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.chamblon.ch CNAME → selector2-chamblon-ch._domainkey.chamblon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chamblon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chamblon.ch"
+ ],
+ "guess":[
+ "chamblon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5905":{
"bfs":"5905",
"name":"Champvent",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"champvent.ch",
"mx":[
"champvent-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX champvent-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "champvent.ch"
+ ],
+ "guess":[
+ "champvent.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5907":{
"bfs":"5907",
"name":"Chavannes-le-Chêne",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chavannes-le-chene.ch",
"mx":[
"mx1.spamvor.com",
@@ -33498,62 +120273,143 @@
],
"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"spamvor",
- "mx_asns":[
- 29222
- ]
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chavannes-le-chene.ch"
+ ],
+ "guess":[
+ "chavannes-le-chene.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5908":{
"bfs":"5908",
"name":"Chêne-Pâquier",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"chene-paquier.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chene-paquier.ch"
+ ],
+ "guess":[
+ "chene-paquier.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"5909":{
"bfs":"5909",
"name":"Cheseaux-Noréaz",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cheseaux-noreaz.ch",
"mx":[
"mta.witecom.ch"
],
"spf":"v=spf1 include:spf.witecom.ch include:spf.infomaniak.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.witecom.ch include:spf.infomaniak.ch -all v=spf1 ip4:185.43.244.0/22 ip6:2a05:4880::/29 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 199811
- ],
- "autodiscover":{
- "autodiscover_srv":"owa.ynv.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cheseaux-noreaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cheseaux-noreaz.ch"
+ ],
+ "guess":[
+ "cheseaux-noreaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5910":{
"bfs":"5910",
"name":"Cronay",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"cronay.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cronay.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cronay.ch"
+ ],
+ "guess":[
+ "cronay.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5911":{
"bfs":"5911",
@@ -33565,53 +120421,195 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cuarny-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cuarny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cuarny.ch"
+ ],
+ "guess":[
+ "cuarny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5912":{
"bfs":"5912",
"name":"Démoret",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"demoret.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "demoret.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "demoret.ch"
+ ],
+ "guess":[
+ "demoret.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5913":{
"bfs":"5913",
"name":"Donneloye",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"donneloye.ch",
"mx":[
"donneloye-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX donneloye-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "donneloye.ch"
+ ],
+ "guess":[
+ "donneloye.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5914":{
"bfs":"5914",
- "name":"Ependes",
+ "name":"Ependes (VD)",
"canton":"Kanton Waadt",
"domain":"ependesvd.ch",
"mx":[
@@ -33619,64 +120617,282 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ependesvd-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ependesvd.ch"
+ ],
+ "guess":[
+ "ependes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5919":{
"bfs":"5919",
"name":"Mathod",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"mathod.ch",
"mx":[
"mathod-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:178.211.226.99 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.211.226.99 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX mathod-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mathod.ch"
+ ],
+ "guess":[
+ "mathod.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5921":{
"bfs":"5921",
"name":"Molondin",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"molondin.ch",
"mx":[
"molondin-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX molondin-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mediaterre.ch",
+ "molondin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "molondin.ch"
+ ],
+ "guess":[
+ "molondin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5922":{
"bfs":"5922",
"name":"Montagny-près-Yverdon",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"montagny.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montagny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montagny.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5923":{
"bfs":"5923",
@@ -33688,14 +120904,27 @@
],
"spf":"v=spf1 ip4:5.182.248.151 include:tizoo.com +a +mx +ip4:212.147.66.228 +ip4:212.147.77.250 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 ip4:5.182.248.151 include:tizoo.com +a +mx +ip4:212.147.66.228 +ip4:212.147.77.250 ~all v=spf1 ip4:212.147.66.228 +a +mx ip4:5.182.248.3 ip4:5.182.248.4 ip4:5.182.248.140 ip4:5.182.248.144 ip4:5.182.248.148 ip4:5.182.248.151 ip4:5.182.248.160 ip4:5.182.248.166 ip4:5.182.248.176 ip4:5.182.248.183 ip4:5.182.248.132 ip4:212.147.66.247 ip4:212.147.66.245 ip4:212.147.66.246 ip4:5.182.248.11 ~all",
- "mx_asns":[
- 209042
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "citycable.ch",
+ "oppens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oppens.ch"
+ ],
+ "guess":[
+ "oppens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5924":{
"bfs":"5924",
- "name":"Orges VD",
+ "name":"Orges",
"canton":"Kanton Waadt",
"domain":"orges.ch",
"mx":[
@@ -33703,13 +120932,71 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX orges-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "orges.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "orges.ch"
+ ],
+ "guess":[
+ "orges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5925":{
"bfs":"5925",
@@ -33721,17 +121008,39 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "orzens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "orzens.ch"
+ ],
+ "guess":[
+ "orzens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5926":{
"bfs":"5926",
- "name":"Pomy VD",
+ "name":"Pomy",
"canton":"Kanton Waadt",
"domain":"pomy.ch",
"mx":[
@@ -33739,31 +121048,81 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "pomy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "pomy.ch"
+ ],
+ "guess":[
+ "pomy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5928":{
"bfs":"5928",
"name":"Rovray",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"rovray.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rovray.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rovray.ch"
+ ],
+ "guess":[
+ "rovray.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5929":{
"bfs":"5929",
@@ -33775,13 +121134,33 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "suchy.ch"
+ ],
+ "guess":[
+ "suchy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5930":{
"bfs":"5930",
@@ -33793,10 +121172,33 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:84.22.118.28 ip6:2a02:2770:13:0:21a:4aff:fe3b:a633 ip4:84.22.115.207 ip6:2a02:2770:15:0:21a:4aff:febd:eee8 ip4:84.22.101.112 ip6:2a02:2770:6:0:21a:4aff:feea:3ff9 ip4:37.252.126.75 ip6:2a02:2770:7:0:21a:4aff:feeb:4695 ip4:37.252.126.197 ip6:2a02:2770:7:0:21a:4aff:fe51:f065 ip4:46.19.33.41 ip6:2a02:2770:0:0:21a:4aff:fe98:a3c8 ip4:185.19.31.8 ip6:2a04:c43:e00:ee1:4bf:b0ff:fe00:344 ip4:84.22.99.32 ip6:2a02:2770:13:0:21a:4aff:fee7:3911 ip4:185.24.220.76 ip6:2a02:2770:9:0:21a:4aff:feb7:50b4 ip4:37.252.120.95 ip6:2a02:2770:5:0:21a:4aff:fe7d:3ce1 ip4:185.181.162.236 ip6:2001:1600:4:8:f816:3eff:fe02:e770 ip4:46.19.34.237 ip6:2a02:2770:0:0:21a:4aff:fe5d:6d3b ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "suscevaz.ch"
+ ],
+ "guess":[
+ "suscevaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5931":{
"bfs":"5931",
@@ -33808,31 +121210,115 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX treycovagnes-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "treycovagnes.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "treycovagnes.ch"
+ ],
+ "guess":[
+ "treycovagnes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5932":{
"bfs":"5932",
"name":"Ursins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"ursins.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ursins.ch"
+ ],
+ "guess":[
+ "ursins.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5933":{
"bfs":"5933",
@@ -33844,18 +121330,86 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX valeyressousmontagny-ch02bc.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "valeyres-sous-montagny.ch"
+ ],
+ "guess":[
+ "valeyres-sous-montagny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5934":{
"bfs":"5934",
"name":"Valeyres-sous-Ursins",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"bluemail.ch",
"mx":[
"mx01.p.bluenet.ch",
@@ -33863,13 +121417,91 @@
],
"spf":"v=spf1 redirect=_spf.bluewin.ch",
"provider":"independent",
- "spf_resolved":"v=spf1 redirect=_spf.bluewin.ch v=spf1 ip4:193.247.246.0/24 ip4:138.188.174.0/24 ip4:138.188.175.0/24 ~all",
- "mx_asns":[
- 16509
- ],
- "autodiscover":{
- "autodiscover_cname":"client-configurator.scapp.swisscom.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bluemail.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"5935":{
"bfs":"5935",
@@ -33881,9 +121513,29 @@
],
"spf":"",
"provider":"infomaniak",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":80.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "villars-epeney.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "villars-epeney.ch"
+ ],
+ "guess":[
+ "villars-epeney.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5937":{
"bfs":"5937",
@@ -33895,18 +121547,44 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vugelleslamothe.ch"
+ ],
+ "guess":[
+ "vugelleslamothe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5938":{
"bfs":"5938",
"name":"Yverdon-les-Bains",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"yverdon-les-bains.ch",
"mx":[
"mail.yverdon.rcv.ch",
@@ -33914,177 +121592,642 @@
],
"spf":"v=spf1 include:spf.rcv.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.rcv.ch ~all v=spf1 ip4:145.232.253.0/24 ip4:193.5.240.2 ip4:193.5.244.2 ip4:193.5.248.2 ip4:193.5.249.2 -all",
- "mx_asns":[
- 15675
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "yverdon-les-bains.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "yverdon-les-bains.ch"
+ ],
+ "guess":[
+ "yverdon-les-bains.ch",
+ "yverdonlesbains.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"5939":{
"bfs":"5939",
"name":"Yvonand",
- "canton":"",
+ "canton":"Kanton Waadt",
"domain":"yvonand.ch",
"mx":[
"mta.witecom.ch"
],
"spf":"v=spf1 mx include:spf.witecom.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf.witecom.ch -all v=spf1 ip4:185.43.244.0/22 ip6:2a05:4880::/29 -all",
- "mx_asns":[
- 199811
- ],
- "autodiscover":{
- "autodiscover_cname":"owa.yvonand.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "yvonand.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "yvonand.ch"
+ ],
+ "guess":[
+ "yvonand.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6002":{
"bfs":"6002",
"name":"Brig-Glis",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"brig-glis.ch",
"mx":[
"mx.rhone.ch"
],
"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.204.128/30 ip4:81.201.204.116/30 ip4:81.201.204.104/29 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.204.128/30 ip4:81.201.204.116/30 ip4:81.201.204.104/29 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 25353
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "brig-glis.ch"
+ ],
+ "guess":[
+ "brig-glis.ch",
+ "brigglis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6004":{
"bfs":"6004",
"name":"Eggerberg",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"eggerberg.ch",
"mx":[
"eggerberg-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eggerberg-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eggerberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eggerberg.ch"
+ ],
+ "guess":[
+ "eggerberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6007":{
"bfs":"6007",
"name":"Naters",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"naters.ch",
"mx":[
"mail.naters.ch"
],
"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.204.188/30 ip4:81.201.204.48/29 include:spf.protection.outlook.com include:mx.dvbern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.204.188/30 ip4:81.201.204.48/29 include:spf.protection.outlook.com include:mx.dvbern.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 25353
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "naters.ch"
+ ],
+ "guess":[
+ "naters.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6008":{
"bfs":"6008",
"name":"Ried-Brig",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"ried-brig.ch",
"mx":[
"riedbrig-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX riedbrig-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ried-brig.ch"
+ ],
+ "guess":[
+ "ried-brig.ch",
+ "riedbrig.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6009":{
"bfs":"6009",
"name":"Simplon",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"gemeinde-simplon.ch",
"mx":[
"gemeindesimplon-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindesimplon-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-simplon.ch"
+ ],
+ "guess":[
+ "gemeinde-simplon.ch",
+ "simplon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6010":{
"bfs":"6010",
"name":"Termen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"termen.ch",
"mx":[
"termen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX termen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "termen.ch"
+ ],
+ "guess":[
+ "termen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6011":{
"bfs":"6011",
"name":"Zwischbergen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"gondo.ch",
"mx":[
"gondo-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:81.201.201.8 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.201.201.8 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"auto.rhone.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gondo-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gondo.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[
+ "website_mismatch"
+ ]
},
"6021":{
"bfs":"6021",
"name":"Ardon",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"ardon.ch",
"mx":[
- "mailgate2.ti-informatique.com"
- ],
- "spf":"v=spf1 mx -all",
- "provider":"independent",
- "mx_asns":[
- 34146
+ "ardon-ch.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ardon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ardon.ch"
+ ],
+ "guess":[
+ "ardon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6022":{
"bfs":"6022",
"name":"Chamoson",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"chamoson.net",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -34092,55 +122235,237 @@
],
"spf":"v=spf1 mx include:clients.ciges.ch ?all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:clients.ciges.ch ?all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[
+ "chamoson.net"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chamoson.net"
+ ],
+ "guess":[
+ "chamoson.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6023":{
"bfs":"6023",
"name":"Conthey",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"conthey.ch",
"mx":[
"conthey-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.221.145.32 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.221.145.32 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX conthey-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "conthey.ch"
+ ],
+ "guess":[
+ "conthey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6024":{
"bfs":"6024",
"name":"Nendaz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"nendaz.org",
"mx":[
"nendaz-org.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.221.147.224/28 include:spf.protection.outlook.com include:spf.mailpro.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.221.147.224/28 include:spf.protection.outlook.com include:spf.mailpro.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:178.239.38.0/24 ip4:62.133.56.0/24 ip4:62.50.74.80/28 ip4:62.50.73.144/28 ip4:62.50.76.40/29 ip4:62.50.76.16/28 ip4:195.81.131.64/27 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip6:2a06:fa00::/29 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX nendaz-org.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.nendaz.org CNAME → selector1-nendaz-org._domainkey.nendaz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.nendaz.org CNAME → selector2-nendaz-org._domainkey.nendaz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "nendaz.org"
+ ],
+ "guess":[
+ "nendaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6025":{
"bfs":"6025",
"name":"Vétroz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"vetroz.ch",
"mx":[
"mgwa01.dlnet.ch",
@@ -34148,34 +122473,72 @@
],
"spf":"v=spf1 mx a a:mgwa01.dlnet.ch a:mgwb01.dlnet.ch -all",
"provider":"independent",
- "mx_asns":[
- 200925
- ],
- "autodiscover":{
- "autodiscover_srv":"outlook.dlnet.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vetroz.ch"
+ ],
+ "guess":[
+ "vetroz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6032":{
"bfs":"6032",
"name":"Bourg-Saint-Pierre",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"bourg-saint-pierre.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all",
- "provider":"infomaniak",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bourg-saint-pierre.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bourg-saint-pierre.ch"
+ ],
+ "guess":[
+ "bourg-saint-pierre.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6033":{
"bfs":"6033",
"name":"Liddes",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"liddes.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -34183,55 +122546,107 @@
],
"spf":"v=spf1 include:clients.ciges.ch ip4:94.103.101.133 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:clients.ciges.ch ip4:94.103.101.133 ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "liddes.ch"
+ ],
+ "guess":[
+ "liddes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6034":{
"bfs":"6034",
"name":"Orsières",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"orsieres.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 include:ti-informatique.com mx ?all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:ti-informatique.com mx ?all v=spf1 mx a -all",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "orsieres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "orsieres.ch"
+ ],
+ "guess":[
+ "orsieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6035":{
"bfs":"6035",
"name":"Sembrancher",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"sembrancher.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 include:spf.infomaniak.ch mx -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch mx -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "admin.vs.ch",
+ "sembrancher.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sembrancher.ch"
+ ],
+ "guess":[
+ "sembrancher.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6037":{
"bfs":"6037",
"name":"Val de Bagnes",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"valdebagnes.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -34239,200 +122654,729 @@
],
"spf":"v=spf1 include:clients.ciges.ch include:_spf.i-web.ch include:email.freshservice.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:clients.ciges.ch include:_spf.i-web.ch include:email.freshservice.com ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 include:sendgrid.net include:emailus.freshservice.com include:emaileuc.freshservice.com include:emailmum.freshservice.com include:emailsyd.freshservice.com ~all v=spf1 ip4:185.132.182.137 v=spf1 ip4:167.89.0.0/17 ip4:208.117.48.0/20 ip4:50.31.32.0/19 ip4:198.37.144.0/20 ip4:198.21.0.0/21 ip4:192.254.112.0/20 ip4:168.245.0.0/17 ip4:149.72.0.0/16 ip4:159.183.0.0/16 ip4:134.128.64.0/19 ip4:134.128.96.0/19 include:ab.sendgrid.net ~all v=spf1 include:fsspfus.freshemail.io ~all v=spf1 include:fsspfeuc.freshemail.io ~all v=spf1 include:fsspfin.freshemail.io ~all v=spf1 include:fsspfau.freshemail.io ~all v=spf1 ip4:223.165.113.0/24 ip4:223.165.115.0/24 ip4:223.165.118.0/23 ip4:223.165.120.0/23 ~all",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[
+ "valdebagnes.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "valdebagnes.ch"
+ ],
+ "guess":[
+ "valdebagnes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6052":{
"bfs":"6052",
"name":"Bellwald",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"bellwald.ch",
"mx":[
"mx.rhone.ch"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.outlook.com +a +mx +ip4:81.201.202.0/26 +ip4:81.201.201.0/25 +ip4:188.40.26.205/32 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.protection.outlook.com +a +mx +ip4:81.201.202.0/26 +ip4:81.201.201.0/25 +ip4:188.40.26.205/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 25353
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bellwald.ch",
+ "police.vs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "bellwald.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6054":{
"bfs":"6054",
"name":"Binn",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"binn.ch",
"mx":[
"mail.binn.ch"
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.cyon.net -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.cyon.net -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 21069
- ],
- "autodiscover":{
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "binn.ch",
+ "landschaftspark-binntal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "binn.ch"
+ ],
+ "guess":[
+ "binn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6056":{
"bfs":"6056",
"name":"Ernen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"ernen.ch",
"mx":[
"ernen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ernen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ernen.ch",
+ "landschaftspark-binntal.ch",
+ "musikdorf.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ernen.ch"
+ ],
+ "guess":[
+ "ernen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6057":{
"bfs":"6057",
"name":"Fiesch",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"gemeinde-fiesch.ch",
"mx":[
"gemeindefiesch-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:188.227.202.22 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:188.227.202.22 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindefiesch-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-fiesch.ch"
+ ],
+ "guess":[
+ "fiesch.ch",
+ "gemeinde-fiesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6058":{
"bfs":"6058",
"name":"Fieschertal",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"fieschertal.ch",
"mx":[
"fieschertal-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fieschertal-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fieschertal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fieschertal.ch"
+ ],
+ "guess":[
+ "fieschertal.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6061":{
"bfs":"6061",
"name":"Lax",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"lax.ch",
"mx":[
"lax-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:188.227.202.28 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:188.227.202.28 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lax-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lax.ch"
+ ],
+ "guess":[
+ "lax.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6076":{
"bfs":"6076",
"name":"Obergoms",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"obergoms.ch",
"mx":[
"mx.rhone.ch"
],
"spf":"v=spf1 ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.202.0/24 include:_bulk-spf.datasport.com include:spf.protection.outlook.com include:spf.mandrillapp.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.202.0/24 include:_bulk-spf.datasport.com include:spf.protection.outlook.com include:spf.mandrillapp.com -all v=spf1 ip4:185.71.124.0/24 ip4:185.71.125.0/24 ip4:185.71.126.0/24 ip4:185.71.127.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 25353
- ],
- "autodiscover":{
- "autodiscover_srv":"auto.rhone.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "obergoms.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "obergoms.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6077":{
"bfs":"6077",
"name":"Goms",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"gemeinde-goms.ch",
"mx":[
"gemeindegoms-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:146.4.85.110 +ip4:81.201.204.212 +ip4:95.174.243.178 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:146.4.85.110 +ip4:81.201.204.212 +ip4:95.174.243.178 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindegoms-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gemeinde-goms.ch CNAME → selector1-gemeindegoms-ch02b._domainkey.gdegoms.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gemeinde-goms.ch CNAME → selector2-gemeindegoms-ch02b._domainkey.gdegoms.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gemeinde-goms.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-goms.ch"
+ ],
+ "guess":[
+ "gemeinde-goms.ch",
+ "goms.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6082":{
"bfs":"6082",
"name":"Ayent",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"ayent.ch",
"mx":[
"ayent-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx include:spf.infomaniak.ch include:spf.protection.outlook.com include:evok.ch ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx include:spf.infomaniak.ch include:spf.protection.outlook.com include:evok.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ayent-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ayent.ch"
+ ],
+ "guess":[
+ "ayent.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6083":{
"bfs":"6083",
"name":"Evolène",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"commune-evolene.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "commune-evolene.ch"
+ ],
+ "guess":[
+ "evolene.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6084":{
"bfs":"6084",
"name":"Hérémence",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"heremence.ch",
"mx":[
"mailgate.ti-informatique.com",
@@ -34440,17 +123384,32 @@
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "heremence.ch"
+ ],
+ "guess":[
+ "heremence.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6087":{
"bfs":"6087",
- "name":"Saint-Martin",
- "canton":"",
+ "name":"Saint-Martin (VS)",
+ "canton":"Kanton Wallis",
"domain":"saint-martin.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -34458,34 +123417,94 @@
],
"spf":"v=spf1 include:spf.infomaniak.ch include:clients.ciges.ch ~all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:clients.ciges.ch ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:185.132.182.137 v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
+ "category":"swiss-based",
+ "classification_confidence":70.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
"gateway":"proofpoint",
- "mx_asns":[
- 52129
- ]
+ "sources_detail":{
+ "scrape":[
+ "saint-martin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saint-martin.ch"
+ ],
+ "guess":[
+ "saint-martin.ch",
+ "saintmartin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6089":{
"bfs":"6089",
"name":"Vex",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"vex.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 include:ti-informatique.com mx -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:ti-informatique.com mx -all v=spf1 mx a -all",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vex.ch"
+ ],
+ "guess":[
+ "vex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6090":{
"bfs":"6090",
"name":"Mont-Noble",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"mont-noble.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -34493,14 +123512,25 @@
],
"spf":"v=spf1 include:_spf.ch-dns.net include:clients.ciges.ch +mx -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.ch-dns.net include:clients.ciges.ch +mx -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
"gateway":"proofpoint",
- "mx_asns":[
- 52129
- ],
- "autodiscover":{
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "sources_detail":{
+ "scrape":[
+ "hemmer.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mont-noble.ch"
+ ],
+ "guess":[
+ "mont-noble.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6101":{
"bfs":"6101",
@@ -34512,31 +123542,171 @@
],
"spf":"v=spf1 v=spf1 a mx ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:62.202.49.82 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 v=spf1 a mx ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:62.202.49.82 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX agarn-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "agarn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "agarn.ch"
+ ],
+ "guess":[
+ "agarn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6102":{
"bfs":"6102",
"name":"Albinen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"albinen.ch",
"mx":[
"albinen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX albinen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "albinen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "albinen.ch"
+ ],
+ "guess":[
+ "albinen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6104":{
"bfs":"6104",
@@ -34548,13 +123718,75 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX ergisch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "ergisch.ch"
+ ],
+ "guess":[
+ "ergisch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6109":{
"bfs":"6109",
@@ -34566,72 +123798,356 @@
],
"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX inden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "inden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "inden.ch"
+ ],
+ "guess":[
+ "inden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6110":{
"bfs":"6110",
"name":"Leuk",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"leuk.ch",
"mx":[
"leuk-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:217.11.36.106 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:217.11.36.106 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leuk-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.leuk.ch CNAME → selector1-leuk-ch._domainkey.gemeindeleuk.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.leuk.ch CNAME → selector2-leuk-ch._domainkey.gemeindeleuk.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "leuk.ch"
+ ],
+ "guess":[
+ "leuk.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6111":{
"bfs":"6111",
"name":"Leukerbad",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"leukerbad.org",
"mx":[
"leukerbad-org.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leukerbad-org.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leukerbad.org"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leukerbad.org"
+ ],
+ "guess":[
+ "leukerbad.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6112":{
"bfs":"6112",
"name":"Oberems",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"oberems.ch",
"mx":[
"oberems-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX oberems-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "oberems.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "oberems.ch"
+ ],
+ "guess":[
+ "oberems.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6113":{
"bfs":"6113",
"name":"Salgesch",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"salgesch.ch",
"mx":[
"mx-cluster01-hz13.hornetsecurity.ch",
@@ -34641,18 +124157,40 @@
],
"spf":"v=spf1 redirect=salgesch.ch.spf.hornetdmarc.com",
"provider":"microsoft",
- "spf_resolved":"v=spf1 redirect=salgesch.ch.spf.hornetdmarc.com v=spf1 ip4:164.128.154.70 include:spf.hornetsecurity.com include:spf.protection.outlook.com -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 25091
+ "category":"us-cloud",
+ "classification_confidence":75.0,
+ "classification_signals":[
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "salgesch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "salgesch.ch"
+ ],
+ "guess":[
+ "salgesch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6116":{
"bfs":"6116",
- "name":"Varen VS",
+ "name":"Varen",
"canton":"Kanton Wallis",
"domain":"varen.ch",
"mx":[
@@ -34660,31 +124198,154 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX varen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "varen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "varen.ch"
+ ],
+ "guess":[
+ "varen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6117":{
"bfs":"6117",
"name":"Guttet-Feschel",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"guttet-feschel.ch",
"mx":[
"guttetfeschel-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX guttetfeschel-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "guttet-feschel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "guttet-feschel.ch"
+ ],
+ "guess":[
+ "guttet-feschel.ch",
+ "guttetfeschel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6118":{
"bfs":"6118",
@@ -34696,239 +124357,1035 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gampelbratsch-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gampel-bratsch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gampel-bratsch.ch"
+ ],
+ "guess":[
+ "gampel-bratsch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6119":{
"bfs":"6119",
"name":"Turtmann-Unterems",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"turtmann-unterems.ch",
"mx":[
"turtmannunterems-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX turtmannunterems-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "turtmann-unterems.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "turtmann-unterems.ch"
+ ],
+ "guess":[
+ "turtmann-unterems.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6131":{
"bfs":"6131",
"name":"Bovernier",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"bovernier.ch",
"mx":[
"bovernier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 mx a -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bovernier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bovernier.ch"
+ ],
+ "guess":[
+ "bovernier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6133":{
"bfs":"6133",
"name":"Fully",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"fully.ch",
"mx":[
"smtp.fully.ch"
],
"spf":"v=spf1 a mx a:mail2.pcprofi.ch ip4:81.88.178.30 ip4:81.88.178.21 ip4:213.221.139.177 ~all",
"provider":"independent",
- "mx_asns":[
- 15547
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fully.ch"
+ ],
+ "guess":[
+ "fully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6134":{
"bfs":"6134",
"name":"Isérables",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"iserables.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 mx include:spf1.net4all.ch include:spf.infomaniak.ch include:_spf.komodo.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:spf1.net4all.ch include:spf.infomaniak.ch include:_spf.komodo.ch -all v=spf1 ip4:80.80.228.110 ip4:80.80.228.43 ip4:80.80.228.47 ip4:80.80.228.81 ip4:80.80.228.82 ip4:80.80.228.83 ip4:80.80.228.58 ip4:80.80.228.17 ip4:80.80.228.52 ip4:80.80.228.99 ip4:80.80.228.112 ip4:80.80.228.114 ip4:80.80.228.56 ip4:141.101.62.117 ip4:141.101.62.243 ip4:80.80.228.21 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.62.168.0/22 ip4:194.113.228.0/22 ip6:2a02:7e60::/32 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "iserables.ch"
+ ],
+ "guess":[
+ "iserables.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6135":{
"bfs":"6135",
"name":"Leytron",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"leytron.ch",
"mx":[
"leytron-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.221.149.254 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:213.221.149.254 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX leytron-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "leytron.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "leytron.ch"
+ ],
+ "guess":[
+ "leytron.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6136":{
"bfs":"6136",
"name":"Martigny",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"martigny.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "martigny.ch"
+ ],
+ "guess":[
+ "martigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6137":{
"bfs":"6137",
"name":"Martigny-Combe",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"martigny-combe.ch",
"mx":[
"martignycombe-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX martignycombe-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.martigny-combe.ch CNAME → selector1-martignycombe-ch02b._domainkey.martignycombe.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.martigny-combe.ch CNAME → selector2-martignycombe-ch02b._domainkey.martignycombe.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "axianet.ch",
+ "martigny-combe.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "martigny-combe.ch"
+ ],
+ "guess":[
+ "martigny-combe.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6139":{
"bfs":"6139",
"name":"Riddes",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"riddes.ch",
"mx":[
"riddes-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com ip4:213.221.136.66 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com ip4:213.221.136.66 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX riddes-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "riddes.ch"
+ ],
+ "guess":[
+ "riddes.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6140":{
"bfs":"6140",
"name":"Saillon",
- "canton":"",
- "domain":"saillon.ch",
- "mx":[
- "mx.netplus.ch"
- ],
- "spf":"v=spf1 include:netplus.ch include:clients.ciges.ch include:eu.mailgun.org include:spf.protection.outlook.com include:_spf.i-web.ch ~all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:netplus.ch include:clients.ciges.ch include:eu.mailgun.org include:spf.protection.outlook.com include:_spf.i-web.ch ~all v=spf1 a:mxout.netplus.ch include:app.mail.infomaniak.ch include:spf.brevo.com include:amazonses.com include:spf.sogomail.ch ?all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 include:_spf.eu.mailgun.org ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all v=spf1 ip4:91.212.152.0/24 ~all v=spf1 ip4:185.132.182.137",
- "mx_asns":[
- 15547
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "canton":"Kanton Wallis",
+ "domain":"commune-saillon.ch",
+ "mx":[
+ "communesaillon-ch01i.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com include:spfcloud.letsignit.com include:mailgun.org include:_spf.i-web.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX communesaillon-ch01i.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.commune-saillon.ch CNAME → selector1-communesaillon-ch01i._domainkey.cnesaillon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.commune-saillon.ch CNAME → selector2-communesaillon-ch01i._domainkey.cnesaillon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "commune-saillon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6141":{
"bfs":"6141",
"name":"Saxon",
- "canton":"",
- "domain":"saxon.ch",
+ "canton":"Kanton Wallis",
+ "domain":"admin.saxon.ch",
"mx":[
- "mx.netplus.ch"
+ "admin-saxon-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:netplus.ch ?all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:netplus.ch ?all v=spf1 a:mxout.netplus.ch include:app.mail.infomaniak.ch include:spf.brevo.com include:amazonses.com include:spf.sogomail.ch ?all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.41.28.0/22 ip4:94.143.16.0/21 ip4:185.24.144.0/22 ip4:153.92.224.0/19 ip4:213.32.128.0/18 ip4:185.107.232.0/22 ip4:77.32.128.0/18 ip4:77.32.192.0/19 ip4:212.146.192.0/18 ip4:172.246.0.0/18 -all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all v=spf1 ip4:91.212.152.0/24 ~all",
- "mx_asns":[
- 15547
- ]
+ "spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX admin-saxon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "admin.saxon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6142":{
"bfs":"6142",
"name":"Trient",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"trient.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all",
"provider":"independent",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "trient.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "trient.ch"
+ ],
+ "guess":[
+ "trient.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6151":{
"bfs":"6151",
"name":"Champéry",
- "canton":"",
- "domain":"admin-champery.ch",
- "mx":[
- "mailgate.ti-informatique.com",
- "mailgate2.ti-informatique.com"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 34146
+ "canton":"Kanton Wallis",
+ "domain":"champery.ch",
+ "mx":[
+ "champery-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX champery-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "champery.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "admin-champery.ch"
+ ],
+ "guess":[
+ "champery.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"6152":{
"bfs":"6152",
"name":"Collombey-Muraz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"collombey-muraz.ch",
"mx":[
"collombeymuraz-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:213.221.157.230 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.221.157.230 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX collombeymuraz-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.collombey-muraz.ch CNAME → selector1-collombeymuraz-ch02c._domainkey.collombey.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.collombey-muraz.ch CNAME → selector2-collombeymuraz-ch02c._domainkey.collombey.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "collombey-muraz.ch"
+ ],
+ "guess":[
+ "collombey-muraz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6153":{
"bfs":"6153",
"name":"Monthey",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"monthey.ch",
"mx":[
"mx-01-eu-central-1.prod.hydra.sophos.com",
@@ -34936,381 +125393,1625 @@
],
"spf":"v=spf1 ip4:213.221.152.154 ip4:193.34.137.65 ip4:185.54.6.111 include:spf.protection.outlook.com include:_spf_eucentral1.prod.hydra.sophos.com include:spf-de.emailsignatures365.com include:de1-emailsignatures-cloud.codetwo.com include:spf1.ne.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:213.221.152.154 ip4:193.34.137.65 ip4:185.54.6.111 include:spf.protection.outlook.com include:_spf_eucentral1.prod.hydra.sophos.com include:spf-de.emailsignatures365.com include:de1-emailsignatures-cloud.codetwo.com include:spf1.ne.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:94.140.18.0/24 ip4:35.159.27.8/30 ip4:35.159.27.28/30 ip4:35.159.27.32/30 ip4:35.159.27.48/29 ip4:35.159.27.160/28 ~all v=spf1 ip4:20.79.220.33 ip4:20.79.222.204 ip4:13.94.95.171 ip4:137.116.240.241 -all v=spf1 redirect=spf.emailsignatures365.com v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:20.92.116.22 ip4:40.86.225.121 ip4:13.74.137.176 ip4:40.113.3.253 ip4:20.49.202.3 ip4:52.240.209.173 ip4:13.93.42.39 ip4:104.42.172.251 ip4:20.79.220.33 ip4:20.42.205.31 ip4:52.138.216.130 ip4:20.98.2.159 ip4:20.93.157.195 ip4:40.86.217.129 ip4:23.100.56.64 ip4:20.58.22.103 ip4:23.100.43.194 ip4:20.79.222.204 ip4:13.77.59.28 ip4:40.114.221.220 ip4:20.97.70.227 ip4:40.69.19.60 ip4:52.170.22.60 ip4:13.94.95.171 ip4:51.11.109.172 -all",
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
"gateway":"sophos",
- "mx_asns":[
- 16509
- ]
+ "sources_detail":{
+ "scrape":[
+ "monthey.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "monthey.ch"
+ ],
+ "guess":[
+ "monthey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6154":{
"bfs":"6154",
"name":"Port-Valais",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"port-valais.ch",
"mx":[
"portvalais-ch01b.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.71.120.144/28 ip4:213.221.134.37 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.71.120.144/28 ip4:213.221.134.37 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX portvalais-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.port-valais.ch CNAME → selector1-portvalais-ch01b._domainkey.portvalaisvs.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.port-valais.ch CNAME → selector2-portvalais-ch01b._domainkey.portvalaisvs.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "port-valais.ch"
+ ],
+ "guess":[
+ "port-valais.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6155":{
"bfs":"6155",
"name":"Saint-Gingolph",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"st-gingolph.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "st-gingolph.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"6156":{
"bfs":"6156",
"name":"Troistorrents",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"troistorrents.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all",
"provider":"independent",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "troistorrents.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "troistorrents.ch"
+ ],
+ "guess":[
+ "troistorrents.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6157":{
"bfs":"6157",
- "name":"Val-d’Illiez",
- "canton":"",
+ "name":"Val-d'Illiez",
+ "canton":"Kanton Wallis",
"domain":"illiez.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 mx -all",
"provider":"independent",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "illiez.ch"
+ ],
+ "guess":[
+ "valdilliez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6158":{
"bfs":"6158",
"name":"Vionnaz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"vionnaz.ch",
"mx":[
"vionnaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 mx a -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vionnaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vionnaz.ch"
+ ],
+ "guess":[
+ "vionnaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6159":{
"bfs":"6159",
"name":"Vouvry",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"vouvry.ch",
"mx":[
"vouvry-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.kreativmedia.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.kreativmedia.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vouvry-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vouvry.ch"
+ ],
+ "guess":[
+ "vouvry.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6172":{
"bfs":"6172",
- "name":"Bister VS",
+ "name":"Bister",
"canton":"Kanton Wallis",
"domain":"gemeinde-bister.ch",
- "mx":[],
- "spf":"",
- "provider":"microsoft"
+ "mx":[
+ "gemeindebister-ch02b.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindebister-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.gemeinde-bister.ch CNAME → selector1-gemeindebister-ch02b._domainkey.gemeindebister.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.gemeinde-bister.ch CNAME → selector2-gemeindebister-ch02b._domainkey.gemeindebister.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeinde-bister.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6173":{
"bfs":"6173",
"name":"Bitsch",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"bitsch.ch",
"mx":[
"bitsch-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:62.204.96.43 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:62.204.96.43 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bitsch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bitsch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bitsch.ch"
+ ],
+ "guess":[
+ "bitsch.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6177":{
"bfs":"6177",
"name":"Grengiols",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"grengiols.ch",
"mx":[
"grengiols-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com ip4:146.4.33.178 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com ip4:146.4.33.178 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grengiols-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "grengiols.ch",
+ "landschaftspark-binntal.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grengiols.ch"
+ ],
+ "guess":[
+ "grengiols.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6181":{
"bfs":"6181",
"name":"Riederalp",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"gemeinde-riederalp.ch",
"mx":[
"gemeinderiederalp-ch02b.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeinderiederalp-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-riederalp.ch"
+ ],
+ "guess":[
+ "gemeinde-riederalp.ch",
+ "riederalp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6191":{
"bfs":"6191",
"name":"Ausserberg",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"ausserberg.ch",
"mx":[
"ausserberg.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"maildiscovery.cyon.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":95.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ausserberg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ausserberg.ch"
+ ],
+ "guess":[
+ "ausserberg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6192":{
"bfs":"6192",
"name":"Blatten",
- "canton":"",
- "domain":"blatten-vs.ch",
+ "canton":"Kanton Wallis",
+ "domain":"loetschen.ch",
"mx":[
- "blattenvs-ch01i.mail.protection.outlook.com"
+ "loetschen-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.cyon.net -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.protection.cyon.net -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX loetschen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.loetschen.ch CNAME → selector1-loetschen-ch._domainkey.loetschen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.loetschen.ch CNAME → selector2-loetschen-ch._domainkey.loetschen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "loetschen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "blatten-vs.ch"
+ ],
+ "guess":[
+ "blatten.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6193":{
"bfs":"6193",
"name":"Bürchen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"buerchen.ch",
"mx":[
"buerchen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +ip4:185.5.33.226 +ip4:178.174.37.114 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +ip4:185.5.33.226 +ip4:178.174.37.114 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"auto.rhone.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX buerchen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.buerchen.ch CNAME → selector1-buerchen-ch._domainkey.buerchen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.buerchen.ch CNAME → selector2-buerchen-ch._domainkey.buerchen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "buerchen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6194":{
"bfs":"6194",
"name":"Eischoll",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"eischoll.ch",
"mx":[
"eischoll-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all v=spf1 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eischoll-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.eischoll.ch CNAME → selector1-eischoll-ch._domainkey.eischoll.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.eischoll.ch CNAME → selector2-eischoll-ch._domainkey.eischoll.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "eischoll.ch",
+ "skischule-eischoll.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "eischoll.ch"
+ ],
+ "guess":[
+ "eischoll.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6195":{
"bfs":"6195",
"name":"Ferden",
- "canton":"",
- "domain":"ferden.ch",
+ "canton":"Kanton Wallis",
+ "domain":"loetschen.ch",
"mx":[
- "ferden-ch.mail.protection.outlook.com"
+ "loetschen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX loetschen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.loetschen.ch CNAME → selector1-loetschen-ch._domainkey.loetschen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.loetschen.ch CNAME → selector2-loetschen-ch._domainkey.loetschen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "loetschen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6197":{
"bfs":"6197",
"name":"Kippel",
- "canton":"",
- "domain":"kippel.ch",
+ "canton":"Kanton Wallis",
+ "domain":"loetschen.ch",
"mx":[
- "kippel-ch.mail.protection.outlook.com"
+ "loetschen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX loetschen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.loetschen.ch CNAME → selector1-loetschen-ch._domainkey.loetschen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.loetschen.ch CNAME → selector2-loetschen-ch._domainkey.loetschen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "loetschen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6198":{
"bfs":"6198",
"name":"Niedergesteln",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"niedergesteln.ch",
"mx":[
"niedergesteln-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all v=spf1 ip4:78.40.79.211 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX niedergesteln-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "niedergesteln.ch"
+ ],
+ "guess":[
+ "niedergesteln.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6199":{
"bfs":"6199",
"name":"Raron",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"raron.ch",
"mx":[
"raron-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:46.14.118.150 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:46.14.118.150 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX raron-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "raron.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "raron.ch"
+ ],
+ "guess":[
+ "raron.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6201":{
"bfs":"6201",
"name":"Unterbäch",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"unterbaech.ch",
"mx":[
"mx.rhone.ch"
],
"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 25353
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"auto.rhone.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "unterbaech.ch"
+ ],
+ "guess":[
+ "unterbaech.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6202":{
"bfs":"6202",
- "name":"Wiler",
- "canton":"",
+ "name":"Wiler (Lötschen)",
+ "canton":"Kanton Wallis",
"domain":"wilervs.ch",
"mx":[
"wilervs.ch"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 47302
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "wilervs.ch"
+ ],
+ "guess":[
+ "wiler.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6203":{
"bfs":"6203",
"name":"Mörel-Filet",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"moerel-filet.ch",
"mx":[
"moerelfilet-ch01e.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx include:spf.protection.outlook.com +ip4:149.126.6.130/24 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:109.164.212.178 +ip4:51.103.157.97 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx include:spf.protection.outlook.com +ip4:149.126.6.130/24 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:109.164.212.178 +ip4:51.103.157.97 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX moerelfilet-ch01e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "moerel-filet.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "moerel-filet.ch"
+ ],
+ "guess":[
+ "moerel-filet.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6204":{
"bfs":"6204",
@@ -35322,37 +127023,151 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX steghohtenn-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "steg-hohtenn.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "steg-hohtenn.ch"
+ ],
+ "guess":[
+ "steg-hohtenn.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6205":{
"bfs":"6205",
"name":"Bettmeralp",
- "canton":"",
- "domain":"bettmeralp.ch",
+ "canton":"Kanton Wallis",
+ "domain":"gemeinde-bettmeralp.ch",
"mx":[
- "mail.vs-online.net",
- "srv12.jse.ch"
+ "gemeindebettmeralp-ch02b.mail.protection.outlook.com"
],
- "spf":"v=spf1 ip4:82.195.253.109 include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:82.195.253.109 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 1836
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX gemeindebettmeralp-ch02b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "gemeinde-bettmeralp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6211":{
"bfs":"6211",
"name":"Collonges",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"collonges.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -35360,20 +127175,39 @@
],
"spf":"v=spf1 include:clients.ciges.ch ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:clients.ciges.ch ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "collonges.ch"
+ ],
+ "guess":[
+ "collonges.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6212":{
"bfs":"6212",
"name":"Dorénaz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"dorenaz.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -35381,137 +127215,475 @@
],
"spf":"v=spf1 mx include:clients.ciges.ch include:_spf.ch-dns.net ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:clients.ciges.ch include:_spf.ch-dns.net ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "dorenaz.ch"
+ ],
+ "guess":[
+ "dorenaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6213":{
"bfs":"6213",
"name":"Evionnaz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"evionnaz.ch",
"mx":[
"evionnaz-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX evionnaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "evionnaz.ch"
+ ],
+ "guess":[
+ "evionnaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6214":{
"bfs":"6214",
"name":"Finhaut",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"finhaut.ch",
"mx":[
"finhaut-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX finhaut-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "finhaut.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "finhaut.ch"
+ ],
+ "guess":[
+ "finhaut.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6215":{
"bfs":"6215",
"name":"Massongex",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"massongex.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "massongex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "massongex.ch"
+ ],
+ "guess":[
+ "massongex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6217":{
"bfs":"6217",
"name":"Saint-Maurice",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"saint-maurice.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saint-maurice.ch"
+ ],
+ "guess":[
+ "saint-maurice.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6218":{
"bfs":"6218",
"name":"Salvan",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"salvan.ch",
"mx":[
"mail.salvan.ch"
],
"spf":"v=spf1 a mx ~all",
"provider":"independent",
- "mx_asns":[
- 203476
- ]
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "salvan.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "salvan.ch"
+ ],
+ "guess":[
+ "salvan.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6219":{
"bfs":"6219",
"name":"Vernayaz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"vernayaz.ch",
"mx":[
"mailgate2.ti-informatique.com"
],
"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all",
"provider":"independent",
- "mx_asns":[
- 34146
- ],
- "autodiscover":{
- "autodiscover_srv":"webgate.xpertcloud.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vernayaz.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vernayaz.ch"
+ ],
+ "guess":[
+ "vernayaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6220":{
"bfs":"6220",
"name":"Vérossaz",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"verossaz.ch",
"mx":[
"verossaz-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 ip4:194.12.24.67 include:spf.protection.outlook.com -all",
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.12.24.67 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX verossaz-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "verossaz.ch"
+ ],
+ "guess":[
+ "verossaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6232":{
"bfs":"6232",
"name":"Chalais",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"chalais.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -35519,53 +127691,181 @@
],
"spf":"v=spf1 include:clients.ciges.ch ip4:128.65.195.32 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:clients.ciges.ch ip4:128.65.195.32 ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chalais.ch"
+ ],
+ "guess":[
+ "chalais.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6235":{
"bfs":"6235",
"name":"Chippis",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"chippis.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
"mx2-eu1.ppe-hosted.com"
],
"spf":"v=spf1 include:clients.ciges.ch include:spf.infomaniak.com ~all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:clients.ciges.ch include:spf.infomaniak.com ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:185.132.182.137 v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[
+ "chippis.ch",
+ "flex.studio"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chippis.ch"
+ ],
+ "guess":[
+ "chippis.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6238":{
"bfs":"6238",
"name":"Grône",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"grone.ch",
"mx":[
"grone-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grone-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grone.ch"
+ ],
+ "guess":[
+ "grone.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6239":{
"bfs":"6239",
@@ -35577,109 +127877,326 @@
],
"spf":"v=spf1 a mx ip4:217.196.176.0/20 include:relay.mailchannels.net include:spf.antispamcloud.com include:newsletter.infomaniak.com include:mailgun.org ?all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx ip4:217.196.176.0/20 include:relay.mailchannels.net include:spf.antispamcloud.com include:newsletter.infomaniak.com include:mailgun.org ?all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:130.117.251.9 ip4:130.117.251.10 ip6:2001:978:2:6::20:10 ip6:2001:978:2:6::20:a ip4:94.75.244.176/27 ip4:94.75.192.139/27 ip4:95.211.2.195/26 ip4:95.211.2.198/26 ip4:95.211.2.199/26 ip4:95.211.2.201/26 ip4:95.211.2.202/26 ip4:95.211.2.204/26 ip4:94.75.244.183/27 ip4:94.75.244.184/27 ip6:2001:1af8:4400:a047:6::1 ip4:37.58.58.55/27 ip4:199.115.117.7/27 ip4:199.115.117.10/27 ip4:199.115.117.11/27 ip6:2604:9a00:2010:a024:21::1 ip4:185.201.16.0/22 ip4:192.69.18.0/24 ip4:208.70.90.0/24 ip4:45.91.121.0/24 ip4:45.93.148.0/24 ip4:45.131.180.0/24 ip4:45.140.132.0/24 ip4:193.41.32.0/24 ip4:185.225.27.0/24 ip4:80.91.219.0/24 ip4:188.190.113.0/24 ip4:45.147.95.0/24 ip4:46.229.240.0/24 ip4:87.236.163.0/24 ip4:188.190.112.0/24 ip4:192.69.19.0/24 ip4:208.70.91.0/24 ip4:185.209.51.0/24 ip4:185.218.226.0/24 -all v=spf1 include:amazonses.com ?all v=spf1 include:_spf.mailgun.org include:_spf.eu.mailgun.org -all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all v=spf1 include:_spf1.mailgun.org include:_spf2.mailgun.org ~all v=spf1 ip4:141.193.32.0/23 ip4:159.135.140.80/29 ip4:159.135.132.128/25 ip4:161.38.204.0/22 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:143.55.236.0/22 ip4:198.244.60.0/22 ip4:204.220.160.0/21 ~all v=spf1 ip4:209.61.151.0/24 ip4:166.78.68.0/22 ip4:198.61.254.0/23 ip4:192.237.158.0/23 ip4:23.253.182.0/23 ip4:104.130.96.0/28 ip4:146.20.113.0/24 ip4:146.20.191.0/24 ip4:159.135.224.0/20 ip4:69.72.32.0/20 ~all v=spf1 ip4:104.130.122.0/23 ip4:146.20.112.0/26 ip4:161.38.192.0/20 ip4:143.55.224.0/21 ip4:143.55.232.0/22 ip4:159.112.240.0/20 ip4:198.244.48.0/20 ip4:204.220.168.0/21 ip4:204.220.176.0/20 ~all",
- "mx_asns":[
- 15547
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.cransmontana.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "icogne.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "icogne.ch"
+ ],
+ "guess":[
+ "icogne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6240":{
"bfs":"6240",
"name":"Lens",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"lens.ch",
"mx":[
"mail2.pcprofi.ch"
],
"spf":"v=spf1 a mx a:mail2.pcprofi.ch ip4:81.88.178.30 ip4:81.88.178.21 ip4:81.88.178.32 ~all",
"provider":"independent",
- "mx_asns":[
- 15547
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "cransmontana.ch",
+ "lens.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lens.ch"
+ ],
+ "guess":[
+ "lens.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6246":{
"bfs":"6246",
"name":"Saint-Léonard",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"st-leonard.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "st-leonard.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "st-leonard.ch"
+ ],
+ "guess":[
+ "saint-leonard.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6248":{
"bfs":"6248",
- "name":"Siders",
- "canton":"",
+ "name":"Sierre",
+ "canton":"Kanton Wallis",
"domain":"sierre.ch",
"mx":[
"mail2.pcprofi.ch"
],
"spf":"v=spf1 mx ip4:81.88.178.21 ip4:195.141.89.158 ip4:91.208.173.157 ip4:81.88.178.3 ip4:213.221.157.218 ip4:213.221.157.222 ~all",
"provider":"independent",
- "mx_asns":[
- 15547
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "sierre.ch"
+ ],
+ "guess":[
+ "sierre.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6252":{
"bfs":"6252",
"name":"Anniviers",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"anniviers.org",
"mx":[
"mx1-eu1.ppe-hosted.com",
"mx2-eu1.ppe-hosted.com"
],
"spf":"v=spf1 include:clients.ciges.ch include:spf1.ne.ch include:spf.infomaniak.ch ~all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:clients.ciges.ch include:spf1.ne.ch include:spf.infomaniak.ch ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:148.196.30.0/24 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.132.182.137 v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":85.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.anniviers.org CNAME → selector1-anniviers-org._domainkey.communeanniviers.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.anniviers.org CNAME → selector2-anniviers-org._domainkey.communeanniviers.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "anniviers.org"
+ ],
+ "guess":[
+ "anniviers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6253":{
"bfs":"6253",
"name":"Crans-Montana",
- "canton":"",
- "domain":"crans-montana.ch",
+ "canton":"Kanton Wallis",
+ "domain":"cransmontana.ch",
"mx":[
"mail2.pcprofi.ch"
],
- "spf":"v=spf1 mx include:sprecw.crans-montana.ch include:sprecy.crans-montana.ch include:sprecz.crans-montana.ch include:wlk-msg.de ip4:81.88.178.21 ip4:81.88.178.32 ip4:212.40.24.243 ip4:212.40.24.250 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx include:sprecw.crans-montana.ch include:sprecy.crans-montana.ch include:sprecz.crans-montana.ch include:wlk-msg.de ip4:81.88.178.21 ip4:81.88.178.32 ip4:212.40.24.243 ip4:212.40.24.250 -all v=spf1 ip4:141.101.62.30 ip4:80.74.64.73 ip4:141.101.63.79 ip4:141.101.62.117 ip4:141.101.62.141 ip4:141.101.63.193 ip4:185.4.45.19 ip4:185.4.44.101 ip4:46.140.40.86 ip4:80.74.64.0/24 -all v=spf1 ip4:40.107.0.0/16 ip4:52.100.0.0/14 ip4:104.47.0.0/17 ip4:51.4.72.0/24 ip4:51.5.72.0/24 ip4:51.5.80.0/27 ip4:20.47.149.138/32 ip4:51.4.80.0/27 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:40.92.0.0/15 -all v=spf1 ip4:80.80.224.0/20 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.8.0/21 ip6:2a01:4180:4050:0800::/64 ip6:2a01:4180:4051:0400::/64 ip6:2a01:4180:4050:0400::/64 ip6:2a01:4180:4051:0800::/64 ip6:2a01:111:f403::/48 ip6:2a01:111:f400::/48 -all v=spf1 include:spf.wlk-msg.de include:spf-elphi.wlk-msg.de ip4:217.6.38.226 ip4:159.69.44.7 ip6:2a01:4f8:1c1b:4f61::1 ip4:157.90.144.206 ip6:2a01:4f8:c012:25c4::1 ip4:167.235.227.109 ip6:2a01:4f8:c013:3524::1 exists:%{ir}.wlk-msg.de ~all v=spf1 ip4:157.90.106.72/29 ip4:65.21.175.112/29 ip4:144.76.214.104/29 ip4:95.217.249.104/29 ip4:159.69.211.13 ip4:116.203.67.44 ip4:116.202.190.65 ip4:65.21.1.233 ip4:95.216.162.104 ip4:65.108.54.221 v=spf1 ip4:116.203.244.120 ip4:5.75.134.60 ip4:5.75.154.78 ip4:5.75.164.247 ip4:5.75.164.62 ip4:168.119.54.106 ip4:49.12.189.47 ip4:5.75.240.224 ip4:78.47.148.193 ip4:168.119.254.221",
- "mx_asns":[
- 15547
- ]
+ "spf":"v=spf1 mx a:mail2.pcprofi.ch ip4:81.88.178.21 ip4:81.88.178.3 ip4:213.221.147.3 ip4:77.235.50.204 ip4:153.109.157.140 ip4:153.109.10.232 include:eu.mailgun.org ~all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cransmontana.ch"
+ ],
+ "redirect":[],
+ "wikidata":[],
+ "guess":[
+ "crans-montana.ch",
+ "cransmontana.ch",
+ "stadt-crans-montana.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6254":{
"bfs":"6254",
"name":"Noble-Contrée",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"noble-contree.ch",
"mx":[
"noblecontree-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mailpro.com include:ti-informatique.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.mailpro.com include:ti-informatique.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:178.239.38.0/24 ip4:62.133.56.0/24 ip4:62.50.74.80/28 ip4:62.50.73.144/28 ip4:62.50.76.40/29 ip4:62.50.76.16/28 ip4:195.81.131.64/27 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip6:2a06:fa00::/29 -all v=spf1 mx a -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX noblecontree-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "noble-contree.ch"
+ ],
+ "guess":[
+ "noble-contree.ch",
+ "noblecontree.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6261":{
"bfs":"6261",
@@ -35692,20 +128209,57 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:clients.ciges.ch ip4:128.65.195.26 ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:clients.ciges.ch ip4:128.65.195.26 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"us-cloud",
+ "classification_confidence":97.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.arbaz.ch CNAME → selector1-arbaz-ch._domainkey.communearbaz.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.arbaz.ch CNAME → selector2-arbaz-ch._domainkey.communearbaz.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "arbaz.ch"
+ ],
+ "guess":[
+ "arbaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6263":{
"bfs":"6263",
"name":"Grimisuat",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"grimisuat.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -35713,20 +128267,53 @@
],
"spf":"v=spf1 include:clients.ciges.ch ip4:128.65.195.35 include:spf.mailpro.com include:spf.infomaniak.ch ~all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:clients.ciges.ch ip4:128.65.195.35 include:spf.mailpro.com include:spf.infomaniak.ch ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:178.239.38.0/24 ip4:62.133.56.0/24 ip4:62.50.74.80/28 ip4:62.50.73.144/28 ip4:62.50.76.40/29 ip4:62.50.76.16/28 ip4:195.81.131.64/27 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip6:2a06:fa00::/29 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.132.182.137 v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":70.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[
+ "grimisuat.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "grimisuat.ch"
+ ],
+ "guess":[
+ "grimisuat.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6265":{
"bfs":"6265",
"name":"Savièse",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"saviese.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
@@ -35734,36 +128321,82 @@
],
"spf":"v=spf1 mx include:clients.ciges.ch ip4:128.65.195.28 include:spf.mailpro.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:clients.ciges.ch ip4:128.65.195.28 include:spf.mailpro.com ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:178.239.38.0/24 ip4:62.133.56.0/24 ip4:62.50.74.80/28 ip4:62.50.73.144/28 ip4:62.50.76.40/29 ip4:62.50.76.16/28 ip4:195.81.131.64/27 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip6:2a06:fa00::/29 -all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "saviese.ch"
+ ],
+ "guess":[
+ "saviese.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6266":{
"bfs":"6266",
- "name":"Sitten",
- "canton":"",
+ "name":"Sion",
+ "canton":"Kanton Wallis",
"domain":"sion.ch",
"mx":[
"mx1-eu1.ppe-hosted.com",
"mx2-eu1.ppe-hosted.com"
],
"spf":"v=spf1 include:clients.ciges.ch include:_spf.i-web.ch include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:servers.mcsv.net ~all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:clients.ciges.ch include:_spf.i-web.ch include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:servers.mcsv.net ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover16.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[
+ "sion.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "sion.ch"
+ ],
+ "guess":[
+ "sion.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6267":{
"bfs":"6267",
@@ -35776,51 +128409,208 @@
],
"spf":"v=spf1 mx include:clients.ciges.ch ip4:160.153.18.103 ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx include:clients.ciges.ch ip4:160.153.18.103 ~all v=spf1 a:dispatch-eu.ppe-hosted.com include:spf-000faf01.pphosted.com ip4:213.221.152.160/27 ip4:213.221.155.128/29 ip4:81.88.179.14 ~all v=spf1 ip4:185.132.182.137",
- "gateway":"proofpoint",
- "mx_asns":[
- 52129
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"ex.ciges.ch",
- "autodiscover_srv":"ex.ciges.ch"
- }
+ "gateway":"proofpoint",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "veysonnaz.org"
+ ],
+ "guess":[
+ "veysonnaz.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6281":{
"bfs":"6281",
"name":"Baltschieder",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"baltschieder.ch",
"mx":[
"baltschieder-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX baltschieder-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "baltschieder.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "baltschieder.ch"
+ ],
+ "guess":[
+ "baltschieder.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6282":{
"bfs":"6282",
"name":"Eisten",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"eisten.ch",
"mx":[
"eisten-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:149.126.0.51 +ip4:81.201.202.0/26 +ip4:81.201.204.212 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:149.126.0.51 +ip4:81.201.202.0/26 +ip4:81.201.204.212 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX eisten-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "eisten.ch"
+ ],
+ "guess":[
+ "eisten.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6283":{
"bfs":"6283",
@@ -35832,28 +128622,182 @@
],
"spf":"v=spf1 ip4:178.174.29.254 a:embd.ch mx include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:178.174.29.254 a:embd.ch mx include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"lx67.hoststar.hosting"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX embd-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "embd.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "embd.ch"
+ ],
+ "guess":[
+ "embd.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6285":{
"bfs":"6285",
"name":"Grächen",
"canton":"Kanton Wallis",
- "domain":"gemeinde-graechen.ch",
- "mx":[
- "mail.gemeinde-graechen.ch"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 21069
- ]
+ "domain":"graechen.ch",
+ "mx":[
+ "graechen-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 a mx ip4:109.164.212.170 ip4:109.164.212.171 ip4:109.164.212.172 ip4:109.164.212.173 ip4:109.164.212.174 include:_spf.sui-inter.net include:spf.mailjet.com include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX graechen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.graechen.ch CNAME → selector1-graechen-ch._domainkey.graechen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.graechen.ch CNAME → selector2-graechen-ch._domainkey.graechen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "graechen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6286":{
"bfs":"6286",
@@ -35865,121 +128809,661 @@
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:mx.dvbern.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:mx.dvbern.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:185.125.165.24/31 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lalden-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lalden.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lalden.ch"
+ ],
+ "guess":[
+ "lalden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6287":{
"bfs":"6287",
"name":"Randa",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"randa.ch",
"mx":[
"randa-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:194.150.248.202 include:_spf.tophost.ch ip4:62.204.96.89 include:relay.mailchannels.net include:_spf.createsend.com ip4:194.150.248.63 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:194.150.248.202 include:_spf.tophost.ch ip4:62.204.96.89 include:relay.mailchannels.net include:_spf.createsend.com ip4:194.150.248.63 include:spf.protection.outlook.com -all v=spf1 ip4:194.150.248.0/23 ip4:193.33.129.128/25 ip4:193.33.128.128/25 ip4:46.232.182.128/25 ip6:2a02:6201:2ee8:b680::/64 ~all v=spf1 ip4:23.83.208.0/20 ip4:35.85.190.185/32 ~all v=spf1 ip4:103.28.42.0/24 ip4:146.88.28.0/24 ip4:163.47.180.0/22 ip4:203.55.21.0/24 ip4:204.75.142.0/24 ip4:27.126.146.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"cpanelemaildiscovery.cpanel.net"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX randa-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "randa.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "randa.ch"
+ ],
+ "guess":[
+ "randa.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6288":{
"bfs":"6288",
"name":"Saas-Almagell",
- "canton":"",
- "domain":"saas-almagell.org",
- "mx":[
- "mail2.i-web.ch",
- "mail3.i-web.ch"
- ],
- "spf":"",
- "provider":"swiss-isp",
- "mx_asns":[
- 3303
+ "canton":"Kanton Wallis",
+ "domain":"3905.ch",
+ "mx":[
+ "3905-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 ip4:212.41.213.109 ip4:212.120.41.204 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX 3905-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.3905.ch CNAME → selector1-3905-ch._domainkey.gemeindesaasalmagell3905.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.3905.ch CNAME → selector2-3905-ch._domainkey.gemeindesaasalmagell3905.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "3905.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saas-almagell.org"
+ ],
+ "guess":[
+ "saas-almagell.ch",
+ "saasalmagell.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"6289":{
"bfs":"6289",
"name":"Saas-Balen",
- "canton":"",
- "domain":"gemeinde-saas-balen.ch",
- "mx":[
- "mail.gemeinde-saas-balen.ch"
- ],
- "spf":"",
- "provider":"independent",
- "mx_asns":[
- 21069
- ]
+ "canton":"Kanton Wallis",
+ "domain":"3908.ch",
+ "mx":[
+ "3908-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 +ip4:212.90.219.242 +ip4:212.90.219.241 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX 3908-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "3908.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6290":{
"bfs":"6290",
"name":"Saas-Fee",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"3906.ch",
"mx":[
"3906-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.computech.ch +a +mx -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.computech.ch +a +mx -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:212.103.88.149/32 ip4:212.41.202.247/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com",
- "autodiscover_srv":"owa.3906.ch"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX 3906-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.3906.ch CNAME → selector1-3906-ch._domainkey.3906.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.3906.ch CNAME → selector2-3906-ch._domainkey.3906.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "3906.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "3906.ch"
+ ],
+ "guess":[
+ "saas-fee.ch",
+ "saasfee.ch"
+ ]
+ },
+ "resolve_flags":[
+ "website_mismatch"
+ ]
},
"6291":{
"bfs":"6291",
"name":"Saas-Grund",
- "canton":"",
- "domain":"saas-grund.ch",
- "mx":[
- "saasgrund-ch01b.mail.protection.outlook.com"
- ],
- "spf":"v=spf1 include:spf.protection.outlook.com -all",
- "provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "canton":"Kanton Wallis",
+ "domain":"saas-fee.ch",
+ "mx":[
+ "saasfee-ch01b.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 ip4:81.6.50.0/24 include:_bulk-spf.datasport.com ip4:213.221.250.0/24 ip4:213.221.214.0/24 mx:stpartner.ch include:spf.protection.outlook.com include:spfa.myconvento.com ip4:54.93.36.23 include:amazonses.com include:wlk-msg.de ~all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX saasfee-ch01b.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"aws",
+ "weight":0.2,
+ "detail":"SPF include:amazonses.com matches aws"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.saas-fee.ch CNAME → selector1-saasfee-ch01b._domainkey.saasfeech.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.saas-fee.ch CNAME → selector2-saasfee-ch01b._domainkey.saasfeech.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"aws",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 16509 matches aws"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "saas-fee.ch"
+ ],
+ "redirect":[
+ "saas-fee.ch"
+ ],
+ "wikidata":[
+ "saas-grund.ch"
+ ],
+ "guess":[
+ "saas-grund.ch",
+ "saasgrund.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6292":{
"bfs":"6292",
"name":"St. Niklaus",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"st-niklaus.ch",
"mx":[
"stniklaus-ch0e.mail.protection.outlook.com"
],
"spf":"v=spf1 ip4:81.201.206.242 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 ip4:81.201.206.242 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip4:81.173.80.0/20 ip4:81.173.83.179/32 ip4:81.173.83.181/32 ip4:81.173.83.182/32 ip4:81.173.83.183/32 ip4:81.173.83.184/32 ip4:81.173.83.185/32 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX stniklaus-ch0e.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.st-niklaus.ch CNAME → selector1-stniklaus-ch0e._domainkey.stniklaus.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.st-niklaus.ch CNAME → selector2-stniklaus-ch0e._domainkey.stniklaus.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "st-niklaus.ch"
+ ],
+ "guess":[
+ "st-niklaus.ch",
+ "stniklaus.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6293":{
"bfs":"6293",
- "name":"Stalden",
- "canton":"",
+ "name":"Stalden (VS)",
+ "canton":"Kanton Wallis",
"domain":"stalden.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -35989,93 +129473,376 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.hornetsecurity.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "stalden.ch"
+ ],
+ "guess":[
+ "stalden.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6294":{
"bfs":"6294",
"name":"Staldenried",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"staldenried.ch",
"mx":[
"staldenried-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 mx a ip4:81.201.202.2/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx a ip4:81.201.202.2/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX staldenried-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "staldenried.ch"
+ ],
+ "guess":[
+ "staldenried.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6295":{
"bfs":"6295",
"name":"Täsch",
"canton":"Kanton Wallis",
- "domain":"gemeinde-taesch.ch",
+ "domain":"taesch.ch",
"mx":[
- "gemeindetaesch-ch02b.mail.protection.outlook.com"
+ "taesch-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX taesch-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "taesch.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde-taesch.ch"
+ ],
+ "guess":[
+ "gemeinde-taesch.ch",
+ "taesch.ch",
+ "tsch.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6296":{
"bfs":"6296",
"name":"Törbel",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"toerbel.ch",
"mx":[
"toerbel-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX toerbel-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "toerbel.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "toerbel.ch"
+ ],
+ "guess":[
+ "toerbel.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6297":{
"bfs":"6297",
"name":"Visp",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"visp.ch",
"mx":[
"visp-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":99.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX visp-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "visp.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "visp.ch"
+ ],
+ "guess":[
+ "stadt-visp.ch",
+ "visp.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6298":{
"bfs":"6298",
"name":"Visperterminen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"visperterminen.ch",
"mx":[
"mx01.hornetsecurity.com",
@@ -36085,47 +129852,243 @@
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:83.246.65.0/24 ip4:185.140.204.0/22 ip4:94.100.128.0/20 ip4:81.20.94.0/24 ip4:173.45.18.0/24 ip4:52.62.123.207/32 ip4:52.62.108.212/32 ip4:129.232.203.80/28 ip4:209.172.38.64/27 ip4:108.163.133.224/27 ip4:193.135.100.0/27 ip4:199.27.221.76 ip4:216.46.11.238 ip4:216.46.11.244 ip4:199.27.221.81 ip4:199.27.221.82 ip4:52.62.114.130 ip4:52.62.125.178 ip4:92.54.27.0/24 ip4:174.142.136.160/27 ~all",
- "gateway":"hornetsecurity",
- "mx_asns":[
- 12676,
- 24679,
- 25394
+ "category":"us-cloud",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.hornetsecurity.com"
- }
+ "gateway":"hornetsecurity",
+ "sources_detail":{
+ "scrape":[
+ "heidadorf.ch",
+ "visperterminen.ch"
+ ],
+ "redirect":[
+ "heidadorf.ch"
+ ],
+ "wikidata":[
+ "visperterminen.ch"
+ ],
+ "guess":[
+ "visperterminen.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6299":{
"bfs":"6299",
"name":"Zeneggen",
- "canton":"",
+ "canton":"Kanton Wallis",
"domain":"zeneggen.ch",
"mx":[
"zeneggen-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 a mx ip4:83.173.221.226 ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 a mx ip4:83.173.221.226 ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zeneggen-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.zeneggen.ch CNAME → selector1-zeneggen-ch._domainkey.zeneggen.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.zeneggen.ch CNAME → selector2-zeneggen-ch._domainkey.zeneggen.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zeneggen.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "zeneggen.ch"
+ ],
+ "guess":[
+ "zeneggen.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6300":{
"bfs":"6300",
"name":"Zermatt",
- "canton":"",
- "domain":"gemeinde.zermatt.ch",
- "mx":[
- "mail.vs-online.net"
- ],
- "spf":"v=spf1 ip4:81.201.200.108 ip4:195.141.155.12 ip4:195.141.155.20 ip4:195.141.155.28 -all",
- "provider":"independent",
- "mx_asns":[
- 1836
+ "canton":"Kanton Wallis",
+ "domain":"zermatt.ch",
+ "mx":[
+ "zermatt-ch.mail.protection.outlook.com"
+ ],
+ "spf":"v=spf1 ip4:195.141.155.12 ip4:195.141.155.20 ip4:82.195.253.109 ip4:82.195.229.62 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX zermatt-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "zermatt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "gemeinde.zermatt.ch"
+ ],
+ "guess":[
+ "gemeinde-zermatt.ch",
+ "zermatt.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"6404":{
@@ -36134,12 +130097,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6408":{
"bfs":"6408",
@@ -36147,12 +130155,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6413":{
"bfs":"6413",
@@ -36160,12 +130213,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6416":{
"bfs":"6416",
@@ -36173,12 +130271,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6417":{
"bfs":"6417",
@@ -36186,46 +130329,173 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6421":{
"bfs":"6421",
"name":"La Chaux-de-Fonds",
"canton":"Kanton Neuenburg",
- "domain":"chaux-de-fonds.ch",
+ "domain":"ne.ch",
"mx":[
"ne2mx9a.ne.ch",
"nemx9a.ne.ch"
],
- "spf":"",
- "provider":"swiss-isp",
- "mx_asns":[
- 559
- ]
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6422":{
"bfs":"6422",
"name":"Les Planchettes",
"canton":"Kanton Neuenburg",
- "domain":"les-planchettes.ch",
+ "domain":"ne.ch",
"mx":[
- "filter10.antispamcloud.com",
- "filter20.antispamcloud.com",
- "filter30.antispamcloud.com",
- "filter40.antispamcloud.com"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf.antispamcloud.com ip4:217.196.176.0/20 a mx ~all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.antispamcloud.com ip4:217.196.176.0/20 a mx ~all v=spf1 ip4:130.117.251.9 ip4:130.117.251.10 ip6:2001:978:2:6::20:10 ip6:2001:978:2:6::20:a ip4:94.75.244.176/27 ip4:94.75.192.139/27 ip4:95.211.2.195/26 ip4:95.211.2.198/26 ip4:95.211.2.199/26 ip4:95.211.2.201/26 ip4:95.211.2.202/26 ip4:95.211.2.204/26 ip4:94.75.244.183/27 ip4:94.75.244.184/27 ip6:2001:1af8:4400:a047:6::1 ip4:37.58.58.55/27 ip4:199.115.117.7/27 ip4:199.115.117.10/27 ip4:199.115.117.11/27 ip6:2604:9a00:2010:a024:21::1 ip4:185.201.16.0/22 ip4:192.69.18.0/24 ip4:208.70.90.0/24 ip4:45.91.121.0/24 ip4:45.93.148.0/24 ip4:45.131.180.0/24 ip4:45.140.132.0/24 ip4:193.41.32.0/24 ip4:185.225.27.0/24 ip4:80.91.219.0/24 ip4:188.190.113.0/24 ip4:45.147.95.0/24 ip4:46.229.240.0/24 ip4:87.236.163.0/24 ip4:188.190.112.0/24 ip4:192.69.19.0/24 ip4:208.70.91.0/24 ip4:185.209.51.0/24 ip4:185.218.226.0/24 -all",
- "mx_asns":[
- 16633,
- 43054
- ]
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6423":{
"bfs":"6423",
@@ -36233,12 +130503,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6432":{
"bfs":"6432",
@@ -36246,12 +130561,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6433":{
"bfs":"6433",
@@ -36259,12 +130619,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6434":{
"bfs":"6434",
@@ -36272,12 +130677,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6435":{
"bfs":"6435",
@@ -36285,28 +130735,115 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6436":{
"bfs":"6436",
"name":"Le Locle",
"canton":"Kanton Neuenburg",
- "domain":"lelocle.ch",
+ "domain":"ne.ch",
"mx":[
"ne2mx9a.ne.ch",
"nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch mx a ip4:217.146.49.160/32 ip4:217.146.49.161/32 ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 include:spf1.ne.ch mx a ip4:217.146.49.160/32 ip4:217.146.49.161/32 ~all v=spf1 ip4:148.196.30.0/24 -all",
- "mx_asns":[
- 559
- ]
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6437":{
"bfs":"6437",
@@ -36314,12 +130851,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6451":{
"bfs":"6451",
@@ -36327,16 +130909,61 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6452":{
"bfs":"6452",
- "name":"Cressier",
+ "name":"Cressier (NE)",
"canton":"Kanton Neuenburg",
"domain":"cressier.ch",
"mx":[
@@ -36344,13 +130971,15 @@
],
"spf":"v=spf1 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "override":[
+ "cressier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6455":{
"bfs":"6455",
@@ -36358,12 +130987,57 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6456":{
"bfs":"6456",
@@ -36371,28 +131045,115 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6458":{
"bfs":"6458",
- "name":"Neuenburg",
+ "name":"Neuchâtel",
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
- ],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "mx_asns":[
- 559
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6487":{
"bfs":"6487",
@@ -36400,76 +131161,289 @@
"canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6504":{
"bfs":"6504",
"name":"La Côte-aux-Fées",
- "canton":"",
+ "canton":"Kanton Neuenburg",
"domain":"ne.ch",
"mx":[
- "nemx9a.ne.ch",
- "ne2mx9a.ne.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ~all",
- "provider":"swiss-isp",
- "gateway":"cantonal-ne"
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6511":{
"bfs":"6511",
"name":"Les Verrières",
"canton":"Kanton Neuenburg",
- "domain":"lesverrieres.ch",
+ "domain":"ne.ch",
"mx":[
- "mta-gw.infomaniak.ch"
- ],
- "spf":"v=spf1 include:spf.infomaniak.ch ?all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6512":{
"bfs":"6512",
"name":"Val-de-Travers",
"canton":"Kanton Neuenburg",
- "domain":"val-de-travers.ch",
+ "domain":"ne.ch",
"mx":[
- "mail.val-de-travers.ch"
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "spf":"v=spf1 include:spf.km.blues2.ch include:_spf.ch-dns.net +mx +a -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.km.blues2.ch include:_spf.ch-dns.net +mx +a -all v=spf1 ip4:80.74.158.0/24 ip4:80.74.159.0/24 include:servers.mcsv.net -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all",
- "mx_asns":[
- 21069
- ]
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6513":{
"bfs":"6513",
"name":"Laténa",
"canton":"Kanton Neuenburg",
- "domain":"latena.ch",
+ "domain":"ne.ch",
"mx":[
- "mail.latena.ch"
- ],
- "spf":"v=spf1 include:spf.mail.webland.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mail.webland.ch -all v=spf1 ip4:92.43.217.0/24 ip4:92.43.216.251/32 ip4:195.253.23.0/24 ip4:74.115.48.0/22 -all",
- "mx_asns":[
- 25563
+ "ne2mx9a.ne.ch",
+ "nemx9a.ne.ch"
],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.latena.ch"
- }
+ "spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 559 is Swiss ISP: SWITCH"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "ne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6601":{
"bfs":"6601",
@@ -36481,11 +131455,43 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "aire-la-ville.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "aire-la-ville.ch"
+ ],
+ "guess":[
+ "aire-la-ville.ch",
+ "airelaville.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6602":{
"bfs":"6602",
@@ -36497,11 +131503,46 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "anieres.ch"
+ ],
+ "guess":[
+ "anieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6603":{
"bfs":"6603",
@@ -36513,11 +131554,48 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "avully.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "avully.ch"
+ ],
+ "guess":[
+ "avully.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6604":{
"bfs":"6604",
@@ -36530,10 +131608,35 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "avusy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "avusy.ch"
+ ],
+ "guess":[
+ "avusy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6605":{
"bfs":"6605",
@@ -36546,10 +131649,35 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "bardonnex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bardonnex.ch"
+ ],
+ "guess":[
+ "bardonnex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6606":{
"bfs":"6606",
@@ -36562,10 +131690,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "mairie-bellevue.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mairie-bellevue.ch"
+ ],
+ "guess":[
+ "bellevue.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6607":{
"bfs":"6607",
@@ -36578,17 +131737,65 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:newsletter.infomaniak.com include:spf.infomaniak.com ip4:192.168.253.253 ip4:94.126.20.214 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:newsletter.infomaniak.com include:spf.infomaniak.com ip4:192.168.253.253 ip4:94.126.20.214 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "accompagnerledeuil.ch",
+ "bernex.ch",
+ "codap.org",
+ "galeriedelachampagne.ch",
+ "labrante.ch",
+ "mobilitesenior.ch",
+ "mosaiquetheatre.ch",
+ "navodaya.ch",
+ "superpuck.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "bernex.ch"
+ ],
+ "guess":[
+ "bernex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6608":{
"bfs":"6608",
- "name":"Carouge",
+ "name":"Carouge (GE)",
"canton":"Kanton Genf",
"domain":"carouge.ch",
"mx":[
@@ -36596,14 +131803,48 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch ip4:185.169.94.92 ip4:83.166.142.206 include:spf.infomaniak.ch include:spf.mandrillapp.com ip4:185.177.62.32 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch ip4:185.169.94.92 ip4:83.166.142.206 include:spf.infomaniak.ch include:spf.mandrillapp.com ip4:185.177.62.32 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "carouge.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "carouge.ch"
+ ],
+ "guess":[
+ "carouge.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6609":{
"bfs":"6609",
@@ -36616,10 +131857,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:newsletter.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:newsletter.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cartigny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cartigny.ch"
+ ],
+ "guess":[
+ "cartigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6610":{
"bfs":"6610",
@@ -36632,10 +131904,33 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "celigny.ch"
+ ],
+ "guess":[
+ "celigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6611":{
"bfs":"6611",
@@ -36648,10 +131943,33 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chancy.ch"
+ ],
+ "guess":[
+ "chancy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6612":{
"bfs":"6612",
@@ -36663,11 +131981,40 @@
"mail.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch include:_spf.ville-ge.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch include:_spf.ville-ge.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:spf.protection.outlook.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "chene-bougeries.ch"
+ ],
+ "guess":[
+ "chene-bougeries.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6613":{
"bfs":"6613",
@@ -36679,11 +132026,54 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:newsletter.infomaniak.com include:spf.infomaniak.ch a:iomedia-smtp.infomaniak.ch ip4:83.166.138.97 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:newsletter.infomaniak.com include:spf.infomaniak.ch a:iomedia-smtp.infomaniak.ch ip4:83.166.138.97 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chene-bourg.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chene-bourg.ch"
+ ],
+ "guess":[
+ "chene-bourg.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6614":{
"bfs":"6614",
@@ -36695,11 +132085,42 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.acg-geneve.ch ?all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.acg-geneve.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "choulex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "choulex.ch"
+ ],
+ "guess":[
+ "choulex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6615":{
"bfs":"6615",
@@ -36712,10 +132133,47 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "collex-bossy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "collex-bossy.ch"
+ ],
+ "guess":[
+ "collex-bossy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6616":{
"bfs":"6616",
@@ -36728,13 +132186,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:webext02.i-web.ch ip4:185.54.6.105 -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:webext02.i-web.ch ip4:185.54.6.105 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "collonge-bellerive.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "collonge-bellerive.ch"
+ ],
+ "guess":[
+ "collonge-bellerive.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6617":{
"bfs":"6617",
@@ -36746,14 +132232,46 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com ip4:195.70.27.65 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com ip4:195.70.27.65 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "cologny.ch"
+ ],
+ "guess":[
+ "cologny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6618":{
"bfs":"6618",
@@ -36766,14 +132284,45 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "confignon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "confignon.ch"
+ ],
+ "guess":[
+ "confignon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6619":{
"bfs":"6619",
- "name":"Corsier",
+ "name":"Corsier (GE)",
"canton":"Kanton Genf",
"domain":"corsier.ch",
"mx":[
@@ -36782,13 +132331,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext01.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext01.i-web.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "corsier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "corsier.ch"
+ ],
+ "guess":[
+ "corsier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6620":{
"bfs":"6620",
@@ -36801,14 +132378,45 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:www.dardagny.ch include:spf.infomaniak.com a:newsletter.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:www.dardagny.ch include:spf.infomaniak.com a:newsletter.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "dardagny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "dardagny.ch"
+ ],
+ "guess":[
+ "dardagny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6621":{
"bfs":"6621",
- "name":"Genf",
+ "name":"Genève",
"canton":"Kanton Genf",
"domain":"geneve.ch",
"mx":[
@@ -36816,13 +132424,99 @@
],
"spf":"v=spf1 mx ip4:148.139.0.2 ip4:148.139.0.31 ip4:148.139.1.2 ip4:148.139.1.31 ip4:148.139.2.2 ip4:148.139.3.2 ip4:149.96.13.2 include:spf.protection.outlook.com include:spf.mandrillapp.com ip4:149.96.5.209 include:spf1.geneve.ch ~all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 mx ip4:148.139.0.2 ip4:148.139.0.31 ip4:148.139.1.2 ip4:148.139.1.31 ip4:148.139.2.2 ip4:148.139.3.2 ip4:149.96.13.2 include:spf.protection.outlook.com include:spf.mandrillapp.com ip4:149.96.5.209 include:spf1.geneve.ch ~all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:172.255.62.10/31 ip4:18.159.23.120 ip4:18.185.233.11 ip4:3.74.129.141 ip4:3.74.255.70 ip4:3.120.73.255 ip4:37.98.232.12 ip4:37.98.232.2 ip4:18.196.153.124 ip4:18.197.182.240 ip4:185.170.44.98/31 include:spf2.geneve.ch ~all v=spf1 ip4:185.170.46.198 ip4:185.170.46.98 ip4:193.72.147.138/31 ip4:35.158.169.102 ip4:35.157.167.112 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:193.72.147.140 ip4:193.73.238.120/29 ip4:193.73.238.28 ip4:3.77.143.155 include:spf3.geneve.ch ~all v=spf1 ip4:193.73.238.5 ip4:193.73.238.6 ip4:194.150.21.200/29 ip4:194.158.17.0/26 ip4:194.230.58.47 ip4:195.143.101.0/26 ip4:195.81.131.64/27 ip4:199.127.232.0/22 ip4:199.255.192.0/22 ip4:199.91.136.26 ip4:3.124.93.8 include:spf4.geneve.ch ~all v=spf1 ip4:199.91.136.28 ip4:199.91.137.2 ip4:199.91.137.26 ip4:199.91.139.145 ip4:199.91.139.22 ip4:199.91.139.23 ip4:199.91.139.24 ip4:199.91.140.26 ip4:199.91.140.28 ip4:199.91.141.145 ip4:199.91.141.22/30 include:spf5.geneve.ch ~all v=spf1 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX geneve-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.geneve.ch CNAME → selector1-geneve-ch._domainkey.lavilledegeneve.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.geneve.ch CNAME → selector2-geneve-ch._domainkey.lavilledegeneve.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "geneve.ch"
+ ],
+ "guess":[
+ "geneve.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6622":{
"bfs":"6622",
@@ -36835,10 +132529,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "genthod.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "genthod.ch"
+ ],
+ "guess":[
+ "genthod.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6623":{
"bfs":"6623",
@@ -36851,31 +132576,86 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch a:www.grand-saconnex.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch a:www.grand-saconnex.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"TXT verification matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grand-saconnex.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"6624":{
"bfs":"6624",
- "name":"Gy GE",
+ "name":"Gy",
"canton":"Kanton Genf",
- "domain":"mairie-gy.ch",
+ "domain":"gy.ch",
"mx":[
- "mta-gw.infomaniak.ch"
- ],
- "spf":"v=spf1 include:spf.infomaniak.ch ?all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "mail.acg-geneve.ch",
+ "mail2.acg-geneve.ch"
],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "spf":"v=spf1 include:spf.acg-geneve.ch -all",
+ "provider":"independent",
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "gy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "mairie-gy.ch"
+ ],
+ "guess":[
+ "gy.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6625":{
"bfs":"6625",
@@ -36888,10 +132668,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "hermance.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hermance.ch"
+ ],
+ "guess":[
+ "hermance.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6626":{
"bfs":"6626",
@@ -36904,10 +132715,41 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext03.i-web.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext03.i-web.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "jussy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "jussy.ch"
+ ],
+ "guess":[
+ "jussy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6627":{
"bfs":"6627",
@@ -36920,10 +132762,35 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "laconnex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "laconnex.ch"
+ ],
+ "guess":[
+ "laconnex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6628":{
"bfs":"6628",
@@ -36935,14 +132802,46 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch include:spf.infomaniak.ch ip4:94.103.99.57 ip4:168.245.102.203 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch include:spf.infomaniak.ch ip4:94.103.99.57 ip4:168.245.102.203 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lancy.ch"
+ ],
+ "guess":[
+ "lancy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6629":{
"bfs":"6629",
@@ -36955,10 +132854,33 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "meinier.ch"
+ ],
+ "guess":[
+ "meinier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6630":{
"bfs":"6630",
@@ -36970,14 +132892,46 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com ip4:217.169.130.20 ip4:83.166.138.97 ip4:83.166.149.222 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com ip4:217.169.130.20 ip4:83.166.138.97 ip4:83.166.149.222 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "meyrin.ch"
+ ],
+ "guess":[
+ "meyrin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6631":{
"bfs":"6631",
@@ -36990,13 +132944,38 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:www.onex.ch a:iomedia-smtp.infomaniak.ch a:spf.infomaniak.ch a:spf.mailpro.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:www.onex.ch a:iomedia-smtp.infomaniak.ch a:spf.infomaniak.ch a:spf.mailpro.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "175onex.ch",
+ "aeonex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "onex.ch"
+ ],
+ "guess":[
+ "onex.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6632":{
"bfs":"6632",
@@ -37009,10 +132988,35 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "perly-certoux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "perly-certoux.ch"
+ ],
+ "guess":[
+ "perly-certoux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6633":{
"bfs":"6633",
@@ -37025,13 +133029,42 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:newsletter.infomaniak.com ip4:83.166.138.97 ip4:83.166.143.44 include:_spf.ville-ge.ch include:spf.mandrillapp.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:newsletter.infomaniak.com ip4:83.166.138.97 ip4:83.166.143.44 include:_spf.ville-ge.ch include:spf.mandrillapp.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "plan-les-ouates.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "plan-les-ouates.ch"
+ ],
+ "guess":[
+ "plan-les-ouates.ch",
+ "planlesouates.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6634":{
"bfs":"6634",
@@ -37044,10 +133077,39 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:webext02.i-web.ch include:_spf.ville-ge.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:webext02.i-web.ch include:_spf.ville-ge.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":96.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "pregny-chambesy.ch"
+ ],
+ "guess":[
+ "pregny-chambesy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6635":{
"bfs":"6635",
@@ -37060,10 +133122,33 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:www.presinge.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:www.presinge.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "presinge.ch"
+ ],
+ "guess":[
+ "presinge.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6636":{
"bfs":"6636",
@@ -37076,10 +133161,42 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "giap.ch",
+ "puplinge.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "puplinge.ch"
+ ],
+ "guess":[
+ "puplinge.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6637":{
"bfs":"6637",
@@ -37092,10 +133209,35 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "russin.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "russin.ch"
+ ],
+ "guess":[
+ "russin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6638":{
"bfs":"6638",
@@ -37108,10 +133250,47 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "satigny.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "satigny.ch"
+ ],
+ "guess":[
+ "satigny.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6639":{
"bfs":"6639",
@@ -37124,10 +133303,33 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "soral.ch"
+ ],
+ "guess":[
+ "soral.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6640":{
"bfs":"6640",
@@ -37139,14 +133341,48 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch include:servers.mcsv.net a:newsletter.infomaniak.com ip4:83.166.138.97 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch include:servers.mcsv.net a:newsletter.infomaniak.com ip4:83.166.138.97 -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "thonex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "thonex.ch"
+ ],
+ "guess":[
+ "thonex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6641":{
"bfs":"6641",
@@ -37159,14 +133395,39 @@
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:www.troinex.ch include:spf.infomaniak.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:www.troinex.ch include:spf.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:84.16.68.96 ip4:84.16.68.94 include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:128.65.197.2/31 ip4:84.16.69.64/31 ip6:2001:1600:19::/48 -all v=spf1 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:19::/48 -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "troinex.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "troinex.ch"
+ ],
+ "guess":[
+ "troinex.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6642":{
"bfs":"6642",
- "name":"Vandœuvres",
+ "name":"Vandoeuvres",
"canton":"Kanton Genf",
"domain":"vandoeuvres.ch",
"mx":[
@@ -37175,10 +133436,35 @@
],
"spf":"v=spf1 include:spf.mailjet.com include:spf.wellhosted.ch include:spf.acg-geneve.ch -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:spf.mailjet.com include:spf.wellhosted.ch include:spf.acg-geneve.ch -all v=spf1 ip4:87.253.232.0/21 ip4:185.189.236.0/22 ip4:185.211.120.0/22 ip4:185.250.236.0/22 ip4:45.14.148.0/22 ~all v=spf1 +ip4:185.75.33.0/25 +ip6:2a03:2040:d::/48 ?all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all",
- "mx_asns":[
- 21449
- ]
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vandoeuvres.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vandoeuvres.ch"
+ ],
+ "guess":[
+ "vandoeuvres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6643":{
"bfs":"6643",
@@ -37190,14 +133476,48 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com a:www.vernier.ch a:preprod.vernier.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com a:www.vernier.ch a:preprod.vernier.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "vernier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "vernier.ch"
+ ],
+ "guess":[
+ "vernier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6644":{
"bfs":"6644",
@@ -37209,11 +133529,42 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch a:iomedia-smtp.infomaniak.ch include:spf.infomaniak.ch -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch a:iomedia-smtp.infomaniak.ch include:spf.infomaniak.ch -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "versoix.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "versoix.ch"
+ ],
+ "guess":[
+ "versoix.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6645":{
"bfs":"6645",
@@ -37225,85 +133576,230 @@
"mail2.acg-geneve.ch"
],
"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com -all v=spf1 ip4:91.217.128.30 ip4:91.217.128.31 ip4:91.217.128.130 ip4:91.217.128.131 ip4:91.217.128.132 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 21449
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.acg-geneve.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Federated"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "veyrier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "veyrier.ch"
+ ],
+ "guess":[
+ "veyrier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6702":{
"bfs":"6702",
"name":"Boécourt",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"boecourt.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 include:spf.mandrillapp.com -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 include:spf.mandrillapp.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "boecourt.ch"
+ ],
+ "guess":[
+ "boecourt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6703":{
"bfs":"6703",
"name":"Bourrignon",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"bourrignon.ch",
"mx":[
"mail.bourrignon.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bourrignon.ch"
+ ],
+ "guess":[
+ "bourrignon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6704":{
"bfs":"6704",
- "name":"Châtillon",
- "canton":"",
+ "name":"Châtillon (JU)",
+ "canton":"Kanton Jura",
"domain":"chatillon.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "chatillon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "chatillon.ch"
+ ],
+ "guess":[
+ "chatillon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6706":{
"bfs":"6706",
"name":"Courchapoix",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"courchapoix.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mandrillapp.com -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mandrillapp.com -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.courchapoix.ch CNAME → selector1-courchapoix-ch._domainkey.comcourchapoix.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.courchapoix.ch CNAME → selector2-courchapoix-ch._domainkey.comcourchapoix.onmicrosoft.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "courchapoix.ch"
+ ],
+ "guess":[
+ "courchapoix.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6708":{
"bfs":"6708",
"name":"Courrendlin",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"courrendlin.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37313,18 +133809,25 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ?all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ?all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "courrendlin.ch"
+ ],
+ "guess":[
+ "courrendlin.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6709":{
"bfs":"6709",
"name":"Courroux",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"courroux.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37334,18 +133837,34 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "courroux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "courroux.ch"
+ ],
+ "guess":[
+ "courroux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6710":{
"bfs":"6710",
"name":"Courtételle",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"courtetelle.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37355,18 +133874,32 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "courtetelle.ch"
+ ],
+ "guess":[
+ "courtetelle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6711":{
"bfs":"6711",
- "name":"Delsberg",
- "canton":"",
+ "name":"Delémont",
+ "canton":"Kanton Jura",
"domain":"delemont.ch",
"mx":[
"d313142.a.ess.de.barracudanetworks.com",
@@ -37374,181 +133907,541 @@
],
"spf":"v=spf1 mx ip4:46.140.108.219 ip4:62.2.93.17 ip4:62.2.93.13 ip4:62.2.93.4 include:servers.mcsv.net include:spf.ess.de.barracudanetworks.com include:spf.mandrillapp.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx ip4:46.140.108.219 ip4:62.2.93.17 ip4:62.2.93.13 ip4:62.2.93.4 include:servers.mcsv.net include:spf.ess.de.barracudanetworks.com include:spf.mandrillapp.com -all v=spf1 ip4:205.201.128.0/20 ip4:198.2.128.0/18 ip4:148.105.0.0/16 -all v=spf1 ip4:35.157.190.224/27 ip4:18.185.115.192/26 ip4:18.184.203.224/27 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "gateway":"barracuda",
- "mx_asns":[
- 16509
+ "category":"swiss-based",
+ "classification_confidence":98.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"asn",
+ "provider":"aws",
+ "weight":0.03,
+ "detail":"ASN 16509 matches aws"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
],
- "autodiscover":{
- "autodiscover_srv":"webmail.delemont.ch"
- }
+ "gateway":"barracuda",
+ "sources_detail":{
+ "scrape":[
+ "delemont.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "delemont.ch"
+ ],
+ "guess":[
+ "delemont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6712":{
"bfs":"6712",
"name":"Develier",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"develier.ch",
"mx":[
"develier-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX develier-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.develier.ch CNAME → selector1-develier-ch._domainkey.develier.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.develier.ch CNAME → selector2-develier-ch._domainkey.develier.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "develier.ch"
+ ],
+ "guess":[
+ "develier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6713":{
"bfs":"6713",
"name":"Ederswiler",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"ederswiler.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.blk.ymc.swiss ~all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:_spf.blk.ymc.swiss ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:185.110.152.0/22 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "ederswiler.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "ederswiler.ch"
+ ],
+ "guess":[
+ "ederswiler.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6715":{
"bfs":"6715",
"name":"Mervelier",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"mervelier.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "mervelier.ch"
+ ],
+ "guess":[
+ "mervelier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6716":{
"bfs":"6716",
"name":"Mettembert",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"mettembert.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "mettembert.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6718":{
"bfs":"6718",
"name":"Movelier",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"movelier.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "override":[
+ "movelier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6719":{
"bfs":"6719",
"name":"Pleigne",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"pleigne.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "pleigne.ch"
+ ],
+ "guess":[
+ "pleigne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6721":{
"bfs":"6721",
"name":"Rossemaison",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"rossemaison.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 a mx ip4:51.68.11.207 include:spf.infomaniak.ch ~all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 a mx ip4:51.68.11.207 include:spf.infomaniak.ch ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "rossemaison.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "rossemaison.ch"
+ ],
+ "guess":[
+ "rossemaison.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6722":{
"bfs":"6722",
"name":"Saulcy",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"saulcy.ch",
"mx":[
"saulcy-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX saulcy-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.saulcy.ch CNAME → selector1-saulcy-ch._domainkey.communesaulcy.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.saulcy.ch CNAME → selector2-saulcy-ch._domainkey.communesaulcy.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "saulcy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saulcy.ch"
+ ],
+ "guess":[
+ "saulcy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6724":{
"bfs":"6724",
"name":"Soyhières",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"soyhieres.ch",
"mx":[
"mailfilter.evok.ch"
],
"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 include:spf.mandrillapp.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 include:spf.mandrillapp.com -all v=spf1 ip4:193.33.30.0/23 ip4:185.122.236.0/22 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 203882
- ],
- "autodiscover":{
- "autodiscover_srv":"exchange.evok.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "soyhieres.ch"
+ ],
+ "guess":[
+ "soyhieres.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6729":{
"bfs":"6729",
"name":"Haute-Sorne",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"haute-sorne.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37558,18 +134451,45 @@
],
"spf":"v=spf1 mx a ip4:212.71.120.144/28 ip4:185.98.28.38 include:spf.mandrillapp.com -all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:212.71.120.144/28 ip4:185.98.28.38 include:spf.mandrillapp.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mails.haute-sorne.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "haute-sorne.ch"
+ ],
+ "guess":[
+ "haute-sorne.ch",
+ "hautesorne.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6730":{
"bfs":"6730",
"name":"Val Terbi",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"val-terbi.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37579,36 +134499,79 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "val-terbi.ch"
+ ],
+ "guess":[
+ "val-terbi.ch",
+ "valterbi.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6741":{
"bfs":"6741",
- "name":"Le Bémont",
- "canton":"",
+ "name":"Le Bémont (JU)",
+ "canton":"Kanton Jura",
"domain":"lebemont.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lebemont.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lebemont.ch"
+ ],
+ "guess":[
+ "lebemont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6742":{
"bfs":"6742",
"name":"Les Bois",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"lesbois.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37618,14 +134581,25 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.109 ip4:212.71.120.144/28 ~all",
"provider":"independent",
- "mx_asns":[
- 34271
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lesbois.ch"
+ ],
+ "guess":[
+ "lesbois.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6743":{
"bfs":"6743",
"name":"Les Breuleux",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"breuleux.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37635,106 +134609,269 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 ip4:212.71.120.144/28 ~all",
"provider":"independent",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":92.0,
+ "classification_signals":[
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "breuleux.ch"
+ ],
+ "guess":[]
+ },
+ "resolve_flags":[]
},
"6745":{
"bfs":"6745",
"name":"Les Enfers",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"lesenfers.ch",
"mx":[
"mail.lesenfers.ch"
],
"spf":"v=spf1 include:_spf.kreativmedia.ch ip4:212.71.120.144/28 +mx +a -all",
"provider":"independent",
- "spf_resolved":"v=spf1 include:_spf.kreativmedia.ch ip4:212.71.120.144/28 +mx +a -all v=spf1 ip4:46.231.200.0/21 ip4:80.74.128.0/19 ip4:94.126.16.0/21 ip4:185.46.56.0/22 ip6:2a00:1128::/32 -all",
- "mx_asns":[
- 21069
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lesenfers.ch"
+ ],
+ "guess":[
+ "lesenfers.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6748":{
"bfs":"6748",
- "name":"Les Genevez",
- "canton":"",
+ "name":"Les Genevez (JU)",
+ "canton":"Kanton Jura",
"domain":"lesgenevez.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "lesgenevez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "lesgenevez.ch"
+ ],
+ "guess":[
+ "lesgenevez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6750":{
"bfs":"6750",
- "name":"Lajoux",
- "canton":"",
+ "name":"Lajoux (JU)",
+ "canton":"Kanton Jura",
"domain":"lajoux.ch",
"mx":[
"lajoux-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX lajoux-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "lajoux.ch"
+ ],
+ "guess":[
+ "lajoux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6751":{
"bfs":"6751",
"name":"Montfaucon",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"montfaucon.ch",
"mx":[
"backup.montfaucon.ch",
"mail.montfaucon.ch"
],
"spf":"v=spf1 ip4:5.182.248.186 include:spf.infomaniak.ch include:tizoo.com ip4:5.182.248.144 +a +mx +ip4:212.147.66.228 a:mail.montfaucon.ch a:mtfn.montfaucon.ch a:beesolutions.ch ~all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 ip4:5.182.248.186 include:spf.infomaniak.ch include:tizoo.com ip4:5.182.248.144 +a +mx +ip4:212.147.66.228 a:mail.montfaucon.ch a:mtfn.montfaucon.ch a:beesolutions.ch ~all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:212.147.66.228 +a +mx ip4:5.182.248.3 ip4:5.182.248.4 ip4:5.182.248.140 ip4:5.182.248.144 ip4:5.182.248.148 ip4:5.182.248.151 ip4:5.182.248.160 ip4:5.182.248.166 ip4:5.182.248.176 ip4:5.182.248.183 ip4:5.182.248.132 ip4:212.147.66.247 ip4:212.147.66.245 ip4:212.147.66.246 ip4:5.182.248.11 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_cnames":{
- "mail.montfaucon.ch":"mtfn-nas1.i234.me"
- },
- "mx_asns":[
- 3303,
- 209042
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "montfaucon.ch",
+ "sim-montfaucon.swiss"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "montfaucon.ch"
+ ],
+ "guess":[
+ "montfaucon.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6753":{
"bfs":"6753",
"name":"Muriaux",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"muriaux.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "muriaux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "muriaux.ch"
+ ],
+ "guess":[
+ "muriaux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6754":{
"bfs":"6754",
"name":"Le Noirmont",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"noirmont.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37744,14 +134881,25 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.109 ip4:212.71.120.144/28 ~all",
"provider":"independent",
- "mx_asns":[
- 34271
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "noirmont.ch"
+ ],
+ "guess":[
+ "lenoirmont.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6757":{
"bfs":"6757",
"name":"Saignelégier",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"saignelegier.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37761,68 +134909,205 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.105 ip4:212.71.120.144/28 ~all",
"provider":"independent",
- "mx_asns":[
- 34271
- ]
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "saignelegier.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saignelegier.ch"
+ ],
+ "guess":[
+ "saignelegier.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6758":{
"bfs":"6758",
"name":"Saint-Brais",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"saint-brais.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "saint-brais.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "saint-brais.ch"
+ ],
+ "guess":[
+ "saint-brais.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6759":{
"bfs":"6759",
"name":"Soubey",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"soubey.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "soubey.ch"
+ ],
+ "guess":[
+ "soubey.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6771":{
"bfs":"6771",
"name":"Alle",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"alle.ch",
"mx":[
"alle-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX alle-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.alle.ch CNAME → selector1-alle-ch._domainkey.alleju.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.alle.ch CNAME → selector2-alle-ch._domainkey.alleju.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "alle.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "alle.ch"
+ ],
+ "guess":[
+ "alle.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6774":{
"bfs":"6774",
"name":"Boncourt",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"boncourt.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37831,16 +135116,53 @@
"mx4.azinformatique.ch"
],
"spf":"v=spf1 mx a include:spf.infomaniak.ch ip4:46.140.242.148 ip4:46.140.242.150 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx a include:spf.infomaniak.ch ip4:46.140.242.148 ip4:46.140.242.150 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34271
- ]
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "boncourt.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "boncourt.ch"
+ ],
+ "guess":[
+ "boncourt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6778":{
"bfs":"6778",
"name":"Bure",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"bure.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37850,127 +135172,548 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ?all",
"provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ?all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":94.0,
+ "classification_signals":[
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "bure.ch"
+ ],
+ "guess":[
+ "bure.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6781":{
"bfs":"6781",
"name":"Coeuve",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"coeuve.ch",
"mx":[
"coeuve-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX coeuve-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.coeuve.ch CNAME → selector1-coeuve-ch._domainkey.coeuve.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.coeuve.ch CNAME → selector2-coeuve-ch._domainkey.coeuve.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "coeuve.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "coeuve.ch"
+ ],
+ "guess":[
+ "coeuve.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6782":{
"bfs":"6782",
"name":"Cornol",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"cornol.ch",
"mx":[
"cornol-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch ip4:212.71.120.144/28 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX cornol-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.cornol.ch CNAME → selector1-cornol-ch._domainkey.cornol.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.cornol.ch CNAME → selector2-cornol-ch._domainkey.cornol.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "cornol.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "cornol.ch"
+ ],
+ "guess":[
+ "cornol.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6783":{
"bfs":"6783",
"name":"Courchavon",
- "canton":"",
- "domain":"courchavon-mormont.ch",
+ "canton":"Kanton Jura",
+ "domain":"courchavon.ch",
"mx":[
- "mx1.mail.hostpoint.ch",
- "mx2.mail.hostpoint.ch"
- ],
- "spf":"v=spf1 redirect=spf.mail.hostpoint.ch",
- "provider":"independent",
- "spf_resolved":"v=spf1 redirect=spf.mail.hostpoint.ch v=spf1 +ip4:217.26.49.128/25 +ip6:2a00:d70:0:e::/64 +ip4:217.26.63.0/24 +ip6:2a00:d70:0:12::/64 +ip4:217.26.50.0/23 +ip4:217.26.52.0/23 +ip4:217.26.54.0/23 +ip4:217.26.58.0/23 +ip6:2a00:d70:0:b::/64 -all",
- "mx_asns":[
- 29097
+ "courchavon-ch.mail.protection.outlook.com"
],
- "autodiscover":{
- "autodiscover_cname":"autoconfig-nonssl.mail.hostpoint.ch"
- }
+ "spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX courchavon-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.courchavon.ch CNAME → selector1-courchavon-ch._domainkey.courchavon.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.courchavon.ch CNAME → selector2-courchavon-ch._domainkey.courchavon.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "courchavon.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "courchavon-mormont.ch"
+ ],
+ "guess":[
+ "courchavon.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
+ ]
},
"6784":{
"bfs":"6784",
"name":"Courgenay",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"courgenay.ch",
"mx":[
"courgenay-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all v=spf1 ip4:195.65.10.12 ip4:195.65.10.13 -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX courgenay-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "courgenay.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "courgenay.ch"
+ ],
+ "guess":[
+ "courgenay.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6785":{
"bfs":"6785",
"name":"Courtedoux",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"courtedoux.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch ?all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "courtedoux.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "courtedoux.ch"
+ ],
+ "guess":[
+ "courtedoux.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6789":{
"bfs":"6789",
"name":"Fahy",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"fahy.ch",
"mx":[
"fahy-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX fahy-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.fahy.ch CNAME → selector1-fahy-ch._domainkey.communefahy.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.fahy.ch CNAME → selector2-fahy-ch._domainkey.communefahy.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "fahy.ch"
+ ],
+ "guess":[
+ "fahy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6790":{
"bfs":"6790",
"name":"Fontenais",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"fontenais.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -37979,37 +135722,133 @@
"mx4.azinformatique.ch"
],
"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx a ip4:185.98.28.97 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_srv":"autodiscover.fontenais.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "fontenais.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "fontenais.ch"
+ ],
+ "guess":[
+ "fontenais.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6792":{
"bfs":"6792",
- "name":"Grandfontaine JU",
- "canton":"",
+ "name":"Grandfontaine",
+ "canton":"Kanton Jura",
"domain":"grandfontaine.ch",
"mx":[
"grandfontaine-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX grandfontaine-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.grandfontaine.ch CNAME → selector1-grandfontaine-ch._domainkey.gfontaine.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.grandfontaine.ch CNAME → selector2-grandfontaine-ch._domainkey.gfontaine.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "grandfontaine.ch"
+ ],
+ "guess":[
+ "grandfontaine.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6800":{
"bfs":"6800",
- "name":"Pruntrut",
- "canton":"",
+ "name":"Porrentruy",
+ "canton":"Kanton Jura",
"domain":"porrentruy.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -38018,73 +135857,281 @@
"mx4.azinformatique.ch"
],
"spf":"v=spf1 mx a include:spf.infomaniak.ch ip4:46.140.242.148 ip4:46.140.242.150 -all",
- "provider":"independent",
- "spf_resolved":"v=spf1 mx a include:spf.infomaniak.ch ip4:46.140.242.148 ip4:46.140.242.150 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mail.porrentruy.ch"
- }
+ "provider":"infomaniak",
+ "category":"swiss-based",
+ "classification_confidence":50.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "porrentruy.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "porrentruy.ch"
+ ],
+ "guess":[
+ "porrentruy.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6806":{
"bfs":"6806",
"name":"Vendlincourt",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"vendlincourt.ch",
"mx":[
"vendlincourt-ch.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX vendlincourt-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.vendlincourt.ch CNAME → selector1-vendlincourt-ch._domainkey.vendlincourt.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.vendlincourt.ch CNAME → selector2-vendlincourt-ch._domainkey.vendlincourt.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "vendlincourt.ch"
+ ],
+ "guess":[
+ "vendlincourt.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6807":{
"bfs":"6807",
"name":"Basse-Allaine",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"basse-allaine.ch",
"mx":[
"basseallaine-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX basseallaine-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.basse-allaine.ch CNAME → selector1-basseallaine-ch01c._domainkey.communedebasseallaine.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.basse-allaine.ch CNAME → selector2-basseallaine-ch01c._domainkey.communedebasseallaine.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "basse-allaine.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "basse-allaine.ch"
+ ],
+ "guess":[
+ "basse-allaine.ch",
+ "basseallaine.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6808":{
"bfs":"6808",
"name":"Clos du Doubs",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"closdudoubs.ch",
"mx":[
"mta-gw.infomaniak.ch"
],
"spf":"v=spf1 include:spf.infomaniak.ch -all",
"provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
- ],
- "autodiscover":{
- "autodiscover_cname":"infomaniak.com"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"MX mta-gw.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "closdudoubs.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "closdudoubs.ch"
+ ],
+ "guess":[
+ "clos-du-doubs.ch",
+ "closdudoubs.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6809":{
"bfs":"6809",
"name":"Haute-Ajoie",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"hauteajoie.ch",
"mx":[
"mx1.azinformatique.ch",
@@ -38094,82 +136141,391 @@
],
"spf":"v=spf1 mx a ip4:185.98.28.97 ~all",
"provider":"independent",
- "mx_asns":[
- 34271
- ],
- "autodiscover":{
- "autodiscover_cname":"mailsju.azinformatique.ch"
- }
+ "category":"swiss-based",
+ "classification_confidence":90.0,
+ "classification_signals":[],
+ "sources_detail":{
+ "scrape":[
+ "hauteajoie.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "hauteajoie.ch"
+ ],
+ "guess":[
+ "hauteajoie.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6810":{
"bfs":"6810",
"name":"La Baroche",
- "canton":"",
- "domain":"baroche.ch",
+ "canton":"Kanton Jura",
+ "domain":"labaroche.ch",
"mx":[
- "mta-gw.infomaniak.ch"
+ "labaroche-ch.mail.protection.outlook.com"
],
- "spf":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com ?all",
- "provider":"infomaniak",
- "spf_resolved":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com ?all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 29222
+ "spf":"v=spf1 include:spf.protection.outlook.com -all",
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX labaroche-ch.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.labaroche.ch CNAME → selector1-labaroche-ch._domainkey.labaroche.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.labaroche.ch CNAME → selector2-labaroche-ch._domainkey.labaroche.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[
+ "labaroche.ch"
+ ],
+ "wikidata":[
+ "baroche.ch"
+ ],
+ "guess":[
+ "labaroche.ch"
+ ]
+ },
+ "resolve_flags":[
+ "sources_disagree"
]
},
"6811":{
"bfs":"6811",
"name":"Damphreux-Lugnez",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"damphreux-lugnez.ch",
"mx":[
"damphreuxlugnez-ch02c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:45.157.188.8/29 ip4:185.125.25.8/29 ip4:83.166.143.168/29 ip4:84.16.66.168/29 ip4:128.65.197.100 ip4:128.65.197.101 ip6:2001:1600:4:17::/64 ip6:2001:1600:7:10::/64 ip6:2001:1600:4:2d::c565 ip6:2001:1600:7:10::c564 ip4:185.125.25.16/29 ip4:45.157.188.16/29 ip4:84.16.66.176/29 ip4:83.166.143.176/29 ip6:2001:1600:19::/48 ip4:84.16.69.64/31 ip4:128.65.197.2/31 include:newsletter.infomaniak.com -all v=spf1 include:amazonses.com ?all v=spf1 ip4:199.255.192.0/22 ip4:199.127.232.0/22 ip4:54.240.0.0/18 ip4:69.169.224.0/20 ip4:23.249.208.0/20 ip4:23.251.224.0/19 ip4:76.223.176.0/20 ip4:54.240.64.0/18 ip4:76.223.128.0/19 ip4:216.221.160.0/19 ip4:206.55.144.0/20 ip4:24.110.64.0/18 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX damphreuxlugnez-ch02c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"infomaniak",
+ "weight":0.2,
+ "detail":"SPF include:spf.infomaniak.ch matches infomaniak"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.damphreux-lugnez.ch CNAME → selector1-damphreuxlugnez-ch02c._domainkey.damphreux.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.damphreux-lugnez.ch CNAME → selector2-damphreuxlugnez-ch02c._domainkey.damphreux.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"google",
+ "weight":0.07,
+ "detail":"TXT verification matches google"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[
+ "damphreux-lugnez.ch"
+ ],
+ "redirect":[],
+ "wikidata":[
+ "damphreux-lugnez.ch"
+ ],
+ "guess":[
+ "damphreux-lugnez.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6812":{
"bfs":"6812",
"name":"Basse-Vendline",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"basse-vendline.ch",
"mx":[
"bassevendline-ch01c.mail.protection.outlook.com"
],
"spf":"v=spf1 include:spf.protection.outlook.com -all",
"provider":"microsoft",
- "spf_resolved":"v=spf1 include:spf.protection.outlook.com -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all",
- "mx_asns":[
- 8075
- ],
- "autodiscover":{
- "autodiscover_cname":"autodiscover.outlook.com"
- }
+ "category":"us-cloud",
+ "classification_confidence":100.0,
+ "classification_signals":[
+ {
+ "kind":"mx",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"MX bassevendline-ch01c.mail.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector1._domainkey.basse-vendline.ch CNAME → selector1-bassevendline-ch01c._domainkey.bassevendline.onmicrosoft.com"
+ },
+ {
+ "kind":"dkim",
+ "provider":"microsoft",
+ "weight":0.15,
+ "detail":"DKIM selector2._domainkey.basse-vendline.ch CNAME → selector2-bassevendline-ch01c._domainkey.bassevendline.onmicrosoft.com"
+ },
+ {
+ "kind":"autodiscover",
+ "provider":"microsoft",
+ "weight":0.08,
+ "detail":"autodiscover CNAME → autodiscover.outlook.com"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"asn",
+ "provider":"microsoft",
+ "weight":0.03,
+ "detail":"ASN 8075 matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "basse-vendline.ch"
+ ],
+ "guess":[
+ "basse-vendline.ch",
+ "bassevendline.ch"
+ ]
+ },
+ "resolve_flags":[]
},
"6831":{
"bfs":"6831",
"name":"Moutier",
- "canton":"",
+ "canton":"Kanton Jura",
"domain":"moutier.ch",
"mx":[
"mail.moutier.ch"
],
"spf":"v=spf1 +a +mx +ip4:62.202.57.224/28 ip4:62.2.96.80/28 ip4:80.74.149.162/32 ip4:80.74.149.163/32 include:spf.protection.outlook.com include:spf.mandrillapp.com include:spf1.ne.ch -all",
- "provider":"swiss-isp",
- "spf_resolved":"v=spf1 +a +mx +ip4:62.202.57.224/28 ip4:62.2.96.80/28 ip4:80.74.149.162/32 ip4:80.74.149.163/32 include:spf.protection.outlook.com include:spf.mandrillapp.com include:spf1.ne.ch -all v=spf1 ip4:40.92.0.0/15 ip4:40.107.0.0/16 ip4:52.100.0.0/15 ip4:52.102.0.0/16 ip4:52.103.0.0/17 ip4:104.47.0.0/17 ip6:2a01:111:f400::/48 ip6:2a01:111:f403::/49 ip6:2a01:111:f403:8000::/51 ip6:2a01:111:f403:c000::/51 ip6:2a01:111:f403:f000::/52 -all v=spf1 ip4:198.2.128.0/24 ip4:198.2.132.0/22 ip4:198.2.136.0/23 ip4:198.2.145.0/24 ip4:198.2.186.0/23 ip4:205.201.131.128/25 ip4:205.201.134.128/25 ip4:205.201.136.0/23 ip4:205.201.139.0/24 ip4:198.2.177.0/24 ip4:198.2.178.0/23 ip4:198.2.180.0/24 ~all v=spf1 ip4:148.196.30.0/24 -all",
- "mx_asns":[
- 3303,
- 6730
- ],
- "autodiscover":{
- "autodiscover_srv":"webmail.moutier.ch"
- }
+ "provider":"microsoft",
+ "category":"us-cloud",
+ "classification_confidence":82.0,
+ "classification_signals":[
+ {
+ "kind":"spf",
+ "provider":"microsoft",
+ "weight":0.2,
+ "detail":"SPF include:spf.protection.outlook.com matches ms365"
+ },
+ {
+ "kind":"tenant",
+ "provider":"microsoft",
+ "weight":0.1,
+ "detail":"MS365 tenant detected: Managed"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 3303 is Swiss ISP: Swisscom"
+ },
+ {
+ "kind":"asn",
+ "provider":"swiss-isp",
+ "weight":0.03,
+ "detail":"ASN 6730 is Swiss ISP: Sunrise UPC"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"microsoft",
+ "weight":0.07,
+ "detail":"TXT verification matches ms365"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"txt_verification",
+ "provider":"aws",
+ "weight":0.07,
+ "detail":"AWS SES domain verification found"
+ },
+ {
+ "kind":"spf_ip",
+ "provider":"swiss-isp",
+ "weight":0.08,
+ "detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"
+ }
+ ],
+ "sources_detail":{
+ "scrape":[],
+ "redirect":[],
+ "wikidata":[
+ "moutier.ch"
+ ],
+ "guess":[
+ "moutier.ch"
+ ]
+ },
+ "resolve_flags":[]
}
}
}
\ No newline at end of file
diff --git a/data.min.json b/data.min.json
new file mode 100644
index 0000000..dc5d11a
--- /dev/null
+++ b/data.min.json
@@ -0,0 +1 @@
+{"generated":"2026-03-24T13:55:14Z","commit":"61309b3","municipalities":{"1":{"name":"Aeugst am Albis","canton":"Kanton Zürich","domain":"aeugst-albis.ch","mx":["mailgw01.zii.ch","mailgw02.zii.ch"],"spf":"v=spf1 include:spf.zii.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"2":{"name":"Affoltern am Albis","canton":"Kanton Zürich","domain":"stadtaffoltern.ch","mx":["stadtaffoltern-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:rlx7.loginserver.ch a:mail.obt-services.ch mx:hin.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud include:spf.abacuscity.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stadtaffoltern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.stadtaffoltern.ch CNAME → selector1-stadtaffoltern-ch._domainkey.affolterncloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.stadtaffoltern.ch CNAME → selector2-stadtaffoltern-ch._domainkey.affolterncloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3":{"name":"Bonstetten","canton":"Kanton Zürich","domain":"bonstetten.ch","mx":["bonstetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bonstetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bonstetten.ch CNAME → selector1-bonstetten-ch._domainkey.bonstettencloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bonstetten.ch CNAME → selector2-bonstetten-ch._domainkey.bonstettencloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4":{"name":"Hausen am Albis","canton":"Kanton Zürich","domain":"hausen.ch","mx":["hausen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com redirect=spf.mail.hostpoint.ch","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hausen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hausen.ch CNAME → selector1-hausen-ch._domainkey.gemhausen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hausen.ch CNAME → selector2-hausen-ch._domainkey.gemhausen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5":{"name":"Hedingen","canton":"Kanton Zürich","domain":"hedingen.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:spf.protection.outlook.com ip4:193.135.56.6 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6":{"name":"Kappel am Albis","canton":"Kanton Zürich","domain":"kappel-am-albis.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"7":{"name":"Knonau","canton":"Kanton Zürich","domain":"knonau.ch","mx":["knonau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.0/24 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX knonau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.knonau.ch CNAME → selector1-knonau-ch._domainkey.gmdknonau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.knonau.ch CNAME → selector2-knonau-ch._domainkey.gmdknonau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"8":{"name":"Maschwanden","canton":"Kanton Zürich","domain":"maschwanden.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:servers.mcsv.net -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"9":{"name":"Mettmenstetten","canton":"Kanton Zürich","domain":"mettmenstetten.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"10":{"name":"Obfelden","canton":"Kanton Zürich","domain":"obfelden.ch","mx":["obfelden-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.bestview.ch include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX obfelden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.obfelden.ch CNAME → selector1-obfelden-ch._domainkey.obfeldencloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.obfelden.ch CNAME → selector2-obfelden-ch._domainkey.obfeldencloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"11":{"name":"Ottenbach","canton":"Kanton Zürich","domain":"ottenbach.ch","mx":["mailgw01.zii.ch","mailgw02.zii.ch"],"spf":"v=spf1 mx include:spf.zii.ch include:spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"12":{"name":"Rifferswil","canton":"Kanton Zürich","domain":"rifferswil.ch","mx":["smtagb02.abxsec.com","smtasg01.abxsec.com","smtazh01.abxsec.com","smtazh02.abxsec.com"],"spf":"v=spf1 include:spf.abxsec.com include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"13":{"name":"Stallikon","canton":"Kanton Zürich","domain":"stallikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"14":{"name":"Wettswil am Albis","canton":"Kanton Zürich","domain":"wettswil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:egeko.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"22":{"name":"Benken (ZH)","canton":"Kanton Zürich","domain":"benken-zh.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"23":{"name":"Berg am Irchel","canton":"Kanton Zürich","domain":"bergamirchel.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"24":{"name":"Buch am Irchel","canton":"Kanton Zürich","domain":"buchamirchel.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf1.egeko.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"25":{"name":"Dachsen","canton":"Kanton Zürich","domain":"dachsen.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com include:spf.abxsec.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"26":{"name":"Dorf","canton":"Kanton Zürich","domain":"dorf.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"27":{"name":"Feuerthalen","canton":"Kanton Zürich","domain":"feuerthalen.ch","mx":["feuerthalen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX feuerthalen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"28":{"name":"Flaach","canton":"Kanton Zürich","domain":"flaach.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 mx include:_spf.rzobt.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"29":{"name":"Flurlingen","canton":"Kanton Zürich","domain":"flurlingen.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spfmx.rizag.ch include:spf.abxsec.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"31":{"name":"Henggart","canton":"Kanton Zürich","domain":"henggart.ch","mx":["henggart-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:81.62.182.114 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX henggart-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"33":{"name":"Kleinandelfingen","canton":"Kanton Zürich","domain":"kleinandelfingen.ch","mx":["smtasg01.abxsec.com","smtazh01.abxsec.com"],"spf":"v=spf1 ip4:193.135.56.6 include:spf.abxsec.com include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"34":{"name":"Laufen-Uhwiesen","canton":"Kanton Zürich","domain":"laufen-uhwiesen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"35":{"name":"Marthalen","canton":"Kanton Zürich","domain":"marthalen.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"37":{"name":"Ossingen","canton":"Kanton Zürich","domain":"ossingen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.mail.hostpoint.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"38":{"name":"Rheinau","canton":"Kanton Zürich","domain":"rheinau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"39":{"name":"Thalheim an der Thur","canton":"Kanton Zürich","domain":"thalheim.ch","mx":["thalheim-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX thalheim-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"40":{"name":"Trüllikon","canton":"Kanton Zürich","domain":"truellikon.ch","mx":["truellikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX truellikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"41":{"name":"Truttikon","canton":"Kanton Zürich","domain":"truttikon.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"43":{"name":"Volken","canton":"Kanton Zürich","domain":"volken.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"51":{"name":"Bachenbülach","canton":"Kanton Zürich","domain":"bachenbuelach.ch","mx":["bachenbuelach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.rzobt.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bachenbuelach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"52":{"name":"Bassersdorf","canton":"Kanton Zürich","domain":"bassersdorf.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com mx:hin.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"53":{"name":"Bülach","canton":"Kanton Zürich","domain":"buelach.ch","mx":["buelach-ch.mail.protection.outlook.com","mailprotect3.itexacloud.ch"],"spf":"v=spf1 a mx ip4:77.237.208.45 a:mail01.refline.ch a:mail02.refline.ch a:mail.friedaweb.de include:spf.rtp.ch include:spf.sendinblue.com include:spf.protection.outlook.com include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX buelach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 15600 is Swiss ISP: Quickline"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"54":{"name":"Dietlikon","canton":"Kanton Zürich","domain":"dietlikon.org","mx":["dietlikon-org.mail.protection.outlook.com","mx1.dietlikon.org","mx2.dietlikon.org"],"spf":"v=spf1 mx ip4:194.191.24.23 ip4:194.56.218.154 ip4:193.135.56.6 ip4:212.25.8.138 ip4:147.160.167.0/26 ip4:94.247.216.48/30 ip4:185.193.224.66/29 ip4:81.92.102.96/29 ip4:81.92.106.32/29 include:hin.ch include:spf.protection.outlook.com include:psm.knowbe4.com include:spf.abacuscity.ch include:dietlikon.atlassian.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dietlikon-org.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.dietlikon.org CNAME → selector1-dietlikon-org._domainkey.gemdietlikonorg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.dietlikon.org CNAME → selector2-dietlikon-org._domainkey.gemdietlikonorg.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 14618 matches aws"}]},"55":{"name":"Eglisau","canton":"Kanton Zürich","domain":"eglisau.ch","mx":["asgate01.spamcontrol.beltronic.ch","asgate02.spamcontrol.beltronic.ch","asgate03.spamcontrol.beltronic.ch","asgate04.spamcontrol.beltronic.ch"],"spf":"v=spf1 a mx include:spf.hornetsecurity.com include:spf.crsend.com include:spf.protection.cyon.net include:servers.mcsv.net include:mail.kidesia.com include:_spf.sui-inter.net ip4:80.74.128.0/19 ip4:46.245.188.53 ip4:91.102.199.128/29 +mx:hin.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"56":{"name":"Embrach","canton":"Kanton Zürich","domain":"embrach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch include:spf.iway.ch include:spf.protection.outlook.com ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 a:mail.ostendis.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"57":{"name":"Freienstein-Teufen","canton":"Kanton Zürich","domain":"freienstein-teufen.ch","mx":["freiensteinteufen-ch02i.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.abxsec.com include:egeko.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX freiensteinteufen-ch02i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"58":{"name":"Glattfelden","canton":"Kanton Zürich","domain":"glattfelden.ch","mx":["mail100.rizag.ch","ms24811660.msv1.invalid"],"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:194.6.176.74 include:spf.abacuscity.ch include:_spf.abxsec.com mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"59":{"name":"Hochfelden","canton":"Kanton Zürich","domain":"hochfelden.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.sui-inter.net include:_spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"60":{"name":"Höri","canton":"Kanton Zürich","domain":"hoeri.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com include:spf1.egeko.ch ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"61":{"name":"Hüntwangen","canton":"Kanton Zürich","domain":"huentwangen.ch","mx":["huentwangen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX huentwangen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"62":{"name":"Kloten","canton":"Kanton Zürich","domain":"kloten.ch","mx":["kloten-ch.mail.protection.outlook.com"],"spf":"v=spf1 +mx +a a:mail.kloten.ch a:mail3.kloten.ch a:mail.i-web.ch include:spf.umantis.com a:mx3.hin.ch a:mx4.hin.ch include:spf.spotwerbung.ch include:spf.protection.outlook.com +ip4:194.209.49.195 +ip4:212.80.96.0/21 +ip4:217.71.85.32/32 +ip4:194.230.101.242/32 +ip6:2a01:7480:1:100::/64 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX kloten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kloten.ch CNAME → selector1-kloten-ch._domainkey.klotench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kloten.ch CNAME → selector2-kloten-ch._domainkey.klotench.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"63":{"name":"Lufingen","canton":"Kanton Zürich","domain":"lufingen.ch","mx":["lufingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lufingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"64":{"name":"Nürensdorf","canton":"Kanton Zürich","domain":"nuerensdorf.ch","mx":["nuerensdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX nuerensdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"65":{"name":"Oberembrach","canton":"Kanton Zürich","domain":"oberembrach.ch","mx":["oberembrach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all ","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberembrach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"66":{"name":"Opfikon","canton":"Kanton Zürich","domain":"opfikon.ch","mx":["opfikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx:hin.ch include:_spf.i-web.ch ip4:217.11.32.170 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.protection.outlook.com ip4:193.5.117.40/29 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX opfikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.opfikon.ch CNAME → selector1-opfikon-ch._domainkey.opfikonch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.opfikon.ch CNAME → selector2-opfikon-ch._domainkey.opfikonch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"67":{"name":"Rafz","canton":"Kanton Zürich","domain":"rafz.ch","mx":["rafz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:smtp.trainingplus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rafz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rafz.ch CNAME → selector1-rafz-ch._domainkey.rafzcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rafz.ch CNAME → selector2-rafz-ch._domainkey.rafzcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"68":{"name":"Rorbas","canton":"Kanton Zürich","domain":"rorbas.ch","mx":["rorbas-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:_spf.sui-inter.net ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rorbas-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rorbas.ch CNAME → selector1-rorbas-ch._domainkey.gemeinderorbasch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rorbas.ch CNAME → selector2-rorbas-ch._domainkey.gemeinderorbasch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"69":{"name":"Wallisellen","canton":"Kanton Zürich","domain":"wallisellen.ch","mx":["wallisellen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.protection.outlook.com include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wallisellen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wallisellen.ch CNAME → selector1-wallisellen-ch._domainkey.gemeindewallisellen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wallisellen.ch CNAME → selector2-wallisellen-ch._domainkey.gemeindewallisellen.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"70":{"name":"Wasterkingen","canton":"Kanton Zürich","domain":"wasterkingen.ch","mx":["wasterkingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wasterkingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"71":{"name":"Wil (ZH)","canton":"Kanton Zürich","domain":"wil-zh.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wil-zh.ch CNAME → selector1-wilzh-ch0i._domainkey.gmdwilzh.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wil-zh.ch CNAME → selector2-wilzh-ch0i._domainkey.gmdwilzh.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"72":{"name":"Winkel","canton":"Kanton Zürich","domain":"winkel.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"81":{"name":"Bachs","canton":"Kanton Zürich","domain":"bachs.ch","mx":["bachs-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bachs-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"82":{"name":"Boppelsen","canton":"Kanton Zürich","domain":"boppelsen.ch","mx":["boppelsen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boppelsen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"83":{"name":"Buchs (ZH)","canton":"Kanton Zürich","domain":"buchs-zh.ch","mx":["buchszh-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com ip4:212.80.96.0/21 a:mail.obt-services.ch ip6:2a01:7480:1:100::/64 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buchszh-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buchs-zh.ch CNAME → selector1-buchszh-ch01c._domainkey.buchscloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buchs-zh.ch CNAME → selector2-buchszh-ch01c._domainkey.buchscloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"84":{"name":"Dällikon","canton":"Kanton Zürich","domain":"daellikon.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"85":{"name":"Dänikon","canton":"Kanton Zürich","domain":"daenikon.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch a:communication.backslash.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"86":{"name":"Dielsdorf","canton":"Kanton Zürich","domain":"dielsdorf.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch a:smtazh01.abxsec.com a:mail.i-web.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:spf.protection.outlook.com mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"87":{"name":"Hüttikon","canton":"Kanton Zürich","domain":"huettikon.ch","mx":["smtagb02.abxsec.com","smtasg01.abxsec.com","smtazh01.abxsec.com","smtazh02.abxsec.com"],"spf":"v=spf1 a mx include:spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"88":{"name":"Neerach","canton":"Kanton Zürich","domain":"neerach.ch","mx":["neerach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:egeko.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX neerach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.neerach.ch CNAME → selector1-neerach-ch._domainkey.neerach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.neerach.ch CNAME → selector2-neerach-ch._domainkey.neerach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"89":{"name":"Niederglatt","canton":"Kanton Zürich","domain":"niederglatt-zh.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.niederglatt-zh.ch CNAME → selector1-niederglattzh-ch02i._domainkey.gmdniederglatt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.niederglatt-zh.ch CNAME → selector2-niederglattzh-ch02i._domainkey.gmdniederglatt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"90":{"name":"Niederhasli","canton":"Kanton Zürich","domain":"niederhasli.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx ip4:81.62.150.186 include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.niederhasli.ch CNAME → selector1-niederhasli-ch._domainkey.mediothekniederhasli.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.niederhasli.ch CNAME → selector2-niederhasli-ch._domainkey.mediothekniederhasli.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"91":{"name":"Niederweningen","canton":"Kanton Zürich","domain":"niederweningen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 ip4:193.135.56.6 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"92":{"name":"Oberglatt","canton":"Kanton Zürich","domain":"oberglatt.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:_spf.rzobt.ch include:spf1.egeko.ch ip4:52.157.149.216 ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:spf.abxsec.com include:spf.bestview.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}]},"93":{"name":"Oberweningen","canton":"Kanton Zürich","domain":"oberweningen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"94":{"name":"Otelfingen","canton":"Kanton Zürich","domain":"otelfingen.ch","mx":["otelfingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX otelfingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"95":{"name":"Regensberg","canton":"Kanton Zürich","domain":"regensberg.ch","mx":["regensberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX regensberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"96":{"name":"Regensdorf","canton":"Kanton Zürich","domain":"regensdorf.ch","mx":["regensdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:81.62.149.138/30 ip4:62.2.156.178/29 include:spf.protection.outlook.com include:_partner.regensdorf.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX regensdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.regensdorf.ch CNAME → selector1-regensdorf-ch._domainkey.regensdorfch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.regensdorf.ch CNAME → selector2-regensdorf-ch._domainkey.regensdorfch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"97":{"name":"Rümlang","canton":"Kanton Zürich","domain":"ruemlang.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com a:mail.i-web.ch a:vimdzmsp-nwas02.bluewin.ch mx include:spf1.egeko.ch include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"98":{"name":"Schleinikon","canton":"Kanton Zürich","domain":"schleinikon.ch","mx":["schleinikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schleinikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"99":{"name":"Schöfflisdorf","canton":"Kanton Zürich","domain":"schoefflisdorf.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 ip4:217.196.176.0/20 a mx -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"100":{"name":"Stadel","canton":"Kanton Zürich","domain":"stadel.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"101":{"name":"Steinmaur","canton":"Kanton Zürich","domain":"steinmaur.ch","mx":["steinmaur-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX steinmaur-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.steinmaur.ch CNAME → selector1-steinmaur-ch._domainkey.steinmaurch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.steinmaur.ch CNAME → selector2-steinmaur-ch._domainkey.steinmaurch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"102":{"name":"Weiach","canton":"Kanton Zürich","domain":"weiach.ch","mx":["smtagb02.abxsec.com","smtasg01.abxsec.com","smtazh01.abxsec.com","smtazh02.abxsec.com"],"spf":"v=spf1 mx include:_spf.mailsecurity.swisscom.com ip4:193.135.56.0/24 include:spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"111":{"name":"Bäretswil","canton":"Kanton Zürich","domain":"baeretswil.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch a:mail.i-web.ch/24 a:smtazh01.abxsec.com mx -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"112":{"name":"Bubikon","canton":"Kanton Zürich","domain":"bubikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com include:spf.bestview.ch ip4:46.231.200.132 mx ip4:94.126.21.108 include:_spf.i-web.ch include:spf.vtx.ch include:2wire.ch ip4:46.140.146.21 ip4:46.140.146.20 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bubikon.ch CNAME → selector1-bubikon-ch._domainkey.gmdbubikon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bubikon.ch CNAME → selector2-bubikon-ch._domainkey.gmdbubikon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"abxsec"},"113":{"name":"Dürnten","canton":"Kanton Zürich","domain":"duernten.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com a:communication.backslash.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"114":{"name":"Fischenthal","canton":"Kanton Zürich","domain":"fischenthal.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch a:smtazh01.abxsec.com ip4:193.135.56.6 include:spf.abxsec.com include:spf1.egeko.ch include:spf.protection.outlook.com mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"115":{"name":"Gossau (ZH)","canton":"Kanton Zürich","domain":"gossau-zh.ch","mx":["gossauzh-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.243.171.69 ip4:164.128.180.173 ip4:164.128.189.226 ip4:46.14.205.122 include:spf.mail.webland.ch include:spf.bestview.ch include:spf.exclaimer.net include:spf.protection.outlook.com include:spf.privasphere.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gossauzh-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gossau-zh.ch CNAME → selector1-gossauzh-ch01e._domainkey.gossauzuerich.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gossau-zh.ch CNAME → selector2-gossauzh-ch01e._domainkey.gossauzuerich.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"116":{"name":"Grüningen","canton":"Kanton Zürich","domain":"grueningen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"117":{"name":"Hinwil","canton":"Kanton Zürich","domain":"hinwil.ch","mx":["hinwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:spf.abacuscity.ch include:mailsecurity.swisscom.com include:hsa.obtcloud.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hinwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"118":{"name":"Rüti (ZH)","canton":"Kanton Zürich","domain":"rueti.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:spf.abxsec.com a:cms2-com.backslash.ch a:mail01.refline.ch a:mail02.refline.ch ip4:193.135.56.6 ip4:128.127.50.146 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"119":{"name":"Seegräben","canton":"Kanton Zürich","domain":"seegraeben.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"120":{"name":"Wald (ZH)","canton":"Kanton Zürich","domain":"wald-zh.ch","mx":["waldzh-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.outlook.com a:mail01.refline.ch a:mail02.refline.ch a:svce-mail.softec.ch include:spf.entex.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX waldzh-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wald-zh.ch CNAME → selector1-waldzh-ch01b._domainkey.waldzhcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wald-zh.ch CNAME → selector2-waldzh-ch01b._domainkey.waldzhcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"121":{"name":"Wetzikon (ZH)","canton":"Kanton Zürich","domain":"wetzikon.ch","mx":["wetzikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com mx:hin.ch include:_spf.abxsec.com a:mail.i-web.ch include:_spf.talus.ch include:spf3.wetzikon.ch include:spf4.wetzikon.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wetzikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"131":{"name":"Adliswil","canton":"","domain":"adliswil.ch","mx":["adliswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:46.140.221.34/27 ip4:146.4.127.224/27 Include:spf.protection.outlook.com include:_partner.adliswil.ch ip4:128.127.66.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX adliswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.adliswil.ch CNAME → selector1-adliswil-ch._domainkey.adliswilcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.adliswil.ch CNAME → selector2-adliswil-ch._domainkey.adliswilcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"135":{"name":"Kilchberg (ZH)","canton":"","domain":"kilchberg.ch","mx":["mx1.naveum.services","mx2.naveum.services"],"spf":"v=spf1 mx a:mx1.naveum.services a:mx2.naveum.services a:mail01.axc.biz ip4:193.135.56.6 include:spf.abacuscity.ch include:spf.axc-cms.biz -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"136":{"name":"Langnau am Albis","canton":"","domain":"solicom.ch","mx":["mail.solicom.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"137":{"name":"Oberrieden","canton":"","domain":"oberrieden.ch","mx":["mailgw01.zii.ch","mailgw02.zii.ch"],"spf":"v=spf1 mx ip4:92.43.216.251 ip4:92.43.216.110 a:msscript1.webland.ch include:spf.protection.outlook.com include:spf.ws-hp-ias.ch include:spf.zii.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"138":{"name":"Richterswil","canton":"","domain":"richterswil.ch","mx":["richterswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:mx.grl.activeguard.cloud ip4:194.29.25.62 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX richterswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"139":{"name":"Rüschlikon","canton":"","domain":"rueschlikon.ch","mx":["rueschlikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com include:spf.umantis.com a:mail.hope.myshare.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX rueschlikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"141":{"name":"Thalwil","canton":"","domain":"thalwil.ch","mx":["mailgw01.zii.ch","mailgw02.zii.ch"],"spf":"v=spf1 include:spf.zii.ch include:_spf.i-web.ch include:spf.abacuscity.ch ip4:195.49.84.165 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"151":{"name":"Erlenbach (ZH)","canton":"Kanton Zürich","domain":"erlenbach.ch","mx":["erlenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.cyon.net include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX erlenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.erlenbach.ch CNAME → selector1-erlenbach-ch._domainkey.gmderlenbach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.erlenbach.ch CNAME → selector2-erlenbach-ch._domainkey.gmderlenbach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"152":{"name":"Herrliberg","canton":"Kanton Zürich","domain":"herrliberg.ch","mx":["mx1.naveum.services","mx2.naveum.services"],"spf":"v=spf1 a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"153":{"name":"Hombrechtikon","canton":"Kanton Zürich","domain":"hombrechtikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"154":{"name":"Küsnacht (ZH)","canton":"Kanton Zürich","domain":"kuesnacht.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.0/24 ip4:193.135.57.0/24 ip4:193.135.58.0/24 include:servers.mcsv.net ip4:193.246.64.0/19 a:mail01.refline.ch a:mail02.refline.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"155":{"name":"Männedorf","canton":"Kanton Zürich","domain":"maennedorf.ch","mx":["mail2.maennedorf.ch"],"spf":"v=spf1 mx a:mail01.refline.ch a:mail02.refline.ch a:spf1.refline.ch a:spf2.refline.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"156":{"name":"Meilen","canton":"Kanton Zürich","domain":"meilen.ch","mx":["meilen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.iway.ch include:spf.bestview.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX meilen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.meilen.ch CNAME → selector1-meilen-ch._domainkey.meilench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.meilen.ch CNAME → selector2-meilen-ch._domainkey.meilench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"157":{"name":"Oetwil am See","canton":"Kanton Zürich","domain":"oetwil.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spf.psm.knowbe4.com include:_spfmx.rizag.ch include:spf.abxsec.com include:spf.protection.outlook.com mx ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"158":{"name":"Stäfa","canton":"Kanton Zürich","domain":"staefa.ch","mx":["staefa-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:spf1.refline.ch a:spf2.refline.ch a:mail01.refline.ch a:mail02.refline.ch include:backslash.ch a:mail.obt-services.ch include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX staefa-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.staefa.ch CNAME → selector1-staefa-ch._domainkey.staefacloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.staefa.ch CNAME → selector2-staefa-ch._domainkey.staefacloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"159":{"name":"Uetikon am See","canton":"Kanton Zürich","domain":"uetikonamsee.ch","mx":["smtagb02.abxsec.com","smtasg01.abxsec.com","smtazh01.abxsec.com","smtazh02.abxsec.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com include:_spf.i-web.ch include:spf.nl2go.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.uetikonamsee.ch CNAME → selector1-uetikonamsee-ch._domainkey.uetikonamsee.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.uetikonamsee.ch CNAME → selector2-uetikonamsee-ch._domainkey.uetikonamsee.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"160":{"name":"Zumikon","canton":"Kanton Zürich","domain":"zumikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ip4:46.182.222.130 ip4:46.182.222.133 ip4:46.182.222.142 ip4:91.192.38.98 ip4:194.41.147.13 ip4:194.41.147.14 ip4:194.88.197.144 ip4:194.88.197.178 ip4:194.41.128.0/17 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"161":{"name":"Zollikon","canton":"Kanton Zürich","domain":"zollikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com a:daten.zollikon.ch a:victorinus.ch-meta.net ptr:tux149.hoststar.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"172":{"name":"Fehraltorf","canton":"Kanton Zürich","domain":"fehraltorf.ch","mx":["fehraltorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.100.16 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.talus.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fehraltorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.fehraltorf.ch CNAME → selector1-fehraltorf-ch._domainkey.gvfehraltorf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.fehraltorf.ch CNAME → selector2-fehraltorf-ch._domainkey.gvfehraltorf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"173":{"name":"Hittnau","canton":"Kanton Zürich","domain":"hittnau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com a:web18.bestview.ch include:spf1.egeko.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"176":{"name":"Lindau","canton":"Kanton Zürich","domain":"lindau.ch","mx":["mail.glindau.ch"],"spf":"v=spf1 +a +mx include:glindau.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"177":{"name":"Pfäffikon","canton":"Kanton Zürich","domain":"pfaeffikon.ch","mx":["pfaeffikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_netblocks_v4.pfaeffikon.ch include:_partners.pfaeffikon.ch include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":96.0,"classification_signals":[{"kind":"mx","detail":"MX pfaeffikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.pfaeffikon.ch CNAME → selector1-pfaeffikon-ch._domainkey.pfaeffikonzh.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.pfaeffikon.ch CNAME → selector2-pfaeffikon-ch._domainkey.pfaeffikonzh.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"178":{"name":"Russikon","canton":"Kanton Zürich","domain":"russikon.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:212.80.96.0/21 ip4:149.126.4.38 ip6:2a01:7480:1:100::/64 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"180":{"name":"Weisslingen","canton":"Kanton Zürich","domain":"weisslingen.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch a mx include:_spf.i-web.ch ip4:46.232.179.212 include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"181":{"name":"Wila","canton":"Kanton Zürich","domain":"wila.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"182":{"name":"Wildberg","canton":"Kanton Zürich","domain":"wildberg.ch","mx":["wildberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wildberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"191":{"name":"Dübendorf","canton":"Kanton Zürich","domain":"duebendorf.ch","mx":["stadtduebendorf.in.tmes.trendmicro.eu"],"spf":"v=spf1 mx include:speedadmin.dk ip4:80.242.195.146 ip4:80.242.195.157 include:spf.crsend.com include:spf.abxsec.com include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.bestview.ch include:spf.tmes.trendmicro.eu -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"192":{"name":"Egg","canton":"Kanton Zürich","domain":"egg.ch","mx":["egg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf.abacuscity.ch include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX egg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"193":{"name":"Fällanden","canton":"Kanton Zürich","domain":"faellanden.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx a:smtazh01.abxsec.com include:_spf.i-web.ch a:mail01.refline.ch a:mail02.refline.ch a:mail.obt-services.ch a:mail1.obtcloud.ch ip4:193.135.100.0/27 include:spf.abacuscity.ch include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"194":{"name":"Greifensee","canton":"Kanton Zürich","domain":"greifensee.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.i-web.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"195":{"name":"Maur","canton":"Kanton Zürich","domain":"maur.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.abxsec.com a:mail.arabachwis.ch a:mail.traberedv.ch a:communication.backslash.ch mx include:spf1.mailchannels.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"196":{"name":"Mönchaltorf","canton":"Kanton Zürich","domain":"moenchaltorf.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 ip4:193.135.56.6 ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:_spf.google.com include:_spf.i-web.ch -all","provider":"google","category":"us-cloud","classification_confidence":70.0,"classification_signals":[{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"197":{"name":"Schwerzenbach","canton":"Kanton Zürich","domain":"schwerzenbach.ch","mx":["schwerzenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:_spf.abxsec.com ip4:213.158.144.22 ip4:62.12.175.210 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schwerzenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.schwerzenbach.ch CNAME → selector1-schwerzenbach-ch._domainkey.gemeindeschwerzenbach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.schwerzenbach.ch CNAME → selector2-schwerzenbach-ch._domainkey.gemeindeschwerzenbach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"198":{"name":"Uster","canton":"Kanton Zürich","domain":"uster.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 ip6:2a02:c382:0:8007::101 ip6:2a02:c382:0:8007::121 ip4:194.209.75.192/26 ip4:195.65.10.12 ip4:195.65.10.13 ip4:195.65.10.14 ip4:195.65.10.15 ip4:167.89.53.198 ip4:149.72.40.42 ip4:167.89.89.155 ip4:217.26.48.124 ip4:217.26.48.146 ip4:217.26.48.147 ip4:217.26.48.121 ip6:2a00:d70:0:a::e0 ip6:2a00:d70:0:13::100 ip6:2a00:d70:0:14::100 ip6:2a00:d70:0:a::e1 include:_spf.abxsec.com include:spf.umantis.com include:spf.abacuscity.ch include:spf.iway.ch include:spf.protection.outlook.com include:mandrillapp.com include:_spf.atlassian.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"199":{"name":"Volketswil","canton":"Kanton Zürich","domain":"volketswil.ch","mx":["mx1.naveum.services","mx2.naveum.services"],"spf":"v=spf1 mx a:mx2.naveum.services a:mx1.naveum.services a:mail01.axc.biz ip4:193.135.56.6 ip4:194.56.218.154 include:spf.umantis.com include:mailomat.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"200":{"name":"Wangen-Brüttisellen","canton":"Kanton Zürich","domain":"wangen-bruettisellen.ch","mx":["wangenbruettisellen-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.i-web.ch include:egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wangenbruettisellen-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"211":{"name":"Altikon","canton":"Kanton Zürich","domain":"altikon.ch","mx":["altikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.0/24 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX altikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"213":{"name":"Brütten","canton":"Kanton Zürich","domain":"bruetten.ch","mx":["bruetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.rzobt.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bruetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"214":{"name":"Dägerlen","canton":"Kanton Zürich","domain":"daegerlen.ch","mx":["daegerlen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX daegerlen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"215":{"name":"Dättlikon","canton":"Kanton Zürich","domain":"daettlikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.mtfweb.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"216":{"name":"Dinhard","canton":"Kanton Zürich","domain":"dinhard.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx a:webcms.ruf.ch ip4:193.135.56.6 include:_spf.abxsec.com include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"218":{"name":"Ellikon an der Thur","canton":"Kanton Zürich","domain":"ellikonanderthur.ch","mx":["ellikonanderthur-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.2sic.net include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.6 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ellikonanderthur-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"219":{"name":"Elsau","canton":"Kanton Zürich","domain":"elsau.ch","mx":["elsau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.abxsec.com include:spf.protection.outlook.com include:egeko.ch include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX elsau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.elsau.ch CNAME → selector1-elsau-ch._domainkey.elsau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.elsau.ch CNAME → selector2-elsau-ch._domainkey.elsau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"220":{"name":"Hagenbuch","canton":"Kanton Zürich","domain":"hagenbuch-zh.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx a include:_spf.abxsec.com +include:spf1.egeko.ch ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"221":{"name":"Hettlingen","canton":"Kanton Zürich","domain":"hettlingen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 mx include:spf.abxsec.com include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"223":{"name":"Neftenbach","canton":"Kanton Zürich","domain":"neftenbach.ch","mx":["neftenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX neftenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"224":{"name":"Pfungen","canton":"Kanton Zürich","domain":"pfungen.ch","mx":["mx1.mtfcloud.ch","mx2.mtfcloud.ch","mx3.mtfcloud.ch"],"spf":"v=spf1 ip4:217.148.0.25 mx include:_spf.i-web.ch include:spf.mtfweb.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.pfungen.ch CNAME → selector1-pfungen-ch._domainkey.mtfsc95146.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.pfungen.ch CNAME → selector2-pfungen-ch._domainkey.mtfsc95146.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"225":{"name":"Rickenbach (ZH)","canton":"Kanton Zürich","domain":"rickenbach-zh.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com mx:talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"226":{"name":"Schlatt (ZH)","canton":"Kanton Zürich","domain":"schlatt-zh.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"227":{"name":"Seuzach","canton":"Kanton Zürich","domain":"seuzach.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"228":{"name":"Turbenthal","canton":"Kanton Zürich","domain":"turbenthal.ch","mx":["turbenthal-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.ch.seppmail.cloud include:egeko.ch include:spf.protection.outlook.com ip4:193.135.56.6 ip4:212.243.171.122 ip4:83.173.240.50 ip4:212.90.205.250 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"230":{"name":"Winterthur","canton":"Kanton Zürich","domain":"win.ch","mx":["mx01.mailsecurity.swisscom.com","mx02.mailsecurity.swisscom.com"],"spf":"v=spf1 include:_spf.win.ch include:mailsecurity.swisscom.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"231":{"name":"Zell (ZH)","canton":"Kanton Zürich","domain":"zell.ch","mx":["zell-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf.protection.outlook.com include:_spf.abxsec.com ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zell-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"241":{"name":"Aesch (ZH)","canton":"Kanton Zürich","domain":"aesch-zh.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch a:smtp1-1.infra.gtg1.ch.abainfra.net -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"242":{"name":"Birmensdorf (ZH)","canton":"Kanton Zürich","domain":"birmensdorf.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.protection.outlook.com include:mailsecurity.swisscom.com include:_spf.rzobt.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"243":{"name":"Dietikon","canton":"Kanton Zürich","domain":"dietikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:193.246.68.28 ip4:193.246.68.29 ip4:193.246.80.28 ip4:193.246.80.29 include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:mail01.refline.ch include:mail02.refline.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"244":{"name":"Geroldswil","canton":"Kanton Zürich","domain":"geroldswil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"245":{"name":"Oberengstringen","canton":"Kanton Zürich","domain":"oberengstringen.ch","mx":["oberengstringen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf1.egeko.ch include:_spf.i-web.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX oberengstringen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"246":{"name":"Oetwil an der Limmat","canton":"Kanton Zürich","domain":"oetwil-limmat.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.abxsec.com mx ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"247":{"name":"Schlieren","canton":"Kanton Zürich","domain":"schlieren.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 a mx ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:_spf.i-web.ch include:spf.umantis.com include:mhs.ch include:spf.protection.outlook.com include:sendgrid.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"248":{"name":"Uitikon","canton":"Kanton Zürich","domain":"uitikon.org","mx":["mx.uitikon.org"],"spf":"v=spf1 mx ip4:212.27.79.46 include:_spf.i-web.ch include:spf.privasphere.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"249":{"name":"Unterengstringen","canton":"Kanton Zürich","domain":"unterengstringen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:servicehoster.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"250":{"name":"Urdorf","canton":"Kanton Zürich","domain":"urdorf.ch","mx":["urdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:spf1.refline.ch a:spf2.refline.ch a:mail.obt-services.ch include:_spf.i-web.ch include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX urdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.urdorf.ch CNAME → selector1-urdorf-ch._domainkey.urdorfcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.urdorf.ch CNAME → selector2-urdorf-ch._domainkey.urdorfcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"251":{"name":"Weiningen (ZH)","canton":"Kanton Zürich","domain":"weiningen.ch","mx":["weiningen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX weiningen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.weiningen.ch CNAME → selector1-weiningen-ch._domainkey.weiningencloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.weiningen.ch CNAME → selector2-weiningen-ch._domainkey.weiningencloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"261":{"name":"Zürich","canton":"Kanton Zürich","domain":"zuerich.ch","mx":["mx3.stadt-zuerich.ch","mx4.stadt-zuerich.ch"],"spf":"v=spf1 ip4:194.56.33.0/26 ip4:185.125.165.24/31 ip4:213.52.186.141 ip4:213.52.186.142 ip4:35.214.208.81 ip4:35.214.213.218 ip4:35.214.183.81 ip4:35.214.212.238 include:spf1.zuerich.ch include:spf2.zuerich.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15169 matches google"}]},"291":{"name":"Andelfingen","canton":"Kanton Zürich","domain":"andelfingen.ch","mx":["andelfingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX andelfingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"292":{"name":"Stammheim","canton":"Kanton Zürich","domain":"stammheim.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"293":{"name":"Wädenswil","canton":"","domain":"waedenswil.ch","mx":["ironout01.waedenswil.ch","ironout02.waedenswil.ch"],"spf":"v=spf1 a mx a:mail01.refline.ch a:mail02.refline.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"294":{"name":"Elgg","canton":"Kanton Zürich","domain":"elgg.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"295":{"name":"Horgen","canton":"","domain":"horgen.ch","mx":["mailgw01.zii.ch","mailgw02.zii.ch"],"spf":"v=spf1 include:spf.zii.ch include:_spf.i-web.ch include:_spf.web-solutions.io include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.rexx-systems.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"296":{"name":"Illnau-Effretikon","canton":"Kanton Zürich","domain":"ilef.ch","mx":["ilef-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com include:_partner.ilef.ch ip4:212.71.124.231 ip4:212.71.124.232 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ilef-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ilef.ch CNAME → selector1-ilef-ch._domainkey.ilefcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ilef.ch CNAME → selector2-ilef-ch._domainkey.ilefcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"297":{"name":"Bauma","canton":"Kanton Zürich","domain":"bauma.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch include:spf.protection.outlook.com include:spf.abxsec.com a:smtazh01.abxsec.com mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"298":{"name":"Wiesendangen","canton":"Kanton Zürich","domain":"wiesendangen.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf.abxsec.com include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"301":{"name":"Aarberg","canton":"Kanton Bern","domain":"aarberg.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"302":{"name":"Bargen (BE)","canton":"Kanton Bern","domain":"bargen-be.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 a mx include:spf.customer.swiss-egov.cloud ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"303":{"name":"Grossaffoltern","canton":"Kanton Bern","domain":"grossaffoltern.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"304":{"name":"Kallnach","canton":"Kanton Bern","domain":"kallnach.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 include:spf.protection.cyon.net ip4:80.74.138.230 ip4:194.88.197.38 include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"305":{"name":"Kappelen","canton":"Kanton Bern","domain":"kappelen.ch","mx":["kappelen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kappelen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kappelen.ch CNAME → selector1-kappelen-ch._domainkey.gemeindekappelen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kappelen.ch CNAME → selector2-kappelen-ch._domainkey.gemeindekappelen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"306":{"name":"Lyss","canton":"Kanton Bern","domain":"lyss.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"307":{"name":"Meikirch","canton":"Kanton Bern","domain":"meikirch.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ?all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"309":{"name":"Radelfingen","canton":"Kanton Bern","domain":"radelfingen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 a MX include:spf.crsend.com include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"310":{"name":"Rapperswil (BE)","canton":"Kanton Bern","domain":"rapperswil-be.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"311":{"name":"Schüpfen","canton":"Kanton Bern","domain":"schuepfen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 mx a include:_spf.talus.ch include:_spf.sui-inter.net ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"312":{"name":"Seedorf (BE)","canton":"Kanton Bern","domain":"seedorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"321":{"name":"Aarwangen","canton":"Kanton Bern","domain":"aarwangen.ch","mx":["aarwangen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:213.221.253.87 include:_spf.ch.seppmail.cloud Include:spf.protection.outlook.com a:mail.i-web.ch a:mail.obt-services.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX aarwangen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.aarwangen.ch CNAME → selector1-aarwangen-ch._domainkey.aarwangencloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.aarwangen.ch CNAME → selector2-aarwangen-ch._domainkey.aarwangencloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"322":{"name":"Auswil","canton":"Kanton Bern","domain":"auswil.ch","mx":["auswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX auswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"323":{"name":"Bannwil","canton":"Kanton Bern","domain":"bannwil.ch","mx":["bannwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.tophost.ch include:relay.mailchannels.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bannwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"324":{"name":"Bleienbach","canton":"Kanton Bern","domain":"bleienbach.ch","mx":["bleienbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com +include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bleienbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"325":{"name":"Busswil bei Melchnau","canton":"Kanton Bern","domain":"busswil-bm.ch","mx":["busswilbm-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com +include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX busswilbm-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.busswil-bm.ch CNAME → selector1-busswilbm-ch01i._domainkey.gemeindebusswilmelchnauch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.busswil-bm.ch CNAME → selector2-busswilbm-ch01i._domainkey.gemeindebusswilmelchnauch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"326":{"name":"Gondiswil","canton":"Kanton Bern","domain":"gondiswil.ch","mx":["gondiswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:mail.tcnet.ch a:oa.ip-cloud.ch a:ip-mail01.asp.infopro.ch ip4:213.221.218.169 ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gondiswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"329":{"name":"Langenthal","canton":"Kanton Bern","domain":"langenthal.ch","mx":["langenthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.rzobt.ch include:_spf.ch.seppmail.cloud include:mx.dvbern.ch include:_spf.psm.knowbe4.com a:mail01.refline.ch a:mail02.refline.ch a:satadm.langenthal.ch ip4:213.221.253.82 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX langenthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.langenthal.ch CNAME → selector1-langenthal-ch._domainkey.stadtverwaltunglangenthal.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.langenthal.ch CNAME → selector2-langenthal-ch._domainkey.stadtverwaltunglangenthal.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"331":{"name":"Lotzwil","canton":"Kanton Bern","domain":"lotzwil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"332":{"name":"Madiswil","canton":"Kanton Bern","domain":"madiswil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"333":{"name":"Melchnau","canton":"Kanton Bern","domain":"melchnau.ch","mx":["melchnau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX melchnau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"335":{"name":"Oeschenbach","canton":"Kanton Bern","domain":"oeschenbach.ch","mx":["oeschenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:oeschenbach.ch mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oeschenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oeschenbach.ch CNAME → selector1-oeschenbach-ch._domainkey.gemoesch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oeschenbach.ch CNAME → selector2-oeschenbach-ch._domainkey.gemoesch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"336":{"name":"Reisiswil","canton":"Kanton Bern","domain":"reisiswil.ch","mx":["reisiswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX reisiswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"337":{"name":"Roggwil (BE)","canton":"Kanton Bern","domain":"roggwil.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a a:remote.roggwil.ch include:mx.dvbern.ch include:spf.mail.balzcloud.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"338":{"name":"Rohrbach","canton":"Kanton Bern","domain":"rohrbach-be.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:_spf.hex.pcetera.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"hornetsecurity"},"339":{"name":"Rohrbachgraben","canton":"Kanton Bern","domain":"rohrbachgraben.ch","mx":["rohrbachgraben-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf.gilomen.org -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rohrbachgraben-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"340":{"name":"Rütschelen","canton":"Kanton Bern","domain":"ruetschelen.ch","mx":["ruetschelen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.48.58.75 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ruetschelen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"341":{"name":"Schwarzhäusern","canton":"Kanton Bern","domain":"schwarzhaeusern.ch","mx":["schwarzhaeusern-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX schwarzhaeusern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"342":{"name":"Thunstetten","canton":"Kanton Bern","domain":"thunstetten.ch","mx":["thunstetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:194.56.218.155 ip4:194.56.218.156 include:_spf.i-web.ch include:mx.dvbern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX thunstetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.thunstetten.ch CNAME → selector1-thunstetten-ch._domainkey.ewgthunstetten.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.thunstetten.ch CNAME → selector2-thunstetten-ch._domainkey.ewgthunstetten.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"344":{"name":"Ursenbach","canton":"Kanton Bern","domain":"ursenbach.ch","mx":["ursenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ursenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"345":{"name":"Wynau","canton":"Kanton Bern","domain":"wynau.ch","mx":["mail.wynau.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a ip4:213.221.240.202 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"351":{"name":"Bern","canton":"Kanton Bern","domain":"bern.ch","mx":["bern-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:193.247.33.1/32 ip4:193.247.33.3/32 ip4:193.247.35.27/32 ip4:92.42.184.212/32 ip4:92.42.184.216/32 ip4:138.188.166.160/27 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX bern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bern.ch CNAME → selector1-bern-ch._domainkey.bernch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bern.ch CNAME → selector2-bern-ch._domainkey.bernch.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"352":{"name":"Bolligen","canton":"Kanton Bern","domain":"bolligen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a mx ip4:212.243.26.162 include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"353":{"name":"Bremgarten bei Bern","canton":"Kanton Bern","domain":"3047.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 a:smtp.iz-net.ch ip4:80.74.142.120 include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"354":{"name":"Kirchlindach","canton":"Kanton Bern","domain":"kirchlindach.ch","mx":["kirchlindach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kirchlindach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kirchlindach.ch CNAME → selector1-kirchlindach-ch._domainkey.gemeindekirchlindach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kirchlindach.ch CNAME → selector2-kirchlindach-ch._domainkey.gemeindekirchlindach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"355":{"name":"Köniz","canton":"Kanton Bern","domain":"koeniz.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 a:smtp.trainingplus.ch mx ip4:194.56.218.181 ip4:194.56.218.131 ip4:193.135.56.6 include:spf.mail.weloveyou.systems include:spf.imc-hosting.com include:spf.abxsec.com include:_spf.tophost.ch include:spf.iz-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"356":{"name":"Muri bei Bern","canton":"Kanton Bern","domain":"muri-guemligen.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 a:smtp.iz-net.ch ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"357":{"name":"Oberbalm","canton":"Kanton Bern","domain":"oberbalm.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a:mrmuensingen01.muensingen.ch include:spf.protection.outlook.com include:_spf.talus.ch include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"}]},"358":{"name":"Stettlen","canton":"Kanton Bern","domain":"stettlen.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mrmuensingen01.muensingen.ch"],"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch. include:_spf.talus.ch. include:_spf.i-web.ch. -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"359":{"name":"Vechigen","canton":"Kanton Bern","domain":"vechigen.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mail.vechigen.ch"],"spf":"v=spf1 mx ip4:212.243.26.162 a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"360":{"name":"Wohlen bei Bern","canton":"Kanton Bern","domain":"wohlen-be.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 a mx ip4:62.2.105.192/29 ip4:178.174.41.248/30 include:_spf_eucentral1.prod.hydra.sophos.com include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"sophos"},"361":{"name":"Zollikofen","canton":"Kanton Bern","domain":"zollikofen.ch","mx":["zollikofen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:62.2.84.176/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zollikofen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"362":{"name":"Ittigen","canton":"Kanton Bern","domain":"ittigen.ch","mx":["mail.ittigen.ch"],"spf":"v=spf1 mx mx:hin.ch ip4:194.209.116.36 include:_spf.i-web.ch include:spf.umantis.com include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"dkim","detail":"DKIM selector1._domainkey.ittigen.ch CNAME → selector1-ittigen-ch._domainkey.ittigench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ittigen.ch CNAME → selector2-ittigen-ch._domainkey.ittigench.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"363":{"name":"Ostermundigen","canton":"Kanton Bern","domain":"ostermundigen.ch","mx":["ostermundigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:212.243.176.142 include:spf.abacuscity.ch mx:talus.ch a:mail.codx.ch include:spf.protection.outlook.com include:spf.psm.knowbe4.com ip4:193.135.144.129 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ostermundigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"371":{"name":"Biel/Bienne","canton":"Kanton Bern","domain":"biel-bienne.ch","mx":["mx1.biel-bienne.ch","mx2.biel-bienne.ch"],"spf":"v=spf1 mx ip4:194.209.196.58 ip4:194.209.196.59 include:spf.umantis.com include:spf1.ne.ch include:spf.protection.outlook.com a:mail.quorumsoftware.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.biel-bienne.ch CNAME → selector1-bielbienne-ch01b._domainkey.bielbienne.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.biel-bienne.ch CNAME → selector2-bielbienne-ch01b._domainkey.bielbienne.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"372":{"name":"Evilard","canton":"Kanton Bern","domain":"evilard.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx include:_spf.talus.ch include:mx.dvbern.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"381":{"name":"Arch","canton":"Kanton Bern","domain":"arch-be.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"382":{"name":"Büetigen","canton":"Kanton Bern","domain":"bueetigen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"383":{"name":"Büren an der Aare","canton":"Kanton Bern","domain":"bueren.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"385":{"name":"Diessbach bei Büren","canton":"Kanton Bern","domain":"diessbach.ch","mx":["diessbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX diessbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"386":{"name":"Dotzigen","canton":"Kanton Bern","domain":"dotzigen.ch","mx":["dotzigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:smtp.iz-net.ch ip4:80.74.142.120 ip4:91.212.152.32 include:spf.protection.outlook.com a mx include:_spf.sui-inter.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dotzigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"387":{"name":"Lengnau (BE)","canton":"Kanton Bern","domain":"lengnau.ch","mx":["lengnau-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:securemail.lengnau.ch ip4:213.221.215.137 include:spf.protection.outlook.com include:spf.webstyle.ch include:_spf.sui-inter.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lengnau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"388":{"name":"Leuzigen","canton":"Kanton Bern","domain":"leuzigen.ch","mx":["leuzigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX leuzigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"389":{"name":"Meienried","canton":"Kanton Bern","domain":"meienried.ch","mx":["meienried-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX meienried-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"390":{"name":"Meinisberg","canton":"Kanton Bern","domain":"meinisberg.ch","mx":["mail.meinisberg.ch"],"spf":"v=spf1 include:_spf.smtp.com include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"391":{"name":"Oberwil bei Büren","canton":"Kanton Bern","domain":"oberwil-bueren.ch","mx":["oberwilbueren-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberwilbueren-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"392":{"name":"Pieterlen","canton":"Kanton Bern","domain":"pieterlen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"393":{"name":"Rüti bei Büren","canton":"Kanton Bern","domain":"ruetibeibueren.ch","mx":["ruetibeibueren-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.webstyle.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ruetibeibueren-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"394":{"name":"Wengi","canton":"Kanton Bern","domain":"wengi-be.ch","mx":["wengibe-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wengibe-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"401":{"name":"Aefligen","canton":"Kanton Bern","domain":"aefligen.ch","mx":["aefligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX aefligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"402":{"name":"Alchenstorf","canton":"Kanton Bern","domain":"alchenstorf.ch","mx":["alchenstorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX alchenstorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"403":{"name":"Bäriswil","canton":"Kanton Bern","domain":"baeriswil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"404":{"name":"Burgdorf","canton":"Kanton Bern","domain":"burgdorf.ch","mx":["burgdorf-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:spf.tmes.trendmicro.com include:_spf.talus.ch include:spf.webstyle.ch include:spf.abacuscity.ch include:spf.zic-network.ch include:_spf.ch.seppmail.cloud ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"405":{"name":"Ersigen","canton":"Kanton Bern","domain":"ersigen.ch","mx":["ersigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf_exoscale.4teamwork.ch include:spf.protection.outlook.com ip4:212.103.64.0/19 ip4:193.43.183.0/24 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ersigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"406":{"name":"Hasle bei Burgdorf","canton":"Kanton Bern","domain":"hasle.ch","mx":["hasle-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX hasle-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"407":{"name":"Heimiswil","canton":"Kanton Bern","domain":"heimiswil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx a:mail.heimiswil.ch ip4:146.4.53.246 ip4:77.75.112.17 ip4:77.75.112.37 include:_spf.sui-inter.net -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"408":{"name":"Hellsau","canton":"Kanton Bern","domain":"hellsau.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:egeko.ch include:_spf.i-web.ch include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"409":{"name":"Hindelbank","canton":"Kanton Bern","domain":"hindelbank.ch","mx":["burgdorf.in.tmes.trendmicro.eu"],"spf":"v=spf1 a mx include:_spf.talus.ch include:spf.tmes.trendmicro.com ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"410":{"name":"Höchstetten","canton":"Kanton Bern","domain":"hoechstetten.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:_spf.i-web.ch include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"411":{"name":"Kernenried","canton":"Kanton Bern","domain":"kernenried.ch","mx":["mail.kernenried.ch"],"spf":"v=spf1 a:kernenried.ch mx ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"412":{"name":"Kirchberg (BE)","canton":"Kanton Bern","domain":"kirchberg-be.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx ip4:213.221.218.63 include:_spf.i-web.ch include:mailrelay.ecolize.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"413":{"name":"Koppigen","canton":"Kanton Bern","domain":"koppigen.ch","mx":["koppigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX koppigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"414":{"name":"Krauchthal","canton":"Kanton Bern","domain":"krauchthal.ch","mx":["krauchthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch a:mx.tas.activeguard.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX krauchthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.krauchthal.ch CNAME → selector1-krauchthal-ch._domainkey.gemeindekrauchthal.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.krauchthal.ch CNAME → selector2-krauchthal-ch._domainkey.gemeindekrauchthal.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}]},"415":{"name":"Lyssach","canton":"Kanton Bern","domain":"lyssach.ch","mx":["lyssach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lyssach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"418":{"name":"Oberburg","canton":"Kanton Bern","domain":"oberburg.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"420":{"name":"Rüdtligen-Alchenflüh","canton":"Kanton Bern","domain":"rual.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"421":{"name":"Rumendingen","canton":"Kanton Bern","domain":"wynigen.ch","mx":["wynigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:remote.wynigen.ch a:webext02.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wynigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"422":{"name":"Rüti bei Lyssach","canton":"Kanton Bern","domain":"ruetibeilyssach.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"423":{"name":"Willadingen","canton":"Kanton Bern","domain":"koppigen.ch","mx":["koppigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX koppigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"424":{"name":"Wynigen","canton":"Kanton Bern","domain":"wynigen.ch","mx":["wynigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:remote.wynigen.ch a:webext02.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wynigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"431":{"name":"Corgémont","canton":"Kanton Bern","domain":"corgemont.ch","mx":["corgemont-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:10.4.36.0/24 ip4:83.166.143.0/24 ip4:164.128.163.171 ip4:185.48.144.218 include:spf.infomaniak.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX corgemont-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.corgemont.ch CNAME → selector1-corgemont-ch._domainkey.corgemont.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.corgemont.ch CNAME → selector2-corgemont-ch._domainkey.corgemont.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"432":{"name":"Cormoret","canton":"Kanton Bern","domain":"cormoret.ch","mx":["cormoret-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cormoret-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"433":{"name":"Cortébert","canton":"Kanton Bern","domain":"cortebert.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"434":{"name":"Courtelary","canton":"Kanton Bern","domain":"courtelary.ch","mx":["courtelary-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX courtelary-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"435":{"name":"La Ferrière","canton":"Kanton Bern","domain":"laferriere.ch","mx":["laferriere-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.34.136.220 ip4:212.147.29.100 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX laferriere-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"437":{"name":"Mont-Tramelan","canton":"Kanton Bern","domain":"mont-tramelan.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 ?all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"438":{"name":"Orvin","canton":"Kanton Bern","domain":"orvin.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 ip4:46.140.125.162 include:mx.dvbern.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"hornetsecurity"},"441":{"name":"Renan (BE)","canton":"Kanton Bern","domain":"renan.ch","mx":["renan-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX renan-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.renan.ch CNAME → selector1-renan-ch._domainkey.renanberne.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.renan.ch CNAME → selector2-renan-ch._domainkey.renanberne.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"442":{"name":"Romont (BE)","canton":"Kanton Bern","domain":"romont-jb.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"443":{"name":"Saint-Imier","canton":"Kanton Bern","domain":"saint-imier.ch","mx":["mail.cleanmail.ch"],"spf":"v=spf1 ip4:62.2.112.210 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"cleanmail"},"444":{"name":"Sonceboz-Sombeval","canton":"Kanton Bern","domain":"sonceboz.ch","mx":["sonceboz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:185.48.144.218 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX sonceboz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"445":{"name":"Sonvilier","canton":"Kanton Bern","domain":"sonvilier.ch","mx":["sonvilier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sonvilier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.sonvilier.ch CNAME → selector1-sonvilier-ch._domainkey.sonvilier.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.sonvilier.ch CNAME → selector2-sonvilier-ch._domainkey.sonvilier.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"446":{"name":"Tramelan","canton":"Kanton Bern","domain":"tramelan.ch","mx":["mx140.zline.ch","mx3.zline.ch","mx30.zline.ch"],"spf":"v=spf1 ip4:83.166.134.44 ip4:109.164.210.48/28 include:spf.zline.ch include:spf.mandrillapp.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"448":{"name":"Villeret","canton":"Kanton Bern","domain":"villeret.ch","mx":["villeret-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX villeret-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.villeret.ch CNAME → selector1-villeret-ch._domainkey.villeret.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.villeret.ch CNAME → selector2-villeret-ch._domainkey.villeret.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"449":{"name":"Sauge","canton":"Kanton Bern","domain":"sauge-jb.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"450":{"name":"Péry-La Heutte","canton":"Kanton Bern","domain":"pery-laheutte.ch","mx":["mx140.zline.ch","mx2.zline.ch","mx20.zline.ch"],"spf":"v=spf1 ip4:185.48.146.91 ip4:185.48.144.218 include:spf.protection.outlook.com include:spf.zline.ch include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"491":{"name":"Brüttelen","canton":"Kanton Bern","domain":"bruettelen.ch","mx":["bruettelen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bruettelen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"492":{"name":"Erlach","canton":"Kanton Bern","domain":"erlach.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"493":{"name":"Finsterhennen","canton":"Kanton Bern","domain":"finsterhennen.ch","mx":["finsterhennen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX finsterhennen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"494":{"name":"Gals","canton":"Kanton Bern","domain":"gals.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 a mx include:spf.customer.swiss-egov.cloud ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"495":{"name":"Gampelen","canton":"Kanton Bern","domain":"gampelen.ch","mx":["gampelen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gampelen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"496":{"name":"Ins","canton":"Kanton Bern","domain":"ins.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"497":{"name":"Lüscherz","canton":"Kanton Bern","domain":"luescherz.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:88.99.160.53 -all -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"498":{"name":"Müntschemier","canton":"Kanton Bern","domain":"muentschemier.ch","mx":["muentschemier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:tiberius.sui-inter.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX muentschemier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"499":{"name":"Siselen","canton":"Kanton Bern","domain":"siselen.ch","mx":["siselen-ch.mail.eo.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"500":{"name":"Treiten","canton":"Kanton Bern","domain":"treiten.ch","mx":["treiten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX treiten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"501":{"name":"Tschugg","canton":"Kanton Bern","domain":"tschugg.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx ip4:88.99.160.53 include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"502":{"name":"Vinelz","canton":"Kanton Bern","domain":"vinelz.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:88.99.160.53 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"533":{"name":"Bätterkinden","canton":"Kanton Bern","domain":"baetterkinden.ch","mx":["baetterkinden-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com include:_spf.sui-inter.net +mx ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX baetterkinden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"535":{"name":"Deisswil bei Münchenbuchsee","canton":"Kanton Bern","domain":"deisswil.ch","mx":["deisswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com include:spf.cloudrexx.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX deisswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"538":{"name":"Fraubrunnen","canton":"Kanton Bern","domain":"fraubrunnen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"540":{"name":"Jegenstorf","canton":"Kanton Bern","domain":"jegenstorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a mx a:mail.codx.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"541":{"name":"Iffwil","canton":"Kanton Bern","domain":"iffwil.ch","mx":["iffwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX iffwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"543":{"name":"Mattstetten","canton":"Kanton Bern","domain":"mattstetten.ch","mx":["mattstetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mattstetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.mattstetten.ch CNAME → selector1-mattstetten-ch._domainkey.mattstetten.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.mattstetten.ch CNAME → selector2-mattstetten-ch._domainkey.mattstetten.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"544":{"name":"Moosseedorf","canton":"Kanton Bern","domain":"moosseedorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"546":{"name":"Münchenbuchsee","canton":"Kanton Bern","domain":"muenchenbuchsee.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"551":{"name":"Urtenen-Schönbühl","canton":"Kanton Bern","domain":"urtenen-schoenbuehl.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"552":{"name":"Utzenstorf","canton":"Kanton Bern","domain":"utzenstorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.sui-inter.net +mx ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"553":{"name":"Wiggiswil","canton":"Kanton Bern","domain":"wiggiswil.ch","mx":["wiggiswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wiggiswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"554":{"name":"Wiler bei Utzenstorf","canton":"Kanton Bern","domain":"wiler.ch","mx":["wiler-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wiler-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"556":{"name":"Zielebach","canton":"Kanton Bern","domain":"zielebach.ch","mx":["mx1.jimdo.com","mx2.jimdo.com"],"spf":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"557":{"name":"Zuzwil (BE)","canton":"Kanton Bern","domain":"zuzwil-be.ch","mx":["zuzwilbe-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zuzwilbe-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"561":{"name":"Adelboden","canton":"Kanton Bern","domain":"3715.ch","mx":["3715-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX 3715-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.3715.ch CNAME → selector1-3715-ch._domainkey.3715.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.3715.ch CNAME → selector2-3715-ch._domainkey.3715.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"562":{"name":"Aeschi bei Spiez","canton":"Kanton Bern","domain":"aeschi.ch","mx":["aeschi-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +a:scorpius.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX aeschi-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.aeschi.ch CNAME → selector1-aeschi-ch._domainkey.aeschibspiez.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.aeschi.ch CNAME → selector2-aeschi-ch._domainkey.aeschibspiez.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"563":{"name":"Frutigen","canton":"Kanton Bern","domain":"frutigen.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 redirect=frutigen.ch.spf.hornetdmarc.com","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"hornetsecurity"},"564":{"name":"Kandergrund","canton":"Kanton Bern","domain":"kandergrund.ch","mx":["kandergrund-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:_spf.ch.seppmail.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kandergrund.ch CNAME → selector1-kandergrund-ch._domainkey.kandergrund.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kandergrund.ch CNAME → selector2-kandergrund-ch._domainkey.kandergrund.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"565":{"name":"Kandersteg","canton":"Kanton Bern","domain":"gemeindekandersteg.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 include:_spf.pcetera.ch include:spf.mandrillapp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"566":{"name":"Krattigen","canton":"Kanton Bern","domain":"krattigen.ch","mx":["krattigen-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:194.126.200.0/24 ip4:149.126.0.0/21 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.krattigen.ch CNAME → selector1-krattigen-ch._domainkey.krattigen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.krattigen.ch CNAME → selector2-krattigen-ch._domainkey.krattigen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"567":{"name":"Reichenbach im Kandertal","canton":"Kanton Bern","domain":"reichenbach.ch","mx":["reichenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:spf.trendhosting-net.ch include:spf.protection.outlook.com include:_spf.talus.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX reichenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.reichenbach.ch CNAME → selector1-reichenbach-ch._domainkey.gdereichenbach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.reichenbach.ch CNAME → selector2-reichenbach-ch._domainkey.gdereichenbach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"571":{"name":"Beatenberg","canton":"Kanton Bern","domain":"beatenberg.ch","mx":["beatenberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX beatenberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.beatenberg.ch CNAME → selector1-beatenberg-ch._domainkey.beatenbergbe.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.beatenberg.ch CNAME → selector2-beatenberg-ch._domainkey.beatenbergbe.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"572":{"name":"Bönigen","canton":"Kanton Bern","domain":"boenigen.ch","mx":["boenigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boenigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.boenigen.ch CNAME → selector1-boenigen-ch._domainkey.gemeindeverwaltungboenigen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.boenigen.ch CNAME → selector2-boenigen-ch._domainkey.gemeindeverwaltungboenigen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"573":{"name":"Brienz (BE)","canton":"Kanton Bern","domain":"brienz.ch","mx":["brienz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brienz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"574":{"name":"Brienzwiler","canton":"Kanton Bern","domain":"brienzwiler.ch","mx":["brienzwiler-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brienzwiler-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"575":{"name":"Därligen","canton":"Kanton Bern","domain":"daerligen.ch","mx":["daerligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.150.248.204 include:_spf.tophost.ch include:relay.mailchannels.net +include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":89.0,"classification_signals":[{"kind":"mx","detail":"MX daerligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"576":{"name":"Grindelwald","canton":"Kanton Bern","domain":"gemeinde-grindelwald.ch","mx":["gemeindegrindelwald-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.webstyle.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindegrindelwald-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gemeinde-grindelwald.ch CNAME → selector1-gemeindegrindelwald-ch02b._domainkey.gemeindegrindelwald.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gemeinde-grindelwald.ch CNAME → selector2-gemeindegrindelwald-ch02b._domainkey.gemeindegrindelwald.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"577":{"name":"Gsteigwiler","canton":"Kanton Bern","domain":"gsteigwiler.ch","mx":["gsteigwiler-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gsteigwiler-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gsteigwiler.ch CNAME → selector1-gsteigwiler-ch._domainkey.gsteigwilerch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gsteigwiler.ch CNAME → selector2-gsteigwiler-ch._domainkey.gsteigwilerch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"578":{"name":"Gündlischwand","canton":"Kanton Bern","domain":"guendlischwand.ch","mx":["guendlischwand-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX guendlischwand-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.guendlischwand.ch CNAME → selector1-guendlischwand-ch._domainkey.guendlischwand.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.guendlischwand.ch CNAME → selector2-guendlischwand-ch._domainkey.guendlischwand.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"579":{"name":"Habkern","canton":"Kanton Bern","domain":"habkern.ch","mx":["habkern-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX habkern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"580":{"name":"Hofstetten bei Brienz","canton":"Kanton Bern","domain":"hofstetten-ballenberg.ch","mx":["mx1.jimdo.com","mx2.jimdo.com"],"spf":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"581":{"name":"Interlaken","canton":"Kanton Bern","domain":"interlaken.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"582":{"name":"Iseltwald","canton":"Kanton Bern","domain":"iseltwald.ch","mx":["iseltwald-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX iseltwald-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"584":{"name":"Lauterbrunnen","canton":"Kanton Bern","domain":"lauterbrunnen.ch","mx":["lauterbrunnen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lauterbrunnen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.lauterbrunnen.ch CNAME → selector1-lauterbrunnen-ch._domainkey.lauterbrunnen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.lauterbrunnen.ch CNAME → selector2-lauterbrunnen-ch._domainkey.lauterbrunnen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"585":{"name":"Leissigen","canton":"Kanton Bern","domain":"leissigen.ch","mx":["leissigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leissigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"586":{"name":"Lütschental","canton":"Kanton Bern","domain":"luetschental.ch","mx":["luetschental-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX luetschental-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"587":{"name":"Matten bei Interlaken","canton":"Kanton Bern","domain":"matten.ch","mx":["matten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX matten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.matten.ch CNAME → selector1-matten-ch._domainkey.matten.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.matten.ch CNAME → selector2-matten-ch._domainkey.matten.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"588":{"name":"Niederried bei Interlaken","canton":"Kanton Bern","domain":"niederried-be.ch","mx":["niederriedbe-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX niederriedbe-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"589":{"name":"Oberried am Brienzersee","canton":"Kanton Bern","domain":"oberried.ch","mx":["oberried.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":60.0,"classification_signals":[]},"590":{"name":"Ringgenberg (BE)","canton":"Kanton Bern","domain":"ringgenberg.ch","mx":["ringgenberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ringgenberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ringgenberg.ch CNAME → selector1-ringgenberg-ch._domainkey.ringgenbergch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ringgenberg.ch CNAME → selector2-ringgenberg-ch._domainkey.ringgenbergch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"591":{"name":"Saxeten","canton":"Kanton Bern","domain":"saxeten.ch","mx":["saxeten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX saxeten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"592":{"name":"Schwanden bei Brienz","canton":"Kanton Bern","domain":"schwandenbrienz.ch","mx":["schwandenbrienz-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schwandenbrienz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"593":{"name":"Unterseen","canton":"Kanton Bern","domain":"unterseen.ch","mx":["mx.gnets.ch"],"spf":"v=spf1 a:smtp.gnets.ch ip4:213.202.32.4 ip4:213.202.32.6 ip4:213.202.32.8 ip4:188.245.229.219 ip4:62.116.178.113 ip4:62.116.178.110 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 13030 is Swiss ISP: Init7"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"594":{"name":"Wilderswil","canton":"Kanton Bern","domain":"wilderswil.ch","mx":["wilderswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:wilderswil.ch a:srv113.4youhosting.ch ip4:62.116.178.113 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wilderswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wilderswil.ch CNAME → selector1-wilderswil-ch._domainkey.wilderswil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wilderswil.ch CNAME → selector2-wilderswil-ch._domainkey.wilderswil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"602":{"name":"Arni (BE)","canton":"Kanton Bern","domain":"arnibe.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.x-mailer.de include:spf2.x-mailer.de include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"603":{"name":"Biglen","canton":"Kanton Bern","domain":"biglen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 ip4:193.5.124.38 ip4:212.243.26.162 include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"605":{"name":"Bowil","canton":"Kanton Bern","domain":"bowil.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 mx include:spf.zic-network.ch include:_spf.pcetera.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"606":{"name":"Brenzikofen","canton":"Kanton Bern","domain":"brenzikofen.ch","mx":["mail.brenzikofen.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"607":{"name":"Freimettigen","canton":"Kanton Bern","domain":"freimettigen.ch","mx":["freimettigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX freimettigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"608":{"name":"Grosshöchstetten","canton":"Kanton Bern","domain":"grosshoechstetten.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch include:mx.dvbern.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"609":{"name":"Häutligen","canton":"Kanton Bern","domain":"haeutligen.ch","mx":["haeutligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX haeutligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"610":{"name":"Herbligen","canton":"Kanton Bern","domain":"herbligen.ch","mx":["herbligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX herbligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.herbligen.ch CNAME → selector1-herbligen-ch._domainkey.herbligengemeinde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.herbligen.ch CNAME → selector2-herbligen-ch._domainkey.herbligengemeinde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"611":{"name":"Kiesen","canton":"Kanton Bern","domain":"kiesen.ch","mx":["kiesen1.cleanmail.ch","kiesen2.cleanmail.ch"],"spf":"v=spf1 include:spf.protection.outlook.com include:_cmspf.cleanmail.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kiesen.ch CNAME → selector1-kiesen-ch._domainkey.kiesench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kiesen.ch CNAME → selector2-kiesen-ch._domainkey.kiesench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"cleanmail"},"612":{"name":"Konolfingen","canton":"Kanton Bern","domain":"konolfingen.ch","mx":["konolfingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.41.204.242 ip4:62.167.19.241 ip4:81.62.201.86 a:mailout.computech.ch include:spf-de.emailsignatures365.com include:spf.protection.outlook.com include:_spf.talus.ch +a +mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX konolfingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.konolfingen.ch CNAME → selector1-konolfingen-ch._domainkey.gemkon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.konolfingen.ch CNAME → selector2-konolfingen-ch._domainkey.gemkon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"613":{"name":"Landiswil","canton":"Kanton Bern","domain":"landiswil.ch","mx":["landiswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:ip-nep2016.asp.infopro.ch ip4:80.243.212.107 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX landiswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.landiswil.ch CNAME → selector1-landiswil-ch._domainkey.landiswilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.landiswil.ch CNAME → selector2-landiswil-ch._domainkey.landiswilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"614":{"name":"Linden","canton":"Kanton Bern","domain":"linden.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"615":{"name":"Mirchel","canton":"Kanton Bern","domain":"mirchel.ch","mx":["mail.evohost.ch"],"spf":"v=spf1 a mx a:mail.tcnet.ch ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.mirchel.ch CNAME → selector1-mirchel-ch._domainkey.gemeindemirchel.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.mirchel.ch CNAME → selector2-mirchel-ch._domainkey.gemeindemirchel.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"616":{"name":"Münsingen","canton":"Kanton Bern","domain":"muensingen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a:mrmuensingen01.muensingen.ch mx a:incms00.incms.com a:incms01.incms.com a:incms02.incms.com a:incms03.incms.com a:incms04.incms.com include:spf.protection.outlook.com include:_spf.talus.ch include:spf.mailjet.com ip4:116.203.46.102 -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"617":{"name":"Niederhünigen","canton":"Kanton Bern","domain":"niederhuenigen.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"619":{"name":"Oberdiessbach","canton":"Kanton Bern","domain":"oberdiessbach.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 mx mx:mx.mail.33084.hostserv.eu mx:mxpool.de2.hostedoffice.ag include:spf.hornetsecurity.com ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"620":{"name":"Oberthal","canton":"Kanton Bern","domain":"oberthal.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 include:_spf.talus.ch include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"622":{"name":"Oppligen","canton":"Kanton Bern","domain":"oppligen.ch","mx":["oppligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX oppligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"623":{"name":"Rubigen","canton":"Kanton Bern","domain":"rubigen.swiss","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a mx include:sendgrid.net include:_spf.talus.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"626":{"name":"Walkringen","canton":"Kanton Bern","domain":"walkringen.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mrmuensingen01.muensingen.ch"],"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch include:spf.zic-network.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"627":{"name":"Worb","canton":"Kanton Bern","domain":"worb.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"628":{"name":"Zäziwil","canton":"Kanton Bern","domain":"zaeziwil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mrmuensingen01.muensingen.ch"],"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"629":{"name":"Oberhünigen","canton":"Kanton Bern","domain":"oberhuenigen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"630":{"name":"Allmendingen","canton":"Kanton Bern","domain":"allmendingen.ch","mx":["allmendingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX allmendingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"632":{"name":"Wichtrach","canton":"Kanton Bern","domain":"wichtrach.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 ip4:212.243.26.162 mx:talus.ch a:incms00.incms.com a:incms01.incms.com a:incms02.incms.com a:incms03.incms.com a:incms04.incms.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"662":{"name":"Ferenbalm","canton":"Kanton Bern","domain":"ferenbalm.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"663":{"name":"Frauenkappelen","canton":"Kanton Bern","domain":"frauenkappelen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 Include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"665":{"name":"Gurbrü","canton":"Kanton Bern","domain":"gurbrue.ch","mx":["gurbrue-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gurbrue-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gurbrue.ch CNAME → selector1-gurbrue-ch._domainkey.gurbrue.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gurbrue.ch CNAME → selector2-gurbrue-ch._domainkey.gurbrue.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"666":{"name":"Kriechenwil","canton":"Kanton Bern","domain":"kriechenwil.ch","mx":["kriechenwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kriechenwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"667":{"name":"Laupen","canton":"Kanton Bern","domain":"laupen-be.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx include:_spf.talus.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"668":{"name":"Mühleberg","canton":"Kanton Bern","domain":"muehleberg.ch","mx":["mailbackup.muehleberg.ch","utm.muehleberg.ch"],"spf":"v=spf1 mx a:schulemuehleberg.ch a:muehleberg.ch include:_spf.talus.ch include:_spf_eucentral1.prod.hydra.sophos.com -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"669":{"name":"Münchenwiler","canton":"Kanton Bern","domain":"muenchenwiler.ch","mx":["mx01.tophost.ch","mx02.tophost.ch"],"spf":"v=spf1 ip4:46.232.178.29 +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"670":{"name":"Neuenegg","canton":"Kanton Bern","domain":"neuenegg.ch","mx":["neuenegg-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.140.147.32/30 include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX neuenegg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.neuenegg.ch CNAME → selector1-neuenegg-ch._domainkey.neuenegg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.neuenegg.ch CNAME → selector2-neuenegg-ch._domainkey.neuenegg.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"671":{"name":"Wileroltigen","canton":"Kanton Bern","domain":"wileroltigen.ch","mx":["wileroltigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wileroltigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wileroltigen.ch CNAME → selector1-wileroltigen-ch._domainkey.gemeindewileroltigen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wileroltigen.ch CNAME → selector2-wileroltigen-ch._domainkey.gemeindewileroltigen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"681":{"name":"Belprahon","canton":"Kanton Bern","domain":"belprahon.ch","mx":["belprahon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX belprahon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"683":{"name":"Champoz","canton":"Kanton Bern","domain":"champoz.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"687":{"name":"Corcelles (BE)","canton":"Kanton Bern","domain":"corcelles-be.ch","mx":["corcellesbe-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:sirius.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX corcellesbe-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"690":{"name":"Court","canton":"Kanton Bern","domain":"court.ch","mx":["court-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX court-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"691":{"name":"Crémines","canton":"Kanton Bern","domain":"cremines.ch","mx":["mail.cremines.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch include:_spf.google.com +mx +a -all","provider":"google","category":"us-cloud","classification_confidence":52.0,"classification_signals":[{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"692":{"name":"Eschert","canton":"Kanton Bern","domain":"eschert.ch","mx":["mail.eschert.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"694":{"name":"Grandval","canton":"Kanton Bern","domain":"grandval.ch","mx":["grandval-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grandval-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.grandval.ch CNAME → selector1-grandval-ch._domainkey.grandval.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.grandval.ch CNAME → selector2-grandval-ch._domainkey.grandval.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"696":{"name":"Loveresse","canton":"Kanton Bern","domain":"loveresse.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"701":{"name":"Perrefitte","canton":"Kanton Bern","domain":"perrefitte.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:spf.infomaniak.ch include:spf.protection.outlook.com include:evok.ch ip4:212.71.120.144/28 -all ","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"}]},"703":{"name":"Reconvilier","canton":"Kanton Bern","domain":"reconvilier.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 ip4:128.65.195.253 mx a ip4:185.98.28.32 include:mail.infomaniak.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"704":{"name":"Roches (BE)","canton":"Kanton Bern","domain":"roches.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch a:exomail.sirius.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"706":{"name":"Saicourt","canton":"Kanton Bern","domain":"saicourt.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"707":{"name":"Saules (BE)","canton":"Kanton Bern","domain":"saules-be.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"708":{"name":"Schelten","canton":"Kanton Bern","domain":"gemeinde-schelten.ch","mx":["gemeindeschelten-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindeschelten-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"709":{"name":"Seehof","canton":"Kanton Bern","domain":"gemeindeseehof.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"711":{"name":"Sorvilier","canton":"Kanton Bern","domain":"sorvilier.ch","mx":["mail.sorvilier.ch"],"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"713":{"name":"Tavannes","canton":"Kanton Bern","domain":"tavannes.ch","mx":["tavannes-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tavannes-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"715":{"name":"Rebévelier","canton":"Kanton Bern","domain":"bluewin.ch","mx":["mx01.p.bluenet.ch","mx02.p.bluenet.ch"],"spf":"v=spf1 redirect=_spf.bluewin.ch","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"716":{"name":"Petit-Val","canton":"Kanton Bern","domain":"petit-val.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"717":{"name":"Valbirse","canton":"Kanton Bern","domain":"valbirse.ch","mx":["mx140.zline.ch","mx3.zline.ch","mx30.zline.ch"],"spf":"v=spf1 ip4:81.62.215.50 ip4:136.243.25.75 ip4:185.98.28.121 include:spf.zline.ch mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"723":{"name":"La Neuveville","canton":"Kanton Bern","domain":"neuveville.ch","mx":["neuveville-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:smtp.neuveville.ch a:smtp-pro.vtx.ch a:smtp-as-02.vtxnet.net ip4:46.140.73.146 ip4:194.38.175.142 ip4:185.48.146.63 include:spf.mandrillapp.com ip4:5.148.181.63 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX neuveville-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.neuveville.ch CNAME → selector1-neuveville-ch._domainkey.neuveville.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.neuveville.ch CNAME → selector2-neuveville-ch._domainkey.neuveville.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"}]},"724":{"name":"Nods","canton":"Kanton Bern","domain":"nods.ch","mx":["nods-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nods-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.nods.ch CNAME → selector1-nods-ch._domainkey.communenods.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.nods.ch CNAME → selector2-nods-ch._domainkey.communenods.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"726":{"name":"Plateau de Diesse","canton":"Kanton Bern","domain":"leplateaudediesse.ch","mx":["leplateaudediesse-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.140.98.102 ip4:185.48.146.134 include:spf.mandrillapp.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leplateaudediesse-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.leplateaudediesse.ch CNAME → selector1-leplateaudediesse-ch._domainkey.leplateaudediesse.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.leplateaudediesse.ch CNAME → selector2-leplateaudediesse-ch._domainkey.leplateaudediesse.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"731":{"name":"Aegerten","canton":"Kanton Bern","domain":"aegerten.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"732":{"name":"Bellmund","canton":"Kanton Bern","domain":"bellmund.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"733":{"name":"Brügg","canton":"Kanton Bern","domain":"bruegg.ch","mx":["bruegg-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.142.162.16/28 a:mail.evard.ch include:_spf.talus.ch include:_spf.sui-inter.net include:spf.mailjet.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bruegg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bruegg.ch CNAME → selector1-bruegg-ch._domainkey.gemeindebruegg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bruegg.ch CNAME → selector2-bruegg-ch._domainkey.gemeindebruegg.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"734":{"name":"Bühl","canton":"Kanton Bern","domain":"buehl.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"735":{"name":"Epsach","canton":"Kanton Bern","domain":"epsach.ch","mx":["mail.epsach.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":60.0,"classification_signals":[]},"736":{"name":"Hagneck","canton":"Kanton Bern","domain":"hagneck.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"737":{"name":"Hermrigen","canton":"Kanton Bern","domain":"hermrigen.ch","mx":["hermrigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.webstyle.ch include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hermrigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"738":{"name":"Jens","canton":"Kanton Bern","domain":"jens.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 a mx ptr include:_spf.pcetera.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"hornetsecurity"},"739":{"name":"Ipsach","canton":"Kanton Bern","domain":"ipsach.ch","mx":["ipsach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com mx:talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ipsach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"740":{"name":"Ligerz","canton":"Kanton Bern","domain":"ligerz.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 +a +mx +a:rlx3.loginserver.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"741":{"name":"Merzligen","canton":"Kanton Bern","domain":"merzligen.ch","mx":["merzligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.47.190.0/24 ip4:80.74.156.101 ip4:213.142.191.105 ip4:80.74.156.100 ip4:94.126.17.100 ip4:94.126.17.102 ip4:94.126.17.101 ip4:94.126.17.104 include:spf.protection.outlook.com include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX merzligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.merzligen.ch CNAME → selector1-merzligen-ch._domainkey.merzligench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.merzligen.ch CNAME → selector2-merzligen-ch._domainkey.merzligench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"742":{"name":"Mörigen","canton":"Kanton Bern","domain":"moerigen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"743":{"name":"Nidau","canton":"Kanton Bern","domain":"nidau.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"744":{"name":"Orpund","canton":"Kanton Bern","domain":"orpund.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"745":{"name":"Port","canton":"Kanton Bern","domain":"port.ch","mx":["port-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX port-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"746":{"name":"Safnern","canton":"Kanton Bern","domain":"safnern.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"747":{"name":"Scheuren","canton":"Kanton Bern","domain":"scheuren.ch","mx":["scheuren-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX scheuren-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"748":{"name":"Schwadernau","canton":"Kanton Bern","domain":"schwadernau.ch","mx":["mail.schwadernau.ch"],"spf":"v=spf1 +a +mx +a:rlx7.loginserver.ch include:_spf.blk.ymc.swiss -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"749":{"name":"Studen (BE)","canton":"Kanton Bern","domain":"studen.ch","mx":["studen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX studen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.studen.ch CNAME → selector1-studen-ch._domainkey.studenbe.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.studen.ch CNAME → selector2-studen-ch._domainkey.studenbe.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"750":{"name":"Sutz-Lattrigen","canton":"Kanton Bern","domain":"sutz-lattrigen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"751":{"name":"Täuffelen","canton":"Kanton Bern","domain":"taeuffelen.ch","mx":["taeuffelen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX taeuffelen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"754":{"name":"Walperswil","canton":"Kanton Bern","domain":"walperswil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"755":{"name":"Worben","canton":"Kanton Bern","domain":"worben.ch","mx":["worben-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX worben-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.worben.ch CNAME → selector1-worben-ch._domainkey.ewgworben.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.worben.ch CNAME → selector2-worben-ch._domainkey.ewgworben.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"756":{"name":"Twann-Tüscherz","canton":"Kanton Bern","domain":"twann-tuescherz.ch","mx":["twanntuescherz-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 a ip4:195.186.123.33 ip4:195.186.136.33 ip4:195.186.123.34 ip4:195.186.136.34 include:_spf.i-web.ch include:spf.protection.outlook.com include:mx.dvbern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX twanntuescherz-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.twann-tuescherz.ch CNAME → selector1-twanntuescherz-ch01c._domainkey.twanntuescherz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.twann-tuescherz.ch CNAME → selector2-twanntuescherz-ch01c._domainkey.twanntuescherz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"761":{"name":"Därstetten","canton":"Kanton Bern","domain":"daerstetten.ch","mx":["mail.daerstetten.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"762":{"name":"Diemtigen","canton":"Kanton Bern","domain":"diemtigen.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 include:edgepilot.com include:_spf.talus.ch include:spf.protection.outlook.com include:_spf.pcetera.ch ip4:217.11.37.66 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"hornetsecurity"},"763":{"name":"Erlenbach im Simmental","canton":"Kanton Bern","domain":"erlenbach-be.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"766":{"name":"Oberwil im Simmental","canton":"Kanton Bern","domain":"oberwil-im-simmental.ch","mx":["oberwilimsimmental-ch01ie.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberwilimsimmental-ch01ie.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"767":{"name":"Reutigen","canton":"Kanton Bern","domain":"reutigen.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 include:_spf.pcetera.ch include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"768":{"name":"Spiez","canton":"Kanton Bern","domain":"spiez.ch","mx":["mx1.thun.ch","mx2.thun.ch"],"spf":"v=spf1 ip4:82.220.26.128/26 ip4:194.56.218.181 mx include:thunersee.ch include:_spf.talus.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.spiez.ch CNAME → selector1-spiez-ch._domainkey.stadtthun.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.spiez.ch CNAME → selector2-spiez-ch._domainkey.stadtthun.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"769":{"name":"Wimmis","canton":"Kanton Bern","domain":"wimmis.ch","mx":["wimmis-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wimmis-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wimmis.ch CNAME → selector1-wimmis-ch._domainkey.gemeindewimmis.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wimmis.ch CNAME → selector2-wimmis-ch._domainkey.gemeindewimmis.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"770":{"name":"Stocken-Höfen","canton":"Kanton Bern","domain":"stocken-hoefen.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a:owa.itze.ch include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"}]},"782":{"name":"Guttannen","canton":"Kanton Bern","domain":"guttannen.ch","mx":["mx.stackmail.com"],"spf":"v=spf1 include:spf.stackmail.com a mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"783":{"name":"Hasliberg","canton":"Kanton Bern","domain":"hasliberg.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip:139.162.174.9 a:webcms.ruf.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"784":{"name":"Innertkirchen","canton":"Kanton Bern","domain":"innertkirchen.ch","mx":["innertkirchen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX innertkirchen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"785":{"name":"Meiringen","canton":"Kanton Bern","domain":"meiringen.ch","mx":["meiringen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:utm.meiringen.ch include:spf.protection.outlook.com include:spf.nl2go.com a:mail.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX meiringen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.meiringen.ch CNAME → selector1-meiringen-ch._domainkey.meiringench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.meiringen.ch CNAME → selector2-meiringen-ch._domainkey.meiringench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"786":{"name":"Schattenhalb","canton":"Kanton Bern","domain":"schattenhalb.ch","mx":["schattenhalb-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX schattenhalb-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"791":{"name":"Boltigen","canton":"Kanton Bern","domain":"boltigen.ch","mx":["boltigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX boltigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"792":{"name":"Lenk","canton":"Kanton Bern","domain":"lenkgemeinde.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a mx ip4:83.173.225.118 include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"793":{"name":"St. Stephan","canton":"Kanton Bern","domain":"ststephan.ch","mx":["ststephan-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:mail.ststephan.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ststephan-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"794":{"name":"Zweisimmen","canton":"Kanton Bern","domain":"zweisimmen.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a a:owa.itze.ch include:spf.company.swiss-egov.cloud include:_spf.blk.ymc.swiss -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"}]},"841":{"name":"Gsteig","canton":"Kanton Bern","domain":"gsteig.ch","mx":["gsteig-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gsteig-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"842":{"name":"Lauenen","canton":"Kanton Bern","domain":"lauenen.ch","mx":["lauenen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lauenen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"843":{"name":"Saanen","canton":"Kanton Bern","domain":"saanen.ch","mx":["mail.saanen.ch"],"spf":"v=spf1 mx ip4:195.65.182.181 include:_spf.talus.ch include:_spf.sui-inter.net ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"852":{"name":"Guggisberg","canton":"Kanton Bern","domain":"guggisberg-be.ch","mx":["guggisbergbe-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX guggisbergbe-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"853":{"name":"Rüschegg","canton":"Kanton Bern","domain":"rueschegg.ch","mx":["rueschegg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a mx a:rlx5.loginserver.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rueschegg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"855":{"name":"Schwarzenburg","canton":"Kanton Bern","domain":"schwarzenburg.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 mx ip4:194.88.197.38 ip4:194.88.197.163 include:spf.mail.weloveyou.systems include:_spf.talus.ch include:_spf.sui-inter.net ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"861":{"name":"Belp","canton":"Kanton Bern","domain":"belp.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 include:spf.mailjet.com a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"863":{"name":"Burgistein","canton":"Kanton Bern","domain":"burgistein.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 a:smtp.iz-net.ch include:itds-net.ch include:welsrv01.trendhosting-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"866":{"name":"Gerzensee","canton":"Kanton Bern","domain":"gerzensee.ch","mx":["gerzensee-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:webcms.ruf.ch include:_spf.talus.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gerzensee-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"867":{"name":"Gurzelen","canton":"Kanton Bern","domain":"gurzelen.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"868":{"name":"Jaberg","canton":"Kanton Bern","domain":"jaberg.ch","mx":["jaberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX jaberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"869":{"name":"Kaufdorf","canton":"Kanton Bern","domain":"kaufdorf.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 include:spf.iz-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"870":{"name":"Kehrsatz","canton":"Kanton Bern","domain":"kehrsatz.ch","mx":["public.iz-net.ch","smtp.iz-net.ch"],"spf":"v=spf1 ip4:193.135.56.6 include:spf.iz-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"872":{"name":"Kirchdorf (BE)","canton":"Kanton Bern","domain":"kirchdorf-be.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"877":{"name":"Niedermuhlern","canton":"Kanton Bern","domain":"niedermuhlern.ch","mx":["exchange.hosttech.eu"],"spf":"v=spf1 +mx +a include:_spf.mail.hostserv.eu ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"879":{"name":"Riggisberg","canton":"Kanton Bern","domain":"riggisberg.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:itds-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"880":{"name":"Rüeggisberg","canton":"Kanton Bern","domain":"rueggisberg.ch","mx":["mx-in-01.itds.ch","mx2.itds.ch"],"spf":"v=spf1 a mx include:itds-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"883":{"name":"Seftigen","canton":"Kanton Bern","domain":"seftigen.ch","mx":["mx1.thun.ch","mx2.thun.ch"],"spf":"v=spf1 a mx ip4:82.220.26.128/26 include:spf.protection.cyon.net ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"884":{"name":"Toffen","canton":"Kanton Bern","domain":"toffen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"885":{"name":"Uttigen","canton":"Kanton Bern","domain":"uttigen.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx include:_spf.talus.ch include:spf.mail.webland.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"886":{"name":"Wattenwil","canton":"Kanton Bern","domain":"wattenwil.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.pcetera.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":70.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"888":{"name":"Wald (BE)","canton":"Kanton Bern","domain":"wald-be.ch","mx":["smtp.iz-net.ch"],"spf":"v=spf1 include:spf.iz-net.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"889":{"name":"Thurnen","canton":"Kanton Bern","domain":"thurnen.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 include:itds-net.ch include:_spf.pcetera.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"901":{"name":"Eggiwil","canton":"Kanton Bern","domain":"eggiwil.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 mx ip4:212.101.27.209 include:spf.zic-network.ch include:_spf.pcetera.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"hornetsecurity"},"902":{"name":"Langnau im Emmental","canton":"Kanton Bern","domain":"langnau-ie.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a:remote.langnau-ie.ch ip4:193.135.56.6 include:spf.crsend.com +mx +a include:spf.mail.balzcloud.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"903":{"name":"Lauperswil","canton":"Kanton Bern","domain":"lauperswil.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"904":{"name":"Röthenbach im Emmental","canton":"Kanton Bern","domain":"roethenbach.ch","mx":["roethenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX roethenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.roethenbach.ch CNAME → selector1-roethenbach-ch._domainkey.roethenbachch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.roethenbach.ch CNAME → selector2-roethenbach-ch._domainkey.roethenbachch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"905":{"name":"Rüderswil","canton":"Kanton Bern","domain":"ruederswil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mrmuensingen01.muensingen.ch"],"spf":"v=spf1 include:spf.computech.ch include:_spf.talus.ch mx a:mrmuensingen01.muensingen.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"906":{"name":"Schangnau","canton":"Kanton Bern","domain":"schangnau.ch","mx":["schangnau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.zic-network.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schangnau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"907":{"name":"Signau","canton":"Kanton Bern","domain":"signau.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mrmuensingen01.muensingen.ch"],"spf":"v=spf1 mx a:mrmuensingen01.muensingen.ch include:_spf.talus.ch include:spf.zic-network.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"908":{"name":"Trub","canton":"Kanton Bern","domain":"trub.ch","mx":["trub-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:trub.hikunden.ch ip4:164.128.184.242 include:_spf.ewmail.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX trub-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"909":{"name":"Trubschachen","canton":"Kanton Bern","domain":"trubschachen.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a:mail.dsl-schweiz.ch ip4:46.140.158.131 ip4:87.237.172.249 ip4:80.243.212.135 ip4:93.189.64.7 include:spf.zic-network.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"921":{"name":"Amsoldingen","canton":"Kanton Bern","domain":"amsoldingen.ch","mx":["amsoldingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.103.81.85 ip4:109.164.225.66 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX amsoldingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"922":{"name":"Blumenstein","canton":"Kanton Bern","domain":"blumenstein.ch","mx":["blumenstein-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX blumenstein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"923":{"name":"Buchholterberg","canton":"Kanton Bern","domain":"buchholterberg.ch","mx":["buchholterberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:pcetera.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buchholterberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"924":{"name":"Eriz","canton":"Kanton Bern","domain":"eriz.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 a mx ptr include:pcetera.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"hornetsecurity"},"925":{"name":"Fahrni","canton":"Kanton Bern","domain":"gemeinde-fahrni.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 include:_spf.pcetera.ch include:spf.cloudrexx.com -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"hornetsecurity"},"927":{"name":"Heiligenschwendi","canton":"Kanton Bern","domain":"heiligenschwendi.ch","mx":["mx01.servicehoster.ch","mx02.servicehoster.ch"],"spf":"v=spf1 include:servicehoster.ch include:spf1.egeko.ch a mx ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"928":{"name":"Heimberg","canton":"Kanton Bern","domain":"heimberg.ch","mx":["mx1.thun.ch","mx2.thun.ch"],"spf":"v=spf1 ip4:82.220.26.128/26 ip4:212.103.81.85 ip4:146.4.11.86 include:spf.internetgalerie.ch include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"929":{"name":"Hilterfingen","canton":"Kanton Bern","domain":"hilterfingen.ch","mx":["mx1.thun.ch","mx2.thun.ch"],"spf":"v=spf1 ip4:82.220.26.128/26 include:spf.mail.weloveyou.systems mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"931":{"name":"Homberg","canton":"Kanton Bern","domain":"homberg.ch","mx":["homberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX homberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"932":{"name":"Horrenbach-Buchen","canton":"Kanton Bern","domain":"horrenbach-buchen.ch","mx":["horrenbachbuchen-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.firestorm.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX horrenbachbuchen-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"934":{"name":"Oberhofen am Thunersee","canton":"Kanton Bern","domain":"oberhofen.ch","mx":["mx1.thun.ch","mx2.thun.ch"],"spf":"v=spf1 ip4:82.220.26.128/26 mx include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oberhofen.ch CNAME → selector1-oberhofen-ch._domainkey.stadtthun.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oberhofen.ch CNAME → selector2-oberhofen-ch._domainkey.stadtthun.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"935":{"name":"Oberlangenegg","canton":"Kanton Bern","domain":"oberlangenegg.ch","mx":["oberlangenegg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX oberlangenegg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"936":{"name":"Pohlern","canton":"Kanton Bern","domain":"pohlern.ch","mx":["pohlern-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:185.136.122.14 include:spf.protection.outlook.com include:spf1.egeko.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pohlern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"938":{"name":"Sigriswil","canton":"Kanton Bern","domain":"sigriswil.ch","mx":["emailsecurity.sigriswil.ch"],"spf":"v=spf1 a mx ip4:109.164.226.120/29 ip4:193.135.56.6 include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"939":{"name":"Steffisburg","canton":"Kanton Bern","domain":"steffisburg.ch","mx":["mail.steffisburg.ch"],"spf":"v=spf1 mx ip4:192.168.36.0/24 ip4:192.162.205.155/32 ip4:192.162.205.152/32 ip4:62.2.126.112/28 ip4:31.10.206.136/29 ip4:212.71.120.144/28 include:_spf.talus.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.steffisburg.ch CNAME → selector1-steffisburg-ch._domainkey.steffisburg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.steffisburg.ch CNAME → selector2-steffisburg-ch._domainkey.steffisburg.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"940":{"name":"Teuffenthal (BE)","canton":"Kanton Bern","domain":"teuffenthal.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"941":{"name":"Thierachern","canton":"Kanton Bern","domain":"thierachern.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"942":{"name":"Thun","canton":"Kanton Bern","domain":"thun.ch","mx":["mx1.thun.ch","mx2.thun.ch"],"spf":"v=spf1 ip4:82.220.26.128/26 include:spf.internetgalerie.ch mx include:spf.cloudrexx.com include:_spf.i-web.ch include:_spf.sui-inter.net include:spf.protection.outlook.com a:c.spf.service-now.com a:mail.codx.ch include:spf.mandrillapp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.thun.ch CNAME → selector1-thun-ch._domainkey.stadtthun.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.thun.ch CNAME → selector2-thun-ch._domainkey.stadtthun.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"943":{"name":"Uebeschi","canton":"Kanton Bern","domain":"uebeschi.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a a:owa.itze.ch include:spf.mail.balzcloud.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"}]},"944":{"name":"Uetendorf","canton":"Kanton Bern","domain":"uetendorf.ch","mx":["uetendorf-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:83.173.216.104/29 ip4:193.135.56.6 ip4:194.56.218.181 include:_spf.ch.seppmail.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"945":{"name":"Unterlangenegg","canton":"Kanton Bern","domain":"unterlangenegg.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 ip4:80.74.155.167 include:_spf.pcetera.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"946":{"name":"Wachseldorn","canton":"Kanton Bern","domain":"wachseldorn.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":60.0,"classification_signals":[],"gateway":"hornetsecurity"},"948":{"name":"Forst-Längenbühl","canton":"Kanton Bern","domain":"3636.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 include:_spf.pcetera.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"951":{"name":"Affoltern im Emmental","canton":"Kanton Bern","domain":"affolternimemmental.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a:owa.itze.ch include:itds-net.ch include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"}]},"952":{"name":"Dürrenroth","canton":"Kanton Bern","domain":"duerrenroth.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"953":{"name":"Eriswil","canton":"Kanton Bern","domain":"eriswil.ch","mx":["eriswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:remote.eriswil.ch ip4:213.200.243.187 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eriswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"954":{"name":"Huttwil","canton":"Kanton Bern","domain":"huttwil.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a a:owa.huttwil.ch ip4:193.135.56.6 include:_spf.i-web.ch include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"955":{"name":"Lützelflüh","canton":"Kanton Bern","domain":"luetzelflueh.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"956":{"name":"Rüegsau","canton":"Kanton Bern","domain":"ruegsau.ch","mx":["ruegsau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ruegsau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ruegsau.ch CNAME → selector1-ruegsau-ch._domainkey.gemeinderueegsau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ruegsau.ch CNAME → selector2-ruegsau-ch._domainkey.gemeinderueegsau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"957":{"name":"Sumiswald","canton":"Kanton Bern","domain":"sumiswald.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a:owa.sumiswald.ch mx:talus.ch ip4:134.119.224.42 include:spf.mail.balzcloud.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"958":{"name":"Trachselwald","canton":"Kanton Bern","domain":"trachselwald.ch","mx":["trachselwald-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.mail.balzcloud.ch include:spf.zic-network.ch include:spf.protection.outlook.com include:spf1.egeko.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX trachselwald-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.trachselwald.ch CNAME → selector1-trachselwald-ch._domainkey.trachselwald.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.trachselwald.ch CNAME → selector2-trachselwald-ch._domainkey.trachselwald.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"959":{"name":"Walterswil (BE)","canton":"Kanton Bern","domain":"walterswil-be.ch","mx":["walterswilbe-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX walterswilbe-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"960":{"name":"Wyssachen","canton":"Kanton Bern","domain":"wyssachen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 a mx a:mail-gateway-shared01.cyon.net ip4:194.126.4.84 include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"971":{"name":"Attiswil","canton":"Kanton Bern","domain":"attiswil.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.sui-inter.net -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"972":{"name":"Berken","canton":"Kanton Bern","domain":"inkwil.ch","mx":["inkwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX inkwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.inkwil.ch CNAME → selector1-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.inkwil.ch CNAME → selector2-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"973":{"name":"Bettenhausen","canton":"Kanton Bern","domain":"bettenhausen.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 a mx include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"975":{"name":"Farnern","canton":"Kanton Bern","domain":"farnern.ch","mx":["farnern-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX farnern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.farnern.ch CNAME → selector1-farnern-ch._domainkey.gemeindefarnernch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.farnern.ch CNAME → selector2-farnern-ch._domainkey.gemeindefarnernch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"976":{"name":"Graben","canton":"Kanton Bern","domain":"graben.ch","mx":["graben-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:relay.mailchannels.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX graben-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"977":{"name":"Heimenhausen","canton":"Kanton Bern","domain":"heimenhausen.ch","mx":["heimenhausen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX heimenhausen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"979":{"name":"Herzogenbuchsee","canton":"Kanton Bern","domain":"herzogenbuchsee.ch","mx":["herzogenbuchsee-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a Include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud a:mail.obt-services.ch ip4:213.221.253.83 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX herzogenbuchsee-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.herzogenbuchsee.ch CNAME → selector1-herzogenbuchsee-ch._domainkey.herzogenbuchseecloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.herzogenbuchsee.ch CNAME → selector2-herzogenbuchsee-ch._domainkey.herzogenbuchseecloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"980":{"name":"Inkwil","canton":"Kanton Bern","domain":"inkwil.ch","mx":["inkwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX inkwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.inkwil.ch CNAME → selector1-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.inkwil.ch CNAME → selector2-inkwil-ch._domainkey.gemeindeinkwilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"981":{"name":"Niederbipp","canton":"Kanton Bern","domain":"niederbipp.ch","mx":["niederbipp-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX niederbipp-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.niederbipp.ch CNAME → selector1-niederbipp-ch._domainkey.gemeindeniederbippch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.niederbipp.ch CNAME → selector2-niederbipp-ch._domainkey.gemeindeniederbippch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"982":{"name":"Niederönz","canton":"Kanton Bern","domain":"niederoenz.ch","mx":["niederoenz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX niederoenz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"983":{"name":"Oberbipp","canton":"Kanton Bern","domain":"oberbipp.ch","mx":["oberbipp-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com IP4:213.221.250.130 include:_spf.sui-inter.net include:_spf.talus.ch +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberbipp-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"985":{"name":"Ochlenberg","canton":"Kanton Bern","domain":"ochlenberg.ch","mx":["mailgate.zic-network.ch"],"spf":"v=spf1 a mx a:owa.itze.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"}]},"987":{"name":"Rumisberg","canton":"Kanton Bern","domain":"rumisberg.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 ip4:193.135.56.6 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"988":{"name":"Seeberg","canton":"Kanton Bern","domain":"seeberg.ch","mx":["seeberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX seeberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"989":{"name":"Thörigen","canton":"Kanton Bern","domain":"thoerigen.ch","mx":["thoerigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX thoerigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"990":{"name":"Walliswil bei Niederbipp","canton":"Kanton Bern","domain":"walliswil-bipp.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":62.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"991":{"name":"Walliswil bei Wangen","canton":"Kanton Bern","domain":"walliswil.ch","mx":["walliswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch include:rzmail.hi-ag.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX walliswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.walliswil.ch CNAME → selector1-walliswil-ch._domainkey.gemeindewalliswilbwch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.walliswil.ch CNAME → selector2-walliswil-ch._domainkey.gemeindewalliswilbwch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"992":{"name":"Wangen an der Aare","canton":"Kanton Bern","domain":"wangen-a-a.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"995":{"name":"Wiedlisbach","canton":"Kanton Bern","domain":"wiedlisbach.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"1001":{"name":"Doppleschwand","canton":"","domain":"doppleschwand.ch","mx":["doppleschwand-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:wan-ip101.schule-doppleschwand.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX doppleschwand-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1002":{"name":"Entlebuch","canton":"","domain":"entlebuch.ch","mx":["entlebuch-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 ip4:185.80.66.250/29 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX entlebuch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.entlebuch.ch CNAME → selector1-entlebuch-ch._domainkey.entlebuch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.entlebuch.ch CNAME → selector2-entlebuch-ch._domainkey.entlebuch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1004":{"name":"Flühli","canton":"","domain":"fluehli.ch","mx":["fluehli-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:217.26.53.175 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fluehli-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1005":{"name":"Hasle (LU)","canton":"","domain":"hasle-lu.ch","mx":["haslelu-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 a:wan-ip101.hasle-lu.ch include:spf.protection.outlook.com include:_spf.mail.hostpoint.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX haslelu-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1007":{"name":"Romoos","canton":"","domain":"romoos.ch","mx":["romoos-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:wan-ip101.romoos.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX romoos-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1008":{"name":"Schüpfheim","canton":"","domain":"schuepfheim.ch","mx":["schuepfheim-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:217.26.52.10 ip4:164.128.132.128/29 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch include:spf.customer.swiss-egov.cloud a:webmail.schuepfheim.ch include:spf.protection.cyon.net ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schuepfheim-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1009":{"name":"Werthenstein","canton":"","domain":"werthenstein.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch include:_spf.psm.knowbe4.com include:spf.mail.hostpoint.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1010":{"name":"Escholzmatt-Marbach","canton":"","domain":"escholzmatt-marbach.ch","mx":["escholzmattmarbach-ch02i.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:tkcloud.ch include:spf.protection.outlook.com include:_spf.mail.hostpoint.ch include:spf.protection.cyon.net ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX escholzmattmarbach-ch02i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1021":{"name":"Aesch (LU)","canton":"Kanton Luzern","domain":"aesch-lu.ch","mx":["aeschlu-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX aeschlu-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1023":{"name":"Ballwil","canton":"Kanton Luzern","domain":"ballwil.ch","mx":["mail.ballwil.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1024":{"name":"Emmen","canton":"Kanton Luzern","domain":"emmen.ch","mx":["mail.emmen.ch"],"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1025":{"name":"Ermensee","canton":"Kanton Luzern","domain":"ermensee.ch","mx":["mail.ermensee.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1026":{"name":"Eschenbach (LU)","canton":"Kanton Luzern","domain":"eschenbach-luzern.ch","mx":["mail.eschenbach-luzern.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1030":{"name":"Hitzkirch","canton":"Kanton Luzern","domain":"hitzkirch.ch","mx":["hitzkirch-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:mail.ostendis.ch include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX hitzkirch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1031":{"name":"Hochdorf","canton":"Kanton Luzern","domain":"hochdorf.ch","mx":["mail.hochdorf.ch"],"spf":"v=spf1 mx +ip4:193.135.56.6 +ip4:172.211.79.21 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1032":{"name":"Hohenrain","canton":"Kanton Luzern","domain":"hohenrain.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"1033":{"name":"Inwil","canton":"Kanton Luzern","domain":"inwil.ch","mx":["mail.inwil.ch"],"spf":"v=spf1 mx ip4:80.74.136.182 ip4:194.124.233.150 include:spf.cloudrexx.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1037":{"name":"Rain","canton":"Kanton Luzern","domain":"rain.ch","mx":["rain-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abacuscity.ch a:slu-w0ssf1.stadtluzern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rain-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rain.ch CNAME → selector1-rain-ch._domainkey.rainlucloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rain.ch CNAME → selector2-rain-ch._domainkey.rainlucloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1039":{"name":"Römerswil","canton":"Kanton Luzern","domain":"roemerswil.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"1040":{"name":"Rothenburg","canton":"Kanton Luzern","domain":"rothenburg.ch","mx":["mail.rothenburg.ch"],"spf":"v=spf1 mx include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1041":{"name":"Schongau","canton":"Kanton Luzern","domain":"schongau.ch","mx":["mx1.seabix.cloud","mx2.seabix.cloud"],"spf":"v=spf1 mx include:spf.sendinblue.com include:spf.smtp2go.com -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1051":{"name":"Adligenswil","canton":"Kanton Luzern","domain":"adligenswil.ch","mx":["adligenswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:ews45.everyware.ch include:tkcloud.ch ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX adligenswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.adligenswil.ch CNAME → selector1-adligenswil-ch._domainkey.gdeverwaltungadligenswil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.adligenswil.ch CNAME → selector2-adligenswil-ch._domainkey.gdeverwaltungadligenswil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1052":{"name":"Buchrain","canton":"Kanton Luzern","domain":"buchrain.ch","mx":["buchrain-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buchrain-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buchrain.ch CNAME → selector1-buchrain-ch._domainkey.buchrain.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buchrain.ch CNAME → selector2-buchrain-ch._domainkey.buchrain.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1053":{"name":"Dierikon","canton":"Kanton Luzern","domain":"dierikon.ch","mx":["dierikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX dierikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1054":{"name":"Ebikon","canton":"Kanton Luzern","domain":"ebikon.ch","mx":["ebikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:81.62.185.142 ip4:46.227.226.108 ip4:146.4.16.26 ip4:212.80.96.0/21 ip4:91.194.196.10 ip4:87.117.127.202 ip6:2a01:7480:1:100::/64 include:servers.mcsv.net include:spf.protection.outlook.com redirect=spf.mail.hostpoint.ch","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ebikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ebikon.ch CNAME → selector1-ebikon-ch._domainkey.ebikongemeinde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ebikon.ch CNAME → selector2-ebikon-ch._domainkey.ebikongemeinde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1055":{"name":"Gisikon","canton":"Kanton Luzern","domain":"gisikon.ch","mx":["mail.gisikon.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.vtx.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1056":{"name":"Greppen","canton":"Kanton Luzern","domain":"greppen.ch","mx":["greppen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX greppen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1058":{"name":"Horw","canton":"Kanton Luzern","domain":"horw.ch","mx":["mailqueue01.horw.ch"],"spf":"v=spf1 a mx:horw.ch mx:schulen-horw.ch ip4:195.49.6.49 ip4:212.59.163.3 a:mail.i-web.ch include:_spf.i-web.ch include:servers.mcsv.net include:spf.abacuscity.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1059":{"name":"Kriens","canton":"Kanton Luzern","domain":"kriens.ch","mx":["mail.kriens.ch"],"spf":"v=spf1 mx +ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1061":{"name":"Luzern","canton":"Kanton Luzern","domain":"stadtluzern.ch","mx":["mail.stadtluzern.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:spf.privasphere.com include:spf.umantis.com ip4:194.209.100.10 ip4:5.102.147.208 a:mail.i-web.ch +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.stadtluzern.ch CNAME → selector1-stadtluzern-ch._domainkey.stadtluzern.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.stadtluzern.ch CNAME → selector2-stadtluzern-ch._domainkey.stadtluzern.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1062":{"name":"Malters","canton":"Kanton Luzern","domain":"malters.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1063":{"name":"Meggen","canton":"Kanton Luzern","domain":"meggen.ch","mx":["meggen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX meggen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1064":{"name":"Meierskappel","canton":"Kanton Luzern","domain":"meierskappel.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx ip4:193.135.56.6 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"1065":{"name":"Root","canton":"Kanton Luzern","domain":"gemeinde-root.ch","mx":["gemeinderoot-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeinderoot-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gemeinde-root.ch CNAME → selector1-gemeinderoot-ch02b._domainkey.gemeindeverwaltungroot.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gemeinde-root.ch CNAME → selector2-gemeinderoot-ch02b._domainkey.gemeindeverwaltungroot.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1066":{"name":"Schwarzenberg","canton":"Kanton Luzern","domain":"schwarzenberg.ch","mx":["alt1.aspmx.l.google.com","alt2.aspmx.l.google.com","aspmx.l.google.com"],"spf":"v=spf1 ip4:91.194.196.10 mx mx:admin.ch/16 include:_spf.google.com ~all","provider":"google","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"mx","detail":"MX alt1.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX alt2.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX aspmx.l.google.com matches google"},{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1067":{"name":"Udligenswil","canton":"Kanton Luzern","domain":"udligenswil.ch","mx":["udligenswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX udligenswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.udligenswil.ch CNAME → selector1-udligenswil-ch._domainkey.gemeindeudligenswil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.udligenswil.ch CNAME → selector2-udligenswil-ch._domainkey.gemeindeudligenswil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1068":{"name":"Vitznau","canton":"Kanton Luzern","domain":"vitznau.ch","mx":["vitznau-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.140.160.21 ip4:46.140.160.22 ip4:46.14.27.218 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vitznau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1069":{"name":"Weggis","canton":"Kanton Luzern","domain":"weggis.ch","mx":["weggis-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf.abacuscity.ch +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX weggis-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1081":{"name":"Beromünster","canton":"","domain":"beromuenster.ch","mx":["beromuenster-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:37.128.180.154 ip4:195.48.205.132 include:_spf.talus.ch include:_spf.i-web.ch include:spf.protection.outlook.com include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX beromuenster-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.beromuenster.ch CNAME → selector1-beromuenster-ch._domainkey.gemeindeberomuenster.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.beromuenster.ch CNAME → selector2-beromuenster-ch._domainkey.gemeindeberomuenster.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1082":{"name":"Büron","canton":"","domain":"bueron.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1083":{"name":"Buttisholz","canton":"","domain":"buttisholz.ch","mx":["mail.buttisholz.ch"],"spf":"v=spf1 mx include:_spf.i-web.ch +ip4:195.65.10.26 +ip4:194.40.156.100 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1084":{"name":"Eich","canton":"","domain":"eich.ch","mx":["eich-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eich-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.eich.ch CNAME → selector1-eich-ch._domainkey.gemeindeeich.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.eich.ch CNAME → selector2-eich-ch._domainkey.gemeindeeich.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1085":{"name":"Geuensee","canton":"","domain":"geuensee.ch","mx":["mail.geuensee.ch"],"spf":"v=spf1 mx include:spf.creanet.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1086":{"name":"Grosswangen","canton":"","domain":"grosswangen.ch","mx":["mail.grosswangen.ch"],"spf":"v=spf1 mx include:spf.creanet.ch include:cemsc.net ip4:185.142.212.13 ip4:185.32.222.15 ip4:176.10.104.21 ip4:185.32.222.64 ip4:149.126.4.40 ip4:194.126.200.54 ip4:194.126.200.0/24 ip4:194.126.0.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1088":{"name":"Hildisrieden","canton":"","domain":"hildisrieden.ch","mx":["hildisrieden-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +a:rlx2.loginserver.ch include:spf.protection.outlook.com include:spf1.egeko.ch include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hildisrieden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hildisrieden.ch CNAME → selector1-hildisrieden-ch._domainkey.gemeindehildisrieden.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hildisrieden.ch CNAME → selector2-hildisrieden-ch._domainkey.gemeindehildisrieden.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1089":{"name":"Knutwil","canton":"","domain":"knutwil.ch","mx":["mail.knutwil.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1091":{"name":"Mauensee","canton":"","domain":"mauensee.ch","mx":["mauensee-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.cyon.net ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mauensee-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1093":{"name":"Neuenkirch","canton":"","domain":"neuenkirch.ch","mx":["neuenkirch-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:194.124.233.150 ip4:193.135.56.6 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX neuenkirch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1094":{"name":"Nottwil","canton":"","domain":"nottwil.ch","mx":["mail.nottwil.ch"],"spf":"v=spf1 mx a:sbb-ch.mail.protection.outlook.com a:mail.format-ag.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}]},"1095":{"name":"Oberkirch","canton":"","domain":"oberkirch.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:_spf.rzobt.ch include:_spf.i-web.ch include:spf.abacuscity.ch include:_spf.psm.knowbe4.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1097":{"name":"Rickenbach (LU)","canton":"","domain":"rickenbach.ch","mx":["rickenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX rickenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1098":{"name":"Ruswil","canton":"","domain":"ruswil.ch","mx":["mail.ruswil.ch"],"spf":"v=spf1 mx ip4:185.35.28.13 ip4:185.35.28.162 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1099":{"name":"Schenkon","canton":"","domain":"schenkon.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:spf.mail.hostpoint.ch include:_spf.rzobt.ch include:communication.backslash.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1100":{"name":"Schlierbach","canton":"","domain":"schlierbach.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1102":{"name":"Sempach","canton":"","domain":"sempach.ch","mx":["sempach-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:151.248.208.106 ip4:80.254.162.137 include:spf.protection.outlook.com include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sempach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.sempach.ch CNAME → selector1-sempach-ch._domainkey.sempachcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.sempach.ch CNAME → selector2-sempach-ch._domainkey.sempachcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1103":{"name":"Sursee","canton":"","domain":"stadtsursee.ch","mx":["stadtsursee-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.mail.hostpoint.ch include:_spf.i-web.ch include:spf.protection.outlook.com ip4:37.128.181.146 include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stadtsursee-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.stadtsursee.ch CNAME → selector1-stadtsursee-ch._domainkey.stadtsurseech.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.stadtsursee.ch CNAME → selector2-stadtsursee-ch._domainkey.stadtsurseech.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1104":{"name":"Triengen","canton":"","domain":"triengen.ch","mx":["mail.triengen.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1107":{"name":"Wolhusen","canton":"","domain":"wolhusen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:_spf.rzobt.ch include:spf.abacuscity.ch a:slu-w0ssf1.stadtluzern.ch ip4:185.35.28.13 include:_spf.psm.knowbe4.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1121":{"name":"Alberswil","canton":"Kanton Luzern","domain":"alberswil.ch","mx":["alberswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX alberswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1122":{"name":"Altbüron","canton":"Kanton Luzern","domain":"altbueron.ch","mx":["altbueron-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX altbueron-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1123":{"name":"Altishofen","canton":"Kanton Luzern","domain":"altishofen.ch","mx":["mail.altishofen.ch"],"spf":"v=spf1 mx a +ip4:149.126.4.40 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1125":{"name":"Dagmersellen","canton":"Kanton Luzern","domain":"dagmersellen.ch","mx":["dagmersellen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a ip4:193.135.58.21 ip4:80.254.191.149 ip4:151.248.145.24 include:spf.protection.outlook.com include:spf.sendinblue.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dagmersellen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.dagmersellen.ch CNAME → selector1-dagmersellen-ch._domainkey.gemeindedagmersellen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.dagmersellen.ch CNAME → selector2-dagmersellen-ch._domainkey.gemeindedagmersellen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1127":{"name":"Egolzwil","canton":"Kanton Luzern","domain":"egolzwil.ch","mx":["egolzwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:195.65.10.24 ip4:195.65.10.12 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX egolzwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.egolzwil.ch CNAME → selector1-egolzwil-ch._domainkey.gemeindeegolzwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.egolzwil.ch CNAME → selector2-egolzwil-ch._domainkey.gemeindeegolzwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1128":{"name":"Ettiswil","canton":"Kanton Luzern","domain":"ettiswil.ch","mx":["mail.ettiswil.ch"],"spf":"v=spf1 mx include:spf.protection.cyon.net include:spf.customer.swiss-egov.cloud ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1129":{"name":"Fischbach","canton":"Kanton Luzern","domain":"fischbach-lu.ch","mx":["fischbachlu-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX fischbachlu-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1131":{"name":"Grossdietwil","canton":"Kanton Luzern","domain":"grossdietwil.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.exenti.ch ip4:185.35.28.128 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"1132":{"name":"Hergiswil bei Willisau","canton":"Kanton Luzern","domain":"hergiswil-lu.ch","mx":["mail.hergiswil-lu.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1135":{"name":"Luthern","canton":"Kanton Luzern","domain":"luthern.ch","mx":["luthern-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.mailjet.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX luthern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1136":{"name":"Menznau","canton":"Kanton Luzern","domain":"menznau.ch","mx":["menznau-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +a:rlx2.loginserver.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX menznau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.menznau.ch CNAME → selector1-menznau-ch._domainkey.gdemenznau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.menznau.ch CNAME → selector2-menznau-ch._domainkey.gdemenznau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1137":{"name":"Nebikon","canton":"Kanton Luzern","domain":"nebikon.ch","mx":["nebikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.3.53.198 ip4:86.119.9.6 ip4:193.135.56.6 include:spf.protection.outlook.com include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nebikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.nebikon.ch CNAME → selector1-nebikon-ch._domainkey.gemeindenebikon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.nebikon.ch CNAME → selector2-nebikon-ch._domainkey.gemeindenebikon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"1139":{"name":"Pfaffnau","canton":"Kanton Luzern","domain":"pfaffnau.ch","mx":["pfaffnau-ch.mail.protection.outlook.com"],"spf":"v=spf1 a ip4:91.194.196.10 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX pfaffnau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1140":{"name":"Reiden","canton":"Kanton Luzern","domain":"reiden.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1142":{"name":"Roggliswil","canton":"Kanton Luzern","domain":"roggliswil.ch","mx":["roggliswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:mail1.rzobt.ch a:mail2.rzobt.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX roggliswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1143":{"name":"Schötz","canton":"Kanton Luzern","domain":"schoetz.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1145":{"name":"Ufhusen","canton":"Kanton Luzern","domain":"ufhusen.ch","mx":["mail.ufhusen.ch"],"spf":"v=spf1 mx ip4:185.35.28.68 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1146":{"name":"Wauwil","canton":"Kanton Luzern","domain":"wauwil.ch","mx":["wauwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.150.248.38 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +ip4:193.135.56.6 +include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":89.0,"classification_signals":[{"kind":"mx","detail":"MX wauwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1147":{"name":"Wikon","canton":"Kanton Luzern","domain":"wikon.ch","mx":["mail.wikon.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1150":{"name":"Zell (LU)","canton":"Kanton Luzern","domain":"zell-lu.ch","mx":["mail.zell-lu.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1151":{"name":"Willisau","canton":"Kanton Luzern","domain":"willisau.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 a include:_spf.rzobt.ch ip4:185.35.28.16 ip4:185.35.28.13 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1201":{"name":"Altdorf (UR)","canton":"Kanton Uri","domain":"altdorf.ch","mx":["mail.rz-altdorf.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1202":{"name":"Andermatt","canton":"Kanton Uri","domain":"andermatt.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx a:mail.ur.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1203":{"name":"Attinghausen","canton":"Kanton Uri","domain":"attinghausen.ch","mx":["mail.attinghausen.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1205":{"name":"Bürglen (UR)","canton":"Kanton Uri","domain":"buerglen.ch","mx":["mail.buerglen.ch"],"spf":"v=spf1 mx include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1206":{"name":"Erstfeld","canton":"Kanton Uri","domain":"erstfeld.ch","mx":["mx1.erstfeld.ch","mx2.erstfeld.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1207":{"name":"Flüelen","canton":"Kanton Uri","domain":"flueelen.ch","mx":["mail.flueelen.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1208":{"name":"Göschenen","canton":"Kanton Uri","domain":"goeschenen.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1209":{"name":"Gurtnellen","canton":"Kanton Uri","domain":"gurtnellen.ch","mx":["mx1.gurtnellen.ch","mx2.gurtnellen.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1210":{"name":"Hospental","canton":"Kanton Uri","domain":"andermatt.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx a:mail.ur.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1211":{"name":"Isenthal","canton":"Kanton Uri","domain":"isenthal.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1212":{"name":"Realp","canton":"Kanton Uri","domain":"realp.ch","mx":["realp-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX realp-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1213":{"name":"Schattdorf","canton":"Kanton Uri","domain":"schattdorf.ch","mx":["mail.rz-altdorf.ch"],"spf":"v=spf1 +mx -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1214":{"name":"Seedorf (UR)","canton":"Kanton Uri","domain":"seedorf-uri.ch","mx":["mail.seedorf-uri.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1215":{"name":"Seelisberg","canton":"Kanton Uri","domain":"seelisberg.ch","mx":["seelisberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:agenturserver.de -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX seelisberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1216":{"name":"Silenen","canton":"Kanton Uri","domain":"silenen.ch","mx":["silenen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:mx.cmd.activeguard.cloud ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:146.4.12.134 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX silenen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1217":{"name":"Sisikon","canton":"Kanton Uri","domain":"sisikon.ch","mx":["mail.sisikon.ch"],"spf":"v=spf1 mx include:_spf.blk.ymc.swiss include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1218":{"name":"Spiringen","canton":"Kanton Uri","domain":"spiringen.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1219":{"name":"Unterschächen","canton":"Kanton Uri","domain":"unterschaechen.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1220":{"name":"Wassen","canton":"Kanton Uri","domain":"wassen.ch","mx":["mail1.ur.ch","mail2.ur.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.sui-inter.net a:mail.ur.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1301":{"name":"Einsiedeln","canton":"Kanton Schwyz","domain":"bezirkeinsiedeln.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1311":{"name":"Gersau","canton":"Kanton Schwyz","domain":"gersau.ch","mx":["gersau-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.101.10.158 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gersau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gersau.ch CNAME → selector1-gersau-ch._domainkey.bvgersau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gersau.ch CNAME → selector2-gersau-ch._domainkey.bvgersau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"1321":{"name":"Feusisberg","canton":"Kanton Schwyz","domain":"feusisberg.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:193.135.56.6 ip4:62.65.133.1/24 include:spf.iway.ch include:spf.entex.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1322":{"name":"Freienbach","canton":"Kanton Schwyz","domain":"freienbach.ch","mx":["freienbach1.cleanmail.ch","freienbach2.cleanmail.ch"],"spf":"v=spf1 a mx ip4:52.157.149.216 mx mx:hin.ch include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.mailjet.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}],"gateway":"cleanmail"},"1323":{"name":"Wollerau","canton":"Kanton Schwyz","domain":"wollerau.ch","mx":["wollerau1.cleanmail.ch","wollerau2.cleanmail.ch"],"spf":"v=spf1 a mx ip4:195.130.218.0/24 ip4:195.141.81.67 ip4:185.41.76.99/27 include:_spf.i-web.ch include:_cmspf.cleanmail.ch include:turbo-smtp.com include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"cleanmail"},"1331":{"name":"Küssnacht (SZ)","canton":"Kanton Schwyz","domain":"kuessnacht.ch","mx":["kuessnacht-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:mail.ostendis.ch ip4:82.136.86.149 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf.sz.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kuessnacht-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kuessnacht.ch CNAME → elector1-kuessnacht-ch._domainkey.kuessnacht.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kuessnacht.ch CNAME → elector2-kuessnacht-ch._domainkey.kuessnacht.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"1341":{"name":"Altendorf","canton":"Kanton Schwyz","domain":"altendorf.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf.abacuscity.ch include:communication.backslash.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"1342":{"name":"Galgenen","canton":"Kanton Schwyz","domain":"galgenen.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx include:asmtp.mail.hostpoint.ch include:mailomat.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1343":{"name":"Innerthal","canton":"Kanton Schwyz","domain":"innerthal.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1344":{"name":"Lachen","canton":"Kanton Schwyz","domain":"lachen.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1345":{"name":"Reichenburg","canton":"Kanton Schwyz","domain":"reichenburg.ch","mx":["gemeindereichenburg.in.tmes.trendmicro.eu"],"spf":"v=spf1 a mx ip4:93.174.184.0/21 ~a","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"1346":{"name":"Schübelbach","canton":"Kanton Schwyz","domain":"schuebelbach.ch","mx":["schuebelbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schuebelbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1347":{"name":"Tuggen","canton":"Kanton Schwyz","domain":"tuggen.ch","mx":["tuggen.in.tmes.trendmicro.eu"],"spf":"v=spf1 a mx ip4:93.174.184.0/21 include:spf1.egeko.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"1348":{"name":"Vorderthal","canton":"Kanton Schwyz","domain":"vorderthal.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1349":{"name":"Wangen (SZ)","canton":"Kanton Schwyz","domain":"wangensz.ch","mx":["wangensz.in.tmes.trendmicro.eu"],"spf":"v=spf1 include:spf.abacuscity.ch a mx ptr ip4:93.174.184.0/21 ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"1361":{"name":"Alpthal","canton":"Kanton Schwyz","domain":"alpthal.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1362":{"name":"Arth","canton":"Kanton Schwyz","domain":"arth.ch","mx":["mr01.arth.ch"],"spf":"v=spf1 mx ip4:185.244.253.254/32 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"1363":{"name":"Illgau","canton":"Kanton Schwyz","domain":"illgau.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx include:mailomat.cloud include:spf.mailpro.com -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1364":{"name":"Ingenbohl","canton":"Kanton Schwyz","domain":"ingenbohl.ch","mx":["mail.ingenbohl.ch"],"spf":"v=spf1 +a +mx include:relay.mailchannels.net include:spf.privasphere.com include:agenturserver.de include:_spf.google.com ~all","provider":"google","category":"us-cloud","classification_confidence":52.0,"classification_signals":[{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1365":{"name":"Lauerz","canton":"Kanton Schwyz","domain":"lauerz.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1366":{"name":"Morschach","canton":"Kanton Schwyz","domain":"morschach.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1367":{"name":"Muotathal","canton":"Kanton Schwyz","domain":"muotathal.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1368":{"name":"Oberiberg","canton":"Kanton Schwyz","domain":"oberiberg.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1369":{"name":"Riemenstalden","canton":"Kanton Schwyz","domain":"riemenstalden.ch","mx":["mail.riemenstalden.ch"],"spf":"v=spf1 include:spf.mail.webland.ch include:_spf.blk.ymc.swiss -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1370":{"name":"Rothenthurm","canton":"Kanton Schwyz","domain":"rothenthurm.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1371":{"name":"Sattel","canton":"Kanton Schwyz","domain":"sattel.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1372":{"name":"Schwyz","canton":"Kanton Schwyz","domain":"gemeindeschwyz.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1373":{"name":"Steinen","canton":"Kanton Schwyz","domain":"steinen.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1374":{"name":"Steinerberg","canton":"Kanton Schwyz","domain":"steinerberg.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1375":{"name":"Unteriberg","canton":"Kanton Schwyz","domain":"unteriberg.ch","mx":["mr01a.rzeins.ch","mr02b.rzeins.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"1401":{"name":"Alpnach","canton":"Kanton Obwalden","domain":"alpnach.ow.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1402":{"name":"Engelberg","canton":"Kanton Obwalden","domain":"gde-engelberg.ch","mx":["gdeengelberg-ch0i.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:mx.cmd.activeguard.cloud include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gdeengelberg-ch0i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}]},"1403":{"name":"Giswil","canton":"Kanton Obwalden","domain":"giswil.ow.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1404":{"name":"Kerns","canton":"Kanton Obwalden","domain":"kerns.ow.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1405":{"name":"Lungern","canton":"Kanton Obwalden","domain":"lungern.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1406":{"name":"Sachseln","canton":"Kanton Obwalden","domain":"sachseln.ow.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1407":{"name":"Sarnen","canton":"Kanton Obwalden","domain":"sarnen.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1501":{"name":"Beckenried","canton":"Kanton Nidwalden","domain":"gv.beckenried.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1502":{"name":"Buochs","canton":"Kanton Nidwalden","domain":"buochs.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1503":{"name":"Dallenwil","canton":"Kanton Nidwalden","domain":"nw.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:185.7.213.20 ip4:62.12.130.234 a:smtp.trainingplus.ch include:_spfgroupa.admin.ch include:_spf.tivian.com include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1504":{"name":"Emmetten","canton":"Kanton Nidwalden","domain":"emmetten.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1505":{"name":"Ennetbürgen","canton":"Kanton Nidwalden","domain":"ennetbuergen.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1506":{"name":"Ennetmoos","canton":"Kanton Nidwalden","domain":"ennetmoos.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1507":{"name":"Hergiswil (NW)","canton":"Kanton Nidwalden","domain":"hergiswil.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:185.7.213.20 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1508":{"name":"Oberdorf (NW)","canton":"Kanton Nidwalden","domain":"nw.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:185.7.213.20 ip4:62.12.130.234 a:smtp.trainingplus.ch include:_spfgroupa.admin.ch include:_spf.tivian.com include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"1509":{"name":"Stans","canton":"Kanton Nidwalden","domain":"stans.nw.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1510":{"name":"Stansstad","canton":"Kanton Nidwalden","domain":"stansstad.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch ipv4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1511":{"name":"Wolfenschiessen","canton":"Kanton Nidwalden","domain":"wolfenschiessen.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_spfgroupa.admin.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1630":{"name":"Glarus Nord","canton":"Kanton Glarus","domain":"glarus-nord.ch","mx":["ip17.gl.ch","ip18.gl.ch"],"spf":"v=spf1 include:spf.smtp2go.com include:_spf.i-web.ch include:spf.abacuscity.ch ip4:217.192.170.97 ip4:217.192.170.98 -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1631":{"name":"Glarus Süd","canton":"Kanton Glarus","domain":"glarus-sued.ch","mx":["ip17.gl.ch","ip18.gl.ch"],"spf":"v=spf1 include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.smtp2go.com include:spf.nl2go.com ip4:193.135.56.6 ip4:217.192.170.97 ip4:217.192.170.98 -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1632":{"name":"Glarus","canton":"Kanton Glarus","domain":"glarus.ch","mx":["ip17.gl.ch","ip18.gl.ch"],"spf":"v=spf1 include:_cmspf.cleanmail.ch include:_spf.i-web.ch include:spf.smtp2go.com ip4:217.192.170.97 ip4:217.192.170.98 -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"1701":{"name":"Baar","canton":"Kanton Zug","domain":"baar.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.protection.outlook.com include:spf.zg.ch include:_spf.i-web.ch include:privasphere.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1702":{"name":"Cham","canton":"Kanton Zug","domain":"cham.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"1703":{"name":"Hünenberg","canton":"Kanton Zug","domain":"huenenberg.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 include:_spf.i-web.ch include:spf.zg.ch include:_spf.senders.scnem.com include:_spf.tophost.ch a ip4:94.130.72.240 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1704":{"name":"Menzingen","canton":"Kanton Zug","domain":"menzingen.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1705":{"name":"Neuheim","canton":"Kanton Zug","domain":"neuheim.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"1706":{"name":"Oberägeri","canton":"Kanton Zug","domain":"oberaegeri.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.server-he.de -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1707":{"name":"Risch","canton":"Kanton Zug","domain":"rischrotkreuz.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 a mx include:spf.taginet.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"1708":{"name":"Steinhausen","canton":"Kanton Zug","domain":"steinhausen.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 ip4:193.134.13.61 include:spf.zg.ch include:spf.protection.outlook.com include:privasphere.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"1709":{"name":"Unterägeri","canton":"Kanton Zug","domain":"unteraegeri.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx ip4:193.134.12.15 ip4:193.134.26.182 ip4:193.134.26.181 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"1710":{"name":"Walchwil","canton":"Kanton Zug","domain":"walchwil.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 a:mail.zg.ch a:mail1.zg.ch a:mail2.zg.ch ip4:193.134.12.15 ip4:193.134.26.182 ip6:2a10:8244:1000:1800::5002 ip6:2a10:8244:1000:1800::5001 ip4:193.134.26.181 include:spf.zg.ch include:privasphere.com -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"1711":{"name":"Zug","canton":"Kanton Zug","domain":"stadtzug.ch","mx":["mail1.zg.ch","mail2.zg.ch"],"spf":"v=spf1 mx mx:admin.ch/24 mx:ag.ch/24 ip4:193.134.12.15 ip4:193.134.13.61 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf.zg.ch include:_spf.senders.scnem.com include:privasphere.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"2008":{"name":"Châtillon (FR)","canton":"Kanton Freiburg","domain":"chatillon-broye.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2011":{"name":"Cugy (FR)","canton":"Kanton Freiburg","domain":"hemmer.ch","mx":["mx1.spamvor.com","mx2.spamvor.com"],"spf":"v=spf1 include:_spf.ch-dns.net ip4:185.151.164.55 +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"spamvor"},"2022":{"name":"Gletterens","canton":"Kanton Freiburg","domain":"gletterens.ch","mx":["gletterens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gletterens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2025":{"name":"Lully (FR)","canton":"Kanton Freiburg","domain":"lully-fr.ch","mx":["lullyfr-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lullyfr-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2029":{"name":"Montagny (FR)","canton":"Kanton Freiburg","domain":"montagny-fr.ch","mx":["montagnyfr-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:evok.ch include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX montagnyfr-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.montagny-fr.ch CNAME → selector1-montagnyfr-ch02b._domainkey.communedemontagnyfr.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.montagny-fr.ch CNAME → selector2-montagnyfr-ch02b._domainkey.communedemontagnyfr.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2035":{"name":"Nuvilly","canton":"Kanton Freiburg","domain":"nuvilly.ch","mx":["nuvilly-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nuvilly-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.nuvilly.ch CNAME → selector1-nuvilly-ch._domainkey.nuvilly.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.nuvilly.ch CNAME → selector2-nuvilly-ch._domainkey.nuvilly.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2038":{"name":"Prévondavaux","canton":"Kanton Freiburg","domain":"prevondavaux.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"2041":{"name":"Saint-Aubin (FR)","canton":"Kanton Freiburg","domain":"saint-aubin.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx ip4:193.108.54.58 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2043":{"name":"Sévaz","canton":"Kanton Freiburg","domain":"sevaz.ch","mx":["mx1.spamvor.com","mx2.spamvor.com"],"spf":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"spamvor"},"2044":{"name":"Surpierre","canton":"Kanton Freiburg","domain":"surpierre-fr.ch","mx":["surpierrefr-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX surpierrefr-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2045":{"name":"Vallon","canton":"Kanton Freiburg","domain":"vallon.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"2050":{"name":"Les Montets","canton":"Kanton Freiburg","domain":"les-montets.ch","mx":["mx1.spamvor.com","mx2.spamvor.com"],"spf":"v=spf1 include:_spf.ch-dns.net ip4:212.71.120.144/28 +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"spamvor"},"2051":{"name":"Delley-Portalban","canton":"Kanton Freiburg","domain":"delley-portalban.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch include:_spf.ch-dns.net -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2053":{"name":"Belmont-Broye","canton":"Kanton Freiburg","domain":"belmont-broye.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch include:_spf.ch-dns.net -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2054":{"name":"Estavayer","canton":"Kanton Freiburg","domain":"estavayer.ch","mx":["mps.telecomservices.ch"],"spf":"v=spf1 ip4:94.126.16.46 ip4:84.253.32.226 ip4:94.126.16.47 ip4:94.126.16.48 ip4:212.71.120.144/28 a:mail.estavayer.ch a:mps.telecomservices.ch include:spf.protection.outlook.com include:smtproutes.com include:smtpout.com include:_spf.ch-dns.net include:spf.brevo.com mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2055":{"name":"Cheyres-Châbles","canton":"Kanton Freiburg","domain":"cheyres-chables.ch","mx":["cheyreschables-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cheyreschables-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cheyres-chables.ch CNAME → selector1-cheyreschables-ch01i._domainkey.cheyreschablesfr.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cheyres-chables.ch CNAME → selector2-cheyreschables-ch01i._domainkey.cheyreschablesfr.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2056":{"name":"Fétigny-Ménières","canton":"Kanton Freiburg","domain":"fetigny-menieres.ch","mx":["fetignymenieres-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fetignymenieres-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2063":{"name":"Billens-Hennens","canton":"Kanton Freiburg","domain":"billens-hennens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2067":{"name":"Le Châtelard","canton":"Kanton Freiburg","domain":"le-chatelard.ch","mx":["lechatelard-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lechatelard-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2068":{"name":"Châtonnaye","canton":"Kanton Freiburg","domain":"chatonnaye.ch","mx":["chatonnaye-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chatonnaye-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2079":{"name":"Grangettes","canton":"Kanton Freiburg","domain":"grangettes-pres-romont.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"2086":{"name":"Massonnens","canton":"Kanton Freiburg","domain":"massonnens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"2087":{"name":"Mézières (FR)","canton":"Kanton Freiburg","domain":"mezieres-fr.ch","mx":["mezieresfr-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com mx a a:mail.senselan.ch a:mailcustom.infosynergie.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mezieresfr-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2096":{"name":"Romont (FR)","canton":"Kanton Freiburg","domain":"romont.ch","mx":["romont-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.62.202.194 ip4:46.16.202.90 include:spf.infomaniak.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX romont-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2097":{"name":"Rue","canton":"Kanton Freiburg","domain":"rue.ch","mx":["rue-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:212.71.120.144/28 ip4:128.65.195.91/32 include:communederue.roomingit.fr include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rue-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rue.ch CNAME → selector1-rue-ch._domainkey.communerue.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rue.ch CNAME → selector2-rue-ch._domainkey.communerue.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2099":{"name":"Siviriez","canton":"Kanton Freiburg","domain":"siviriez.ch","mx":["siviriez-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 ip4:212.90.219.210 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX siviriez-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.siviriez.ch CNAME → selector1-siviriez-ch._domainkey.siviriez.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.siviriez.ch CNAME → selector2-siviriez-ch._domainkey.siviriez.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2102":{"name":"Ursy","canton":"Kanton Freiburg","domain":"ursy.ch","mx":["ursy-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ursy-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ursy.ch CNAME → selector1-ursy-ch._domainkey.ursyfr.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ursy.ch CNAME → selector2-ursy-ch._domainkey.ursyfr.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2113":{"name":"Vuisternens-devant-Romont","canton":"Kanton Freiburg","domain":"vuisternens-devant-romont.ch","mx":["vuisternens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vuisternens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2114":{"name":"Villorsonnens","canton":"Kanton Freiburg","domain":"villorsonnens.ch","mx":["villorsonnens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX villorsonnens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2115":{"name":"Torny","canton":"Kanton Freiburg","domain":"torny.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 ip4:80.74.154.186 ip4:80.74.153.24 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2117":{"name":"Villaz","canton":"Kanton Freiburg","domain":"communevillaz.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch include:_spf.i-web.ch a:mailgate2.ti-informatique.com ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2121":{"name":"Haut-Intyamon","canton":"Kanton Freiburg","domain":"haut-intyamon.ch","mx":["hautintyamon-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hautintyamon-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2122":{"name":"Pont-en-Ogoz","canton":"Kanton Freiburg","domain":"pont-en-ogoz.ch","mx":["pontenogoz-ch01j.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.62.149.214 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pontenogoz-ch01j.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.pont-en-ogoz.ch CNAME → selector1-pontenogoz-ch01j._domainkey.communepeo.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.pont-en-ogoz.ch CNAME → selector2-pontenogoz-ch01j._domainkey.communepeo.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2123":{"name":"Botterens","canton":"Kanton Freiburg","domain":"botterens.ch","mx":["botterens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX botterens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2124":{"name":"Broc","canton":"Kanton Freiburg","domain":"broc.ch","mx":["broc-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX broc-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.broc.ch CNAME → selector1-broc-ch._domainkey.brocch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.broc.ch CNAME → selector2-broc-ch._domainkey.brocch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2125":{"name":"Bulle","canton":"Kanton Freiburg","domain":"bulle.ch","mx":["bulle-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch ip4:85.90.3.67 ip4:195.65.10.12 ip4:128.65.195.12 ip4:194.56.218.154 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bulle-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bulle.ch CNAME → selector1-bulle-ch._domainkey.communebulle.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bulle.ch CNAME → selector2-bulle-ch._domainkey.communebulle.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2128":{"name":"Châtel-sur-Montsalvens","canton":"Kanton Freiburg","domain":"chatel-montsalvens.ch","mx":["chatelmontsalvens-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chatelmontsalvens-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2129":{"name":"Corbières","canton":"Kanton Freiburg","domain":"corbieres.ch","mx":["corbieres-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX corbieres-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2130":{"name":"Crésuz","canton":"Kanton Freiburg","domain":"cresuz.ch","mx":["cresuz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.147.132 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cresuz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2131":{"name":"Echarlens","canton":"Kanton Freiburg","domain":"echarlens.ch","mx":["echarlens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.google.com include:spf.infomaniak.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX echarlens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2134":{"name":"Grandvillard","canton":"Kanton Freiburg","domain":"grandvillard.ch","mx":["grandvillard-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.customer.swiss-egov.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grandvillard-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2135":{"name":"Gruyères","canton":"Kanton Freiburg","domain":"gruyeres.ch","mx":["gruyeres-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gruyeres-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2137":{"name":"Hauteville","canton":"Kanton Freiburg","domain":"hauteville.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"2138":{"name":"Jaun","canton":"Kanton Freiburg","domain":"jaun.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2140":{"name":"Marsens","canton":"Kanton Freiburg","domain":"marsens.ch","mx":["mps.telecomservices.ch"],"spf":"v=spf1 a:email.marsens.ch a:mps.telecomservices.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2143":{"name":"Morlon","canton":"Kanton Freiburg","domain":"morlon.ch","mx":["morlon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX morlon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2145":{"name":"Le Pâquier (FR)","canton":"Kanton Freiburg","domain":"lepaquier.ch","mx":["lepaquier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lepaquier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2147":{"name":"Pont-la-Ville","canton":"Kanton Freiburg","domain":"pont-la-ville.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2148":{"name":"Riaz","canton":"Kanton Freiburg","domain":"riaz.ch","mx":["riaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mandrillapp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX riaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2149":{"name":"La Roche","canton":"Kanton Freiburg","domain":"la-roche.ch","mx":["laroche-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX laroche-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2152":{"name":"Sâles","canton":"Kanton Freiburg","domain":"sales.ch","mx":["sales-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX sales-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2153":{"name":"Sorens","canton":"Kanton Freiburg","domain":"sorens.ch","mx":["sorens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.ch-dns.net include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sorens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.sorens.ch CNAME → selector1-sorens-ch._domainkey.communesorens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.sorens.ch CNAME → selector2-sorens-ch._domainkey.communesorens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2155":{"name":"Vaulruz","canton":"Kanton Freiburg","domain":"vaulruz.ch","mx":["vaulruz-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:185.48.146.23 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vaulruz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2160":{"name":"Vuadens","canton":"Kanton Freiburg","domain":"vuadens.ch","mx":["vuadens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vuadens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2162":{"name":"Bas-Intyamon","canton":"Kanton Freiburg","domain":"bas-intyamon.ch","mx":["basintyamon-ch0i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX basintyamon-ch0i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2163":{"name":"Val-de-Charmey","canton":"Kanton Freiburg","domain":"val-de-charmey.ch","mx":["cleanmail.safecenter.ch","valdecharmey-ch0ie.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.62.232.242/32 a:val-de-charmey.ch a:cleanmail.safecenter.ch include:_spf.i-web.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX valdecharmey-ch0ie.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.val-de-charmey.ch CNAME → selector1-valdecharmey-ch0ie._domainkey.valdecharmey.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.val-de-charmey.ch CNAME → selector2-valdecharmey-ch0ie._domainkey.valdecharmey.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"cleanmail"},"2173":{"name":"Autigny","canton":"Kanton Freiburg","domain":"autigny.ch","mx":["autigny-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.14.34.46 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX autigny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2174":{"name":"Avry","canton":"Kanton Freiburg","domain":"avry.ch","mx":["mps.telecomservices.ch"],"spf":"v=spf1 a:email.avry.ch a:mps.telecomservices.ch include:telecomservices.ch include:_spf.i-web.ch include:spf.protection.outlook.com ipv4:46.14.47.178 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2175":{"name":"Belfaux","canton":"Kanton Freiburg","domain":"belfaux.ch","mx":["belfaux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX belfaux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2177":{"name":"Chénens","canton":"Kanton Freiburg","domain":"chenens.ch","mx":["chenens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net include:ti-informatique.com +mx +a ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX chenens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2183":{"name":"Corminboeuf","canton":"Kanton Freiburg","domain":"corminboeuf.ch","mx":["corminboeuf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:94.126.17.132 ip4:46.14.29.162 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX corminboeuf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.corminboeuf.ch CNAME → selector1-corminboeuf-ch._domainkey.corminboeufcommune.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.corminboeuf.ch CNAME → selector2-corminboeuf-ch._domainkey.corminboeufcommune.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2186":{"name":"Cottens (FR)","canton":"Kanton Freiburg","domain":"cottens-fr.ch","mx":["cottensfr-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cottensfr-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cottens-fr.ch CNAME → selector1-cottensfr-ch01i._domainkey.admincottens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cottens-fr.ch CNAME → selector2-cottensfr-ch01i._domainkey.admincottens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2194":{"name":"Ferpicloz","canton":"Kanton Freiburg","domain":"ferpicloz.ch","mx":["mail.ferpicloz.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch include:_spf.blk.ymc.swiss ip4:212.71.120.144/28 ip4:212.71.120.28 +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2196":{"name":"Fribourg","canton":"Kanton Freiburg","domain":"ville-fr.ch","mx":["mail.ville-fr.ch"],"spf":"v=spf1 mx ip4:217.193.211.0/24 ip4:156.25.4.0/24 include:spf1.ne.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2197":{"name":"Givisiez","canton":"Kanton Freiburg","domain":"givisiez.ch","mx":["givisiez-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX givisiez-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2198":{"name":"Granges-Paccot","canton":"Kanton Freiburg","domain":"granges-paccot.ch","mx":["grangespaccot-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX grangespaccot-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2206":{"name":"Marly","canton":"Kanton Freiburg","domain":"marly.ch","mx":["marly-ch-1.fortimailcloud.com","marly-ch-2.fortimailcloud.com"],"spf":"v=spf1 include:_spf.fortimailcloud.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2208":{"name":"Matran","canton":"Kanton Freiburg","domain":"matran.ch","mx":["matran-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net include:icarus2.ch-dns.net ip4:80.74.159.66 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX matran-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2211":{"name":"Neyruz (FR)","canton":"Kanton Freiburg","domain":"neyruz.ch","mx":["neyruz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com ip4:62.202.1.53 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX neyruz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2216":{"name":"Pierrafortscha","canton":"Kanton Freiburg","domain":"pierrafortscha.ch","mx":["pierrafortscha-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pierrafortscha-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2220":{"name":"Le Mouret","canton":"Kanton Freiburg","domain":"le-mouret.ch","mx":["lemouret-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.ch-dns.net include:spf.protection.outlook.com ip4:83.222.141.163 ip4:83.173.228.17 +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lemouret-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.le-mouret.ch CNAME → selector1-lemouret-ch0e._domainkey.gdelemouret.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.le-mouret.ch CNAME → selector2-lemouret-ch0e._domainkey.gdelemouret.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2226":{"name":"Treyvaux","canton":"Kanton Freiburg","domain":"treyvaux.ch","mx":["mps.telecomservices.ch"],"spf":"v=spf1 a:mail.treyvaux.ch a:mps.telecomservices.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2228":{"name":"Villars-sur-Glâne","canton":"Kanton Freiburg","domain":"villars-sur-glane.ch","mx":["villarssurglane-ch01ii.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:mail.villars-sur-glane.ch a:mps.telecomservices.ch a:smtpzh.witecom.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX villarssurglane-ch01ii.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.villars-sur-glane.ch CNAME → selector1-villarssurglane-ch01ii._domainkey.adminvillarssurglane.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.villars-sur-glane.ch CNAME → selector2-villarssurglane-ch01ii._domainkey.adminvillarssurglane.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2230":{"name":"Villarsel-sur-Marly","canton":"Kanton Freiburg","domain":"villarsel-sur-marly.ch","mx":["mx01.senselan.ch","mx02.senselan.ch","mx03.senselan.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":60.0,"classification_signals":[]},"2233":{"name":"Hauterive (FR)","canton":"Kanton Freiburg","domain":"hauterivefr.ch","mx":["hauterivefr-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hauterivefr-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hauterivefr.ch CNAME → selector1-hauterivefr-ch._domainkey.communehauterive.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hauterivefr.ch CNAME → selector2-hauterivefr-ch._domainkey.communehauterive.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2234":{"name":"La Brillaz","canton":"Kanton Freiburg","domain":"labrillaz.ch","mx":["cleanmail.safecenter.ch"],"spf":"v=spf1 ip4:195.186.136.1/24 include:spf.protection.outlook.com include:spf.infomaniak.ch a:cleanmail.safecenter.ch ip4:83.222.130.150 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"cleanmail"},"2235":{"name":"La Sonnaz","canton":"Kanton Freiburg","domain":"lasonnaz.ch","mx":["lasonnaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lasonnaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2236":{"name":"Gibloux","canton":"Kanton Freiburg","domain":"commune-gibloux.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2237":{"name":"Prez","canton":"Kanton Freiburg","domain":"prez.ch","mx":["prez-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.159.65 ip4:213.180.180.30 +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX prez-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2238":{"name":"Bois-d'Amont","canton":"Kanton Freiburg","domain":"bois-damont.ch","mx":["boisdamont-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spfcloud.letsignit.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX boisdamont-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2239":{"name":"Grolley-Ponthaux","canton":"Kanton Freiburg","domain":"grolley-ponthaux.ch","mx":["grolleyponthaux-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grolleyponthaux-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.grolley-ponthaux.ch CNAME → selector1-grolleyponthaux-ch01i._domainkey.communedegrolley.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.grolley-ponthaux.ch CNAME → selector2-grolleyponthaux-ch01i._domainkey.communedegrolley.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2250":{"name":"Courgevaux","canton":"Kanton Freiburg","domain":"courgevaux.ch","mx":["courgevaux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX courgevaux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.courgevaux.ch CNAME → selector1-courgevaux-ch._domainkey.courgevauxfr.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.courgevaux.ch CNAME → selector2-courgevaux-ch._domainkey.courgevauxfr.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2254":{"name":"Courtepin","canton":"Kanton Freiburg","domain":"courtepin.ch","mx":["courtepin-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:s064.cyon.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX courtepin-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2257":{"name":"Cressier (FR)","canton":"Kanton Freiburg","domain":"cressier.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2258":{"name":"Fräschels","canton":"Kanton Freiburg","domain":"fraeschels.ch","mx":["fraeschels-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fraeschels-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2261":{"name":"Greng","canton":"Kanton Freiburg","domain":"greng.ch","mx":["greng-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:spf.sesamnet.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX greng-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.greng.ch CNAME → selector1-greng-ch._domainkey.gemeindegreng.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.greng.ch CNAME → selector2-greng-ch._domainkey.gemeindegreng.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2262":{"name":"Gurmels","canton":"Kanton Freiburg","domain":"gurmels.ch","mx":["gurmels-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gurmels-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2265":{"name":"Kerzers","canton":"Kanton Freiburg","domain":"kerzers.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx ip4:77.59.194.34 ip4:194.126.200.0/24 ip4:149.126.0.0/21 include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2266":{"name":"Kleinbösingen","canton":"Kanton Freiburg","domain":"kleinboesingen.ch","mx":["kleinboesingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kleinboesingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2271":{"name":"Meyriez","canton":"Kanton Freiburg","domain":"meyriez.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2272":{"name":"Misery-Courtion","canton":"Kanton Freiburg","domain":"misery-courtion.ch","mx":["miserycourtion-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX miserycourtion-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2274":{"name":"Muntelier","canton":"Kanton Freiburg","domain":"muntelier.ch","mx":["muntelier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX muntelier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2275":{"name":"Murten","canton":"Kanton Freiburg","domain":"murten-morat.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2276":{"name":"Ried bei Kerzers","canton":"Kanton Freiburg","domain":"ried.ch","mx":["ried-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ried-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2284":{"name":"Mont-Vully","canton":"Kanton Freiburg","domain":"mont-vully.ch","mx":["montvully-ch01b.mail.protection.outlook.com","montvully.onmicrosoft.com","montvully.onmicrosoft.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:80.74.149.192 +mx +a ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX montvully-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2292":{"name":"Brünisried","canton":"Kanton Freiburg","domain":"bruenisried.ch","mx":["mx01.senselan.ch","mx02.senselan.ch","mx03.senselan.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":62.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2293":{"name":"Düdingen","canton":"Kanton Freiburg","domain":"duedingen.ch","mx":["duedingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX duedingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2294":{"name":"Giffers","canton":"Kanton Freiburg","domain":"giffers.ch","mx":["giffers-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX giffers-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2295":{"name":"Bösingen","canton":"Kanton Freiburg","domain":"boesingen.ch","mx":["boesingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:mx.dvbern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX boesingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2296":{"name":"Heitenried","canton":"Kanton Freiburg","domain":"heitenried.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2299":{"name":"Plaffeien","canton":"Kanton Freiburg","domain":"plaffeien.ch","mx":["plaffeien-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX plaffeien-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2300":{"name":"Plasselb","canton":"Kanton Freiburg","domain":"plasselb.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2301":{"name":"Rechthalten","canton":"Kanton Freiburg","domain":"rechthalten.ch","mx":["rechthalten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX rechthalten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2303":{"name":"St. Silvester","canton":"Kanton Freiburg","domain":"stsilvester.ch","mx":["stsilvester-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX stsilvester-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2304":{"name":"St. Ursen","canton":"Kanton Freiburg","domain":"stursen.ch","mx":["stursen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX stursen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2305":{"name":"Schmitten (FR)","canton":"Kanton Freiburg","domain":"schmitten.ch","mx":["schmitten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX schmitten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2306":{"name":"Tafers","canton":"Kanton Freiburg","domain":"tafers.ch","mx":["tafers-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX tafers-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2307":{"name":"Tentlingen","canton":"Kanton Freiburg","domain":"tentlingen.ch","mx":["tentlingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX tentlingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2308":{"name":"Ueberstorf","canton":"Kanton Freiburg","domain":"ueberstorf.ch","mx":["ueberstorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ueberstorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2309":{"name":"Wünnewil-Flamatt","canton":"Kanton Freiburg","domain":"wuennewil-flamatt.ch","mx":["wuennewilflamatt-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wuennewilflamatt-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2321":{"name":"Attalens","canton":"Kanton Freiburg","domain":"attalens.ch","mx":["attalens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX attalens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2323":{"name":"Bossonnens","canton":"Kanton Freiburg","domain":"bossonnens.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2325":{"name":"Châtel-Saint-Denis","canton":"Kanton Freiburg","domain":"chatel-st-denis.ch","mx":["chatelstdenis-ch01ec.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf1.ne.ch ip4:81.63.156.66 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"mx","detail":"MX chatelstdenis-ch01ec.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2328":{"name":"Granges (Veveyse)","canton":"Kanton Freiburg","domain":"granges-veveyse.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2333":{"name":"Remaufens","canton":"Kanton Freiburg","domain":"remaufens.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 include:evok.ch include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"2335":{"name":"Saint-Martin (FR)","canton":"Kanton Freiburg","domain":"saint-martin-fr.ch","mx":["saintmartinfr-ch01c1b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX saintmartinfr-ch01c1b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2336":{"name":"Semsales","canton":"Kanton Freiburg","domain":"semsales.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 ip4:80.74.159.118/32 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2337":{"name":"Le Flon","canton":"Kanton Freiburg","domain":"leflon.ch","mx":["leflon-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.108.54.58 include:spf.protection.outlook.com include:_spf.ch-dns.net ip4:212.71.120.144/28 +a +mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leflon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2338":{"name":"La Verrerie","canton":"Kanton Freiburg","domain":"la-verrerie.ch","mx":["laverrerie-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX laverrerie-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2401":{"name":"Egerkingen","canton":"Kanton Solothurn","domain":"egerkingen.ch","mx":["egerkingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:46.14.41.126 include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX egerkingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.egerkingen.ch CNAME → selector1-egerkingen-ch._domainkey.gemeindeegerkingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.egerkingen.ch CNAME → selector2-egerkingen-ch._domainkey.gemeindeegerkingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2402":{"name":"Härkingen","canton":"Kanton Solothurn","domain":"haerkingen.ch","mx":["haerkingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX haerkingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2403":{"name":"Kestenholz","canton":"Kanton Solothurn","domain":"kestenholz.ch","mx":["kestenholz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX kestenholz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2404":{"name":"Neuendorf","canton":"Kanton Solothurn","domain":"neuendorf.ch","mx":["neuendorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.it64.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX neuendorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2405":{"name":"Niederbuchsiten","canton":"Kanton Solothurn","domain":"niederbuchsiten.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a mx include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2406":{"name":"Oberbuchsiten","canton":"Kanton Solothurn","domain":"oberbuchsiten.ch","mx":["oberbuchsiten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberbuchsiten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2407":{"name":"Oensingen","canton":"Kanton Solothurn","domain":"oensingen.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 mx a include:spf.protection.outlook.com include:spf.hornetsecurity.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"}],"gateway":"hornetsecurity"},"2408":{"name":"Wolfwil","canton":"Kanton Solothurn","domain":"wolfwil.ch","mx":["wolfwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX wolfwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2421":{"name":"Aedermannsdorf","canton":"Kanton Solothurn","domain":"aedermannsdorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2422":{"name":"Balsthal","canton":"Kanton Solothurn","domain":"balsthal.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2424":{"name":"Herbetswil","canton":"Kanton Solothurn","domain":"herbetswil.ch","mx":["herbetswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX herbetswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.herbetswil.ch CNAME → selector1-herbetswil-ch._domainkey.herbetswil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.herbetswil.ch CNAME → selector2-herbetswil-ch._domainkey.herbetswil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2425":{"name":"Holderbank (SO)","canton":"Kanton Solothurn","domain":"holderbank-so.ch","mx":["holderbankso-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX holderbankso-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2426":{"name":"Laupersdorf","canton":"Kanton Solothurn","domain":"laupersdorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2427":{"name":"Matzendorf","canton":"Kanton Solothurn","domain":"matzendorf.ch","mx":["matzendorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX matzendorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2428":{"name":"Mümliswil-Ramiswil","canton":"Kanton Solothurn","domain":"muemliswil-ramiswil.ch","mx":["muemliswilramiswil-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muemliswilramiswil-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.muemliswil-ramiswil.ch CNAME → selector1-muemliswilramiswil-ch02e._domainkey.gemeindemuemliswil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.muemliswil-ramiswil.ch CNAME → selector2-muemliswilramiswil-ch02e._domainkey.gemeindemuemliswil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2430":{"name":"Welschenrohr-Gänsbrunnen","canton":"Kanton Solothurn","domain":"welschenrohr.ch","mx":["welschenrohr-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.221.233.0/23 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX welschenrohr-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"2445":{"name":"Biezwil","canton":"Kanton Solothurn","domain":"biezwil.ch","mx":["mx1.jimdo.com","mx2.jimdo.com"],"spf":"v=spf1 include:sendgrid.net include:emailsrvr.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2455":{"name":"Lüterkofen-Ichertswil","canton":"Kanton Solothurn","domain":"lueterkofen-ichertswil.ch","mx":["lueterkofenichertswil-ch02i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lueterkofenichertswil-ch02i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2457":{"name":"Messen","canton":"Kanton Solothurn","domain":"messen.ch","mx":["messen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:mail.tcnet.ch ip4:195.48.58.75 ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:_spf.talus.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX messen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.messen.ch CNAME → selector1-messen-ch._domainkey.messen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.messen.ch CNAME → selector2-messen-ch._domainkey.messen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2461":{"name":"Schnottwil","canton":"Kanton Solothurn","domain":"schnottwil.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2463":{"name":"Unterramsern","canton":"Kanton Solothurn","domain":"unterramsern.ch","mx":["mail.unterramsern.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2464":{"name":"Lüsslingen-Nennigkofen","canton":"Kanton Solothurn","domain":"luesslingen-nennigkofen.ch","mx":["luesslingennennigkofen-ch02i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX luesslingennennigkofen-ch02i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2465":{"name":"Buchegg","canton":"Kanton Solothurn","domain":"buchegg-so.ch","mx":["bucheggso-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bucheggso-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2471":{"name":"Bättwil","canton":"Kanton Solothurn","domain":"baettwil.ch","mx":["mail.baettwil.ch"],"spf":"v=spf1 a mx a:msscript1.webland.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2472":{"name":"Büren (SO)","canton":"Kanton Solothurn","domain":"bueren-so.ch","mx":["buerenso-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 mx a:tiberius2.sui-inter.net a:tiberius.sui-inter.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX buerenso-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2473":{"name":"Dornach","canton":"Kanton Solothurn","domain":"dornach.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2474":{"name":"Gempen","canton":"Kanton Solothurn","domain":"gempen.ch","mx":["gempen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gempen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2475":{"name":"Hochwald","canton":"Kanton Solothurn","domain":"hochwald.ch","mx":["hochwald-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud a:genf.alixon.ch a:goldau.alixon.ch include:rzmail.hi-ag.ch include:spf.iway.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hochwald-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"}]},"2476":{"name":"Hofstetten-Flüh","canton":"Kanton Solothurn","domain":"hofstetten-flueh.ch","mx":["mail.hofstetten-flueh.ch","mail2.hofstetten-flueh.ch"],"spf":"v=spf1 mx include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2477":{"name":"Metzerlen-Mariastein","canton":"Kanton Solothurn","domain":"metzerlen.ch","mx":["metzerlen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud include:_spf.blk.ymc.swiss -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX metzerlen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2478":{"name":"Nuglar-St. Pantaleon","canton":"Kanton Solothurn","domain":"nuglar.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2479":{"name":"Rodersdorf","canton":"Kanton Solothurn","domain":"rodersdorf.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.blk.ymc.swiss include:_spf.kreativmedia.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2480":{"name":"Seewen","canton":"Kanton Solothurn","domain":"seewen.ch","mx":["seewen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mta1.asp.ruf.ch a:mta2.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX seewen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2481":{"name":"Witterswil","canton":"Kanton Solothurn","domain":"witterswil.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2491":{"name":"Hauenstein-Ifenthal","canton":"Kanton Solothurn","domain":"hauenstein-ifenthal.ch","mx":["hauensteinifenthal-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hauensteinifenthal-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2492":{"name":"Kienberg","canton":"Kanton Solothurn","domain":"kienberg.ch","mx":["mail.kienberg.ch"],"spf":"v=spf1 include:spf.mail.webland.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2493":{"name":"Lostorf","canton":"Kanton Solothurn","domain":"lostorf.ch","mx":["lostorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lostorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.lostorf.ch CNAME → selector1-lostorf-ch._domainkey.einwohnergemeindelostorf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.lostorf.ch CNAME → selector2-lostorf-ch._domainkey.einwohnergemeindelostorf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2495":{"name":"Niedergösgen","canton":"Kanton Solothurn","domain":"niedergoesgen.ch","mx":["niedergoesgen-ch.mail.eo.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.niedergoesgen.ch CNAME → selector1-niedergoesgen-ch._domainkey.niedergoesgench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.niedergoesgen.ch CNAME → selector2-niedergoesgen-ch._domainkey.niedergoesgench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2497":{"name":"Obergösgen","canton":"Kanton Solothurn","domain":"obergoesgen.ch","mx":["obergoesgen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX obergoesgen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2499":{"name":"Stüsslingen","canton":"Kanton Solothurn","domain":"stuesslingen.ch","mx":["stuesslingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stuesslingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2500":{"name":"Trimbach","canton":"Kanton Solothurn","domain":"trimbach.ch","mx":["trimbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX trimbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.trimbach.ch CNAME → selector1-trimbach-ch._domainkey.gemeindetrimbach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.trimbach.ch CNAME → selector2-trimbach-ch._domainkey.gemeindetrimbach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2501":{"name":"Winznau","canton":"Kanton Solothurn","domain":"winznau.ch","mx":["winznau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:mail.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX winznau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.winznau.ch CNAME → selector1-winznau-ch._domainkey.winznau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.winznau.ch CNAME → selector2-winznau-ch._domainkey.winznau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2502":{"name":"Wisen (SO)","canton":"Kanton Solothurn","domain":"wisen.ch","mx":["mx.cloudfor.ch"],"spf":"v=spf1 +a +mx +a:node7.nhost.ch include:spf.lanpool.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2503":{"name":"Erlinsbach (SO)","canton":"Kanton Solothurn","domain":"erlinsbach-so.ch","mx":["erlinsbach-so.ch.1.0001.arsmtp.com","erlinsbach-so.ch.2.0001.arsmtp.com"],"spf":"v=spf1 include:edgepilot.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2511":{"name":"Aeschi (SO)","canton":"Kanton Solothurn","domain":"aeschi-so.ch","mx":["aeschiso-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX aeschiso-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2513":{"name":"Biberist","canton":"Kanton Solothurn","domain":"biberist.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2514":{"name":"Bolken","canton":"Kanton Solothurn","domain":"bolken.ch","mx":["mail.bolken.ch"],"spf":"v=spf1 a mx ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2516":{"name":"Deitingen","canton":"Kanton Solothurn","domain":"deitingen.ch","mx":["deitingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:93.174.18.97 include:spf.hstex.comp-sys.net include:spf.nl2go.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX deitingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2517":{"name":"Derendingen","canton":"Kanton Solothurn","domain":"derendingen.ch","mx":["derendingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:turbo-smtp.com include:_spf.talus.ch include:_spf.sui-inter.net ip4:199.187.173.138 ip4:185.227.39.122 ip4:212.60.62.49 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX derendingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.derendingen.ch CNAME → selector1-derendingen-ch._domainkey.derendingench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.derendingen.ch CNAME → selector2-derendingen-ch._domainkey.derendingench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"2518":{"name":"Etziken","canton":"Kanton Solothurn","domain":"etziken.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2519":{"name":"Gerlafingen","canton":"Kanton Solothurn","domain":"gerlafingen.ch","mx":["gerlafingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gerlafingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2523":{"name":"Horriwil","canton":"Kanton Solothurn","domain":"horriwil.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2524":{"name":"Hüniken","canton":"Kanton Solothurn","domain":"hueniken.ch","mx":["elara.kreativmedia.ch"],"spf":"v=spf1 +mx +a include:_spf.mail.hostserv.eu include:_spf.kreativmedia.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2525":{"name":"Kriegstetten","canton":"Kanton Solothurn","domain":"kriegstetten.ch","mx":["kriegstetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX kriegstetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2526":{"name":"Lohn-Ammannsegg","canton":"Kanton Solothurn","domain":"lohn-ammannsegg.ch","mx":["lohnammannsegg-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lohnammannsegg-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2527":{"name":"Luterbach","canton":"Kanton Solothurn","domain":"luterbach.ch","mx":["luterbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX luterbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2528":{"name":"Obergerlafingen","canton":"Kanton Solothurn","domain":"obergerlafingen.ch","mx":["obergerlafingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX obergerlafingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2530":{"name":"Recherswil","canton":"Kanton Solothurn","domain":"recherswil.ch","mx":["recherswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX recherswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2532":{"name":"Subingen","canton":"Kanton Solothurn","domain":"subingen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch a:webcms.ruf.ch include:spf.cloudrexx.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2534":{"name":"Zuchwil","canton":"Kanton Solothurn","domain":"zuchwil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:146483490.spf03.hubspotemail.net -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2535":{"name":"Drei Höfe","canton":"Kanton Solothurn","domain":"dreihoefe.ch","mx":["dreihoefe-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dreihoefe-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2541":{"name":"Balm bei Günsberg","canton":"Kanton Solothurn","domain":"balm-balmberg.ch","mx":["mx03.solnet.ch","mx04.solnet.ch"],"spf":"v=spf1 include:solnet.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2542":{"name":"Bellach","canton":"Kanton Solothurn","domain":"bellach.ch","mx":["bellach-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +a:mailsrv.dynabyte.ch +ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bellach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2543":{"name":"Bettlach","canton":"Kanton Solothurn","domain":"bettlach.ch","mx":["bettlach.ch.1.0001.arsmtp.com","bettlach.ch.2.0001.arsmtp.com"],"spf":"v=spf1 include:exghost.com include:appriver.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2544":{"name":"Feldbrunnen-St. Niklaus","canton":"Kanton Solothurn","domain":"feldbrunnen.ch","mx":["feldbrunnen-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:93.174.20.41 include:spf.protection.outlook.com include:spf.hstex.comp-sys.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX feldbrunnen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2545":{"name":"Flumenthal","canton":"Kanton Solothurn","domain":"flumenthal.ch","mx":["flumenthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX flumenthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2546":{"name":"Grenchen","canton":"Kanton Solothurn","domain":"grenchen.ch","mx":["grenchen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grenchen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.grenchen.ch CNAME → selector1-grenchen-ch._domainkey.stadtgrenchen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.grenchen.ch CNAME → selector2-grenchen-ch._domainkey.stadtgrenchen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2547":{"name":"Günsberg","canton":"Kanton Solothurn","domain":"guensberg.ch","mx":["guensberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX guensberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2548":{"name":"Hubersdorf","canton":"Kanton Solothurn","domain":"hubersdorf.ch","mx":["hubersdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:87.237.169.20 ip4:80.243.212.149 ip4:87.237.172.253 ip4:195.65.26.110 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hubersdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hubersdorf.ch CNAME → selector1-hubersdorf-ch._domainkey.hubersdorf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hubersdorf.ch CNAME → selector2-hubersdorf-ch._domainkey.hubersdorf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2549":{"name":"Kammersrohr","canton":"Kanton Solothurn","domain":"bluewin.ch","mx":["mx01.p.bluenet.ch","mx02.p.bluenet.ch"],"spf":"v=spf1 redirect=_spf.bluewin.ch","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2550":{"name":"Langendorf","canton":"Kanton Solothurn","domain":"langendorf-so.ch","mx":["langendorfso-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:78.46.6.166 ip6:2a01:4f8:d0a:309a::2 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX langendorfso-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2551":{"name":"Lommiswil","canton":"Kanton Solothurn","domain":"lommiswil.ch","mx":["lommiswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:_spf.sui-inter.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lommiswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2553":{"name":"Oberdorf (SO)","canton":"Kanton Solothurn","domain":"oberdorf.ch","mx":["oberdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX oberdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2554":{"name":"Riedholz","canton":"Kanton Solothurn","domain":"riedholz.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2555":{"name":"Rüttenen","canton":"Kanton Solothurn","domain":"ruettenen.ch","mx":["ruettenen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:141207667.spf10.hubspotemail.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ruettenen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ruettenen.ch CNAME → selector1-ruettenen-ch._domainkey.ruettenench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ruettenen.ch CNAME → selector2-ruettenen-ch._domainkey.ruettenench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2556":{"name":"Selzach","canton":"Kanton Solothurn","domain":"selzach.ch","mx":["selzach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX selzach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.selzach.ch CNAME → selector1-selzach-ch._domainkey.selzach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.selzach.ch CNAME → selector2-selzach-ch._domainkey.selzach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2571":{"name":"Boningen","canton":"Kanton Solothurn","domain":"boningen.ch","mx":["boningen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boningen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.boningen.ch CNAME → selector1-boningen-ch._domainkey.gemeindeboningen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.boningen.ch CNAME → selector2-boningen-ch._domainkey.gemeindeboningen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2572":{"name":"Däniken","canton":"Kanton Solothurn","domain":"daeniken.ch","mx":["daeniken-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.exclaimer.net include:_spf.talus.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX daeniken-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2573":{"name":"Dulliken","canton":"Kanton Solothurn","domain":"dulliken.ch","mx":["dulliken-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX dulliken-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2574":{"name":"Eppenberg-Wöschnau","canton":"Kanton Solothurn","domain":"eppenberg-woeschnau.ch","mx":["eppenbergwoeschnau-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eppenbergwoeschnau-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2575":{"name":"Fulenbach","canton":"Kanton Solothurn","domain":"fulenbach.ch","mx":["fulenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fulenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2576":{"name":"Gretzenbach","canton":"Kanton Solothurn","domain":"gretzenbach.ch","mx":["gretzenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gretzenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2578":{"name":"Gunzgen","canton":"Kanton Solothurn","domain":"gunzgen.ch","mx":["gunzgen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gunzgen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2579":{"name":"Hägendorf","canton":"Kanton Solothurn","domain":"haegendorf.ch","mx":["haegendorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.tophost.ch include:_spf.tophost.ch include:relay.mailchannels.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX haegendorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2580":{"name":"Kappel (SO)","canton":"Kanton Solothurn","domain":"kappel-so.ch","mx":["kappelso-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.smtp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kappelso-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kappel-so.ch CNAME → selector1-kappelso-ch01e._domainkey.gemeindekappel.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kappel-so.ch CNAME → selector2-kappelso-ch01e._domainkey.gemeindekappel.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2581":{"name":"Olten","canton":"Kanton Solothurn","domain":"olten.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 mx ip4:164.128.174.20 ip4:193.135.131.203 a:dispatch-eu.ppe-hosted.com include:_spf.i-web.ch include:spf1.egeko.ch include:spf.protection.outlook.com include:psm.knowbe4.com include:mx.dvbern.ch include:spf.omcomputer.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"proofpoint"},"2582":{"name":"Rickenbach (SO)","canton":"Kanton Solothurn","domain":"rickenbachso.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2583":{"name":"Schönenwerd","canton":"Kanton Solothurn","domain":"schoenenwerd.ch","mx":["schoenenwerd-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schoenenwerd-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.schoenenwerd.ch CNAME → selector1-schoenenwerd-ch._domainkey.gemeindeschoenenwerd.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.schoenenwerd.ch CNAME → selector2-schoenenwerd-ch._domainkey.gemeindeschoenenwerd.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2584":{"name":"Starrkirch-Wil","canton":"Kanton Solothurn","domain":"starrkirch-wil.ch","mx":["starrkirchwil-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 ip4:217.148.4.244 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX starrkirchwil-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.starrkirch-wil.ch CNAME → selector1-starrkirchwil-ch02e._domainkey.starrkirchwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.starrkirch-wil.ch CNAME → selector2-starrkirchwil-ch02e._domainkey.starrkirchwilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2585":{"name":"Walterswil (SO)","canton":"Kanton Solothurn","domain":"walterswil.ch","mx":["mx01.servicehoster.ch","mx02.servicehoster.ch"],"spf":"v=spf1 include:servicehoster.ch a ip4:193.135.56.6 mx ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2586":{"name":"Wangen bei Olten","canton":"Kanton Solothurn","domain":"wangenbo.ch","mx":["wangenbo-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.mail.hostpoint.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wangenbo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2601":{"name":"Solothurn","canton":"Kanton Solothurn","domain":"solothurn.ch","mx":["solothurn-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx a include:_spf.ch.seppmail.cloud include:spf.nl2go.com include:_spf.i-web.ch include:_spf.zimpel.de include:spf.umantis.com ip4:194.48.244.4 ip4:185.73.240.214 -all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"2611":{"name":"Bärschwil","canton":"Kanton Solothurn","domain":"baerschwil.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 redirect=spf-permissive.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2612":{"name":"Beinwil (SO)","canton":"Kanton Solothurn","domain":"beinwil-so.ch","mx":["mail.beinwil-so.ch"],"spf":"v=spf1 +a +mx +a:rlx1.loginserver.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2613":{"name":"Breitenbach","canton":"Kanton Solothurn","domain":"breitenbach.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2614":{"name":"Büsserach","canton":"Kanton Solothurn","domain":"buesserach.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2615":{"name":"Erschwil","canton":"Kanton Solothurn","domain":"erschwil.ch","mx":["erschwil.ch.1.0001.arsmtp.com","erschwil.ch.2.0001.arsmtp.com"],"spf":"v=spf1 a:erschwil.ch mx include:exghost.com include:appriver.com include:edgepilot.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2616":{"name":"Fehren","canton":"Kanton Solothurn","domain":"fehren.ch","mx":["fehren-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.66.108.55 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fehren-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.fehren.ch CNAME → selector1-fehren-ch._domainkey.fehren.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.fehren.ch CNAME → selector2-fehren-ch._domainkey.fehren.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2617":{"name":"Grindel","canton":"Kanton Solothurn","domain":"grindel.ch","mx":["grindel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grindel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2618":{"name":"Himmelried","canton":"Kanton Solothurn","domain":"himmelried.ch","mx":["himmelried-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX himmelried-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.himmelried.ch CNAME → selector1-himmelried-ch._domainkey.himmelried.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.himmelried.ch CNAME → selector2-himmelried-ch._domainkey.himmelried.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2619":{"name":"Kleinlützel","canton":"Kanton Solothurn","domain":"kleinluetzel.ch","mx":["kleinluetzel-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.48.58.75 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kleinluetzel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2620":{"name":"Meltingen","canton":"Kanton Solothurn","domain":"meltingen.ch","mx":["meltingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX meltingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2621":{"name":"Nunningen","canton":"Kanton Solothurn","domain":"nunningen.ch","mx":["nunningen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nunningen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2622":{"name":"Zullwil","canton":"Kanton Solothurn","domain":"zullwil.ch","mx":["zullwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zullwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2701":{"name":"Basel","canton":"Kanton Basel-Stadt","domain":"bs.ch","mx":["mail.swisscom.com","mail10.swisscom.com","mail20.swisscom.com"],"spf":"v=spf1 a:mx.kundenserver.de a:spf.bs.ch include:spf.swisscom.com include:spf.crsend.com include:spf.appmail.swisscom.com include:servers.mcsv.net include:spf.nextron.ch include:_spf.jpberlin.de include:newsmailservice.de include:_spfip.oriented.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2702":{"name":"Bettingen","canton":"Kanton Basel-Stadt","domain":"bettingen.ch","mx":["mail.swisscom.com","mail10.swisscom.com","mail20.swisscom.com"],"spf":"v=spf1 a mx include:spf.swisscom.com ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2703":{"name":"Riehen","canton":"Kanton Basel-Stadt","domain":"riehen.ch","mx":["mail.swisscom.com","mail10.swisscom.com","mail20.swisscom.com"],"spf":"v=spf1 include:spf.swisscom.com include:spf.abacus.ch include:spf.amazee.io ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2761":{"name":"Aesch (BL)","canton":"Kanton Basel-Landschaft","domain":"aesch.bl.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf.protection.outlook.com include:spf.abacuscity.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2762":{"name":"Allschwil","canton":"Kanton Basel-Landschaft","domain":"allschwil.bl.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:_spf.talus.ch ip4:178.174.17.194 a:smtp-inca.allschwil.bl.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2763":{"name":"Arlesheim","canton":"Kanton Basel-Landschaft","domain":"arlesheim.ch","mx":["\\032nt.datacomm.ch","arlesheim-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX arlesheim-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2764":{"name":"Biel-Benken","canton":"Kanton Basel-Landschaft","domain":"biel-benken.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 include:_spf.talus.ch ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2765":{"name":"Binningen","canton":"Kanton Basel-Landschaft","domain":"binningen.ch","mx":["smtp.backslash.ch"],"spf":"v=spf1 ip4:193.135.56.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2766":{"name":"Birsfelden","canton":"Kanton Basel-Landschaft","domain":"birsfelden.ch","mx":["mx1.naveum.services","mx2.naveum.services"],"spf":"v=spf1 mx a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services ip4:194.56.218.181 include:spf.abacuscity.ch include:_spf.talus.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"2767":{"name":"Bottmingen","canton":"Kanton Basel-Landschaft","domain":"bottmingen.ch","mx":["bottmingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a include:spf.protection.outlook.com include:_spf.talus.ch include:spf.etermin.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bottmingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bottmingen.ch CNAME → selector1-bottmingen-ch._domainkey.ms365bottmingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bottmingen.ch CNAME → selector2-bottmingen-ch._domainkey.ms365bottmingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2768":{"name":"Ettingen","canton":"Kanton Basel-Landschaft","domain":"ettingen.ch","mx":["ettingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:web23.internezzo.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ettingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2769":{"name":"Münchenstein","canton":"Kanton Basel-Landschaft","domain":"muenchenstein.ch","mx":["mstein.in.tmes.trendmicro.eu"],"spf":"v=spf1 a mx a:mail.muenchenstein.ch ip4:212.120.52.22 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_netblocks1.admin.ch include:_netblocks3.admin.ch include:_spf.talus.ch include:spf.abacuscity.ch include:spf.tmes.trendmicro.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"2770":{"name":"Muttenz","canton":"Kanton Basel-Landschaft","domain":"muttenz.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch a:mail.i-web.ch ip4:87.102.253.202 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2771":{"name":"Oberwil (BL)","canton":"Kanton Basel-Landschaft","domain":"oberwil.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 include:_spfmx.rizag.ch mx include:_spf.i-web.ch include:spf.protection.outlook.com ip4:212.103.71.210 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"2772":{"name":"Pfeffingen","canton":"Kanton Basel-Landschaft","domain":"pfeffingen.ch","mx":["pfeffingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pfeffingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2773":{"name":"Reinach (BL)","canton":"Kanton Basel-Landschaft","domain":"reinach-bl.ch","mx":["reinach-bl-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx a:mail.format-ag.ch a:eu1.smtp.exclaimer.net a:eu2.smtp.exclaimer.net include:spf.protection.outlook.com include:spf.umantis.com include:_spf.ch.seppmail.cloud ip4:162.12.200.200 ip4:162.12.202.20 ip4:162.12.202.6 ip4:162.12.203.214 -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"2774":{"name":"Schönenbuch","canton":"Kanton Basel-Landschaft","domain":"schoenenbuch.ch","mx":["schoenenbuch-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schoenenbuch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2775":{"name":"Therwil","canton":"Kanton Basel-Landschaft","domain":"therwil.ch","mx":["therwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:146.4.42.27 ip4:212.120.37.100 a:mail.ostendis.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX therwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.therwil.ch CNAME → selector1-therwil-ch._domainkey.therwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.therwil.ch CNAME → selector2-therwil-ch._domainkey.therwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2781":{"name":"Blauen","canton":"Kanton Basel-Landschaft","domain":"blauen.ch","mx":["blauen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX blauen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2782":{"name":"Brislach","canton":"Kanton Basel-Landschaft","domain":"brislach.ch","mx":["brislach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brislach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2783":{"name":"Burg im Leimental","canton":"Kanton Basel-Landschaft","domain":"burg-il.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2784":{"name":"Dittingen","canton":"Kanton Basel-Landschaft","domain":"dittingen.ch","mx":["dittingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dittingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.dittingen.ch CNAME → selector1-dittingen-ch._domainkey.gemeindedittingench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.dittingen.ch CNAME → selector2-dittingen-ch._domainkey.gemeindedittingench.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2785":{"name":"Duggingen","canton":"Kanton Basel-Landschaft","domain":"duggingen.ch","mx":["duggingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX duggingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2786":{"name":"Grellingen","canton":"Kanton Basel-Landschaft","domain":"grellingen.ch","mx":["grellingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch a:svce-mail.softec.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grellingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2787":{"name":"Laufen","canton":"Kanton Basel-Landschaft","domain":"laufen-bl.ch","mx":["laufenbl-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX laufenbl-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2788":{"name":"Liesberg","canton":"Kanton Basel-Landschaft","domain":"liesberg.ch","mx":["liesberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX liesberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2789":{"name":"Nenzlingen","canton":"Kanton Basel-Landschaft","domain":"nenzlingen.ch","mx":["nenzlingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nenzlingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2790":{"name":"Roggenburg","canton":"Kanton Basel-Landschaft","domain":"roggenburg.ch","mx":["roggenburg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX roggenburg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2791":{"name":"Röschenz","canton":"Kanton Basel-Landschaft","domain":"roeschenz.ch","mx":["roeschenz-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:85.4.210.100 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX roeschenz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2792":{"name":"Wahlen","canton":"Kanton Basel-Landschaft","domain":"gemeinde-wahlen.ch","mx":["gemeindewahlen-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindewahlen-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2793":{"name":"Zwingen","canton":"Kanton Basel-Landschaft","domain":"zwingen.ch","mx":["zwingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX zwingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2821":{"name":"Arisdorf","canton":"Kanton Basel-Landschaft","domain":"arisdorf.ch","mx":["arisdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX arisdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.arisdorf.ch CNAME → selector1-arisdorf-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.arisdorf.ch CNAME → selector2-arisdorf-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2822":{"name":"Augst","canton":"Kanton Basel-Landschaft","domain":"augst.ch","mx":["augst-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX augst-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.augst.ch CNAME → selector1-augst-ch._domainkey.gemeindeaugstch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.augst.ch CNAME → selector2-augst-ch._domainkey.gemeindeaugstch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2823":{"name":"Bubendorf","canton":"Kanton Basel-Landschaft","domain":"bubendorf.swiss","mx":["bubendorf-swiss.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.talus.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bubendorf-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2824":{"name":"Frenkendorf","canton":"Kanton Basel-Landschaft","domain":"frenkendorf.ch","mx":["frenkendorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:communication.backslash.ch +a:psm.knowbe4.com +a:de.knowbe4.com +A -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX frenkendorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.frenkendorf.ch CNAME → selector1-frenkendorf-ch._domainkey.frenkendorfch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.frenkendorf.ch CNAME → selector2-frenkendorf-ch._domainkey.frenkendorfch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2825":{"name":"Füllinsdorf","canton":"Kanton Basel-Landschaft","domain":"fuellinsdorf.ch","mx":["fuellinsdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 include:_netblocks1.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX fuellinsdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2826":{"name":"Giebenach","canton":"Kanton Basel-Landschaft","domain":"giebenach.ch","mx":["giebenach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX giebenach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2827":{"name":"Hersberg","canton":"Kanton Basel-Landschaft","domain":"hersberg.ch","mx":["hersberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hersberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hersberg.ch CNAME → selector1-hersberg-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hersberg.ch CNAME → selector2-hersberg-ch._domainkey.gemeindearisdorfch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2828":{"name":"Lausen","canton":"Kanton Basel-Landschaft","domain":"lausen.ch","mx":["lausen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.talus.ch ip4:46.140.120.238 ip4:194.56.218.181 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lausen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2829":{"name":"Liestal","canton":"Kanton Basel-Landschaft","domain":"liestal.ch","mx":["mx3.armacom.ch"],"spf":"v=spf1 mx include:spf.armacom.ch a:mail.liestal.ch include:_spf.i-web.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2830":{"name":"Lupsingen","canton":"Kanton Basel-Landschaft","domain":"lupsingen.ch","mx":["lupsingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lupsingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2831":{"name":"Pratteln","canton":"Kanton Basel-Landschaft","domain":"pratteln.ch","mx":["mx3.armacom.ch"],"spf":"v=spf1 a:mail01.refline.ch a:mail02.refline.ch ip4:162.23.32.0/27 ip4:162.23.37.176 ip4:162.23.37.177 ip4:162.23.97.167 ip4:162.23.97.166 ip4:213.188.248.154 include:spf.armacom.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2832":{"name":"Ramlinsburg","canton":"Kanton Basel-Landschaft","domain":"ramlinsburg.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2833":{"name":"Seltisberg","canton":"Kanton Basel-Landschaft","domain":"seltisberg.ch","mx":["seltisberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:77.59.226.194 ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX seltisberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"2834":{"name":"Ziefen","canton":"Kanton Basel-Landschaft","domain":"ziefen.ch","mx":["ziefen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:194.0.212.0/24 ip4:193.135.56.6 ip4:195.48.58.75 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ziefen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ziefen.ch CNAME → selector1-ziefen-ch._domainkey.gemeindeziefench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ziefen.ch CNAME → selector2-ziefen-ch._domainkey.gemeindeziefench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2841":{"name":"Anwil","canton":"Kanton Basel-Landschaft","domain":"anwil.ch","mx":["anwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX anwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2842":{"name":"Böckten","canton":"Kanton Basel-Landschaft","domain":"boeckten.ch","mx":["mx01.servicehoster.ch","mx02.servicehoster.ch"],"spf":"v=spf1 include:servicehoster.ch a mx ip4:195.48.58.75 ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2843":{"name":"Buckten","canton":"Kanton Basel-Landschaft","domain":"buckten.ch","mx":["buckten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.tmes.trendmicro.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buckten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buckten.ch CNAME → selector1-buckten-ch._domainkey.gemeindebucktench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buckten.ch CNAME → selector2-buckten-ch._domainkey.gemeindebucktench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2844":{"name":"Buus","canton":"Kanton Basel-Landschaft","domain":"buus.ch","mx":["buus-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:62.202.29.62 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buus-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buus.ch CNAME → selector1-buus-ch._domainkey.gemeindebuusch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buus.ch CNAME → selector2-buus-ch._domainkey.gemeindebuusch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2845":{"name":"Diepflingen","canton":"Kanton Basel-Landschaft","domain":"diepflingen.ch","mx":["diepflingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX diepflingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.diepflingen.ch CNAME → selector1-diepflingen-ch._domainkey.gemeindediepflingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.diepflingen.ch CNAME → selector2-diepflingen-ch._domainkey.gemeindediepflingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2846":{"name":"Gelterkinden","canton":"Kanton Basel-Landschaft","domain":"gelterkinden.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 mx a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2847":{"name":"Häfelfingen","canton":"Kanton Basel-Landschaft","domain":"haefelfingen.ch","mx":["haefelfingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX haefelfingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.haefelfingen.ch CNAME → selector1-haefelfingen-ch._domainkey.gemeindehaefelfingench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.haefelfingen.ch CNAME → selector2-haefelfingen-ch._domainkey.gemeindehaefelfingench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2848":{"name":"Hemmiken","canton":"Kanton Basel-Landschaft","domain":"hemmiken.ch","mx":["rrmx.imp.ch"],"spf":"v=spf1 include:_mailspf.imp.ch include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2849":{"name":"Itingen","canton":"Kanton Basel-Landschaft","domain":"itingen.ch","mx":["itingen-ch.mail.protection.outlook.com","mail.itingen.ch"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX itingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2850":{"name":"Känerkinden","canton":"Kanton Basel-Landschaft","domain":"kaenerkinden.ch","mx":["kaenerkinden-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kaenerkinden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2851":{"name":"Kilchberg (BL)","canton":"Kanton Basel-Landschaft","domain":"verbund-schafmatt.ch","mx":["verbundschafmatt-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2852":{"name":"Läufelfingen","canton":"Kanton Basel-Landschaft","domain":"laeufelfingen.ch","mx":["laeufelfingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch +include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX laeufelfingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2853":{"name":"Maisprach","canton":"Kanton Basel-Landschaft","domain":"maisprach.ch","mx":["maisprach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX maisprach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.maisprach.ch CNAME → selector1-maisprach-ch._domainkey.gemeindemaisprachch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.maisprach.ch CNAME → selector2-maisprach-ch._domainkey.gemeindemaisprachch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2854":{"name":"Nusshof","canton":"Kanton Basel-Landschaft","domain":"nusshof.ch","mx":["nusshof-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nusshof-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.nusshof.ch CNAME → selector1-nusshof-ch._domainkey.gemeindenusshofch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.nusshof.ch CNAME → selector2-nusshof-ch._domainkey.gemeindenusshofch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2855":{"name":"Oltingen","canton":"Kanton Basel-Landschaft","domain":"verbund-schafmatt.ch","mx":["verbundschafmatt-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2856":{"name":"Ormalingen","canton":"Kanton Basel-Landschaft","domain":"ormalingen.ch","mx":["ormalingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ormalingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ormalingen.ch CNAME → selector1-ormalingen-ch._domainkey.gemeindeormalingench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ormalingen.ch CNAME → selector2-ormalingen-ch._domainkey.gemeindeormalingench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2857":{"name":"Rickenbach (BL)","canton":"Kanton Basel-Landschaft","domain":"rickenbach-bl.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 a mx ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:195.48.58.75 include:egeko.ch include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2858":{"name":"Rothenfluh","canton":"Kanton Basel-Landschaft","domain":"rothenfluh.ch","mx":["rothenfluh-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:195.48.58.75 include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rothenfluh-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rothenfluh.ch CNAME → selector1-rothenfluh-ch._domainkey.gemeinderothenfluhch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rothenfluh.ch CNAME → selector2-rothenfluh-ch._domainkey.gemeinderothenfluhch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2859":{"name":"Rümlingen","canton":"Kanton Basel-Landschaft","domain":"ruemlingen.ch","mx":["mail.ruemlingen.ch"],"spf":"v=spf1 a mx +include:spf1.egeko.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2860":{"name":"Rünenberg","canton":"Kanton Basel-Landschaft","domain":"verbund-schafmatt.ch","mx":["verbundschafmatt-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2861":{"name":"Sissach","canton":"Kanton Basel-Landschaft","domain":"sissach.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 mx a:mail.ostendis.ch include:_spf.talus.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2862":{"name":"Tecknau","canton":"Kanton Basel-Landschaft","domain":"tecknau.ch","mx":["tecknau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:193.135.56.22 include:smtp.backslash.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tecknau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2863":{"name":"Tenniken","canton":"Kanton Basel-Landschaft","domain":"tenniken.ch","mx":["tenniken-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tenniken-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.tenniken.ch CNAME → selector1-tenniken-ch._domainkey.gemeindetennikench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.tenniken.ch CNAME → selector2-tenniken-ch._domainkey.gemeindetennikench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2864":{"name":"Thürnen","canton":"Kanton Basel-Landschaft","domain":"thuernen.ch","mx":["thuernen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX thuernen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.thuernen.ch CNAME → selector1-thuernen-ch._domainkey.thuernen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.thuernen.ch CNAME → selector2-thuernen-ch._domainkey.thuernen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2865":{"name":"Wenslingen","canton":"Kanton Basel-Landschaft","domain":"verbund-schafmatt.ch","mx":["verbundschafmatt-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2866":{"name":"Wintersingen","canton":"Kanton Basel-Landschaft","domain":"wintersingen.ch","mx":["wintersingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wintersingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wintersingen.ch CNAME → selector1-wintersingen-ch._domainkey.gemeindewintersingench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wintersingen.ch CNAME → selector2-wintersingen-ch._domainkey.gemeindewintersingench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2867":{"name":"Wittinsburg","canton":"Kanton Basel-Landschaft","domain":"wittinsburg.ch","mx":["wittinsburg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wittinsburg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2868":{"name":"Zeglingen","canton":"Kanton Basel-Landschaft","domain":"verbund-schafmatt.ch","mx":["verbundschafmatt-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verbundschafmatt-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.verbund-schafmatt.ch CNAME → selector1-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.verbund-schafmatt.ch CNAME → selector2-verbundschafmatt-ch01i._domainkey.gemeindeverbundschafmatt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2869":{"name":"Zunzgen","canton":"Kanton Basel-Landschaft","domain":"zunzgen.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 ip4:193.33.128.160 include:_spf.tophost.ch +a +mx include:relay.mailchannels.net +ip4:62.202.27.236 +ip4:162.23.37.176 +ip4:162.23.37.177 +ip4:162.23.97.167 +ip4:162.23.97.166 +include:_netblocks1.admin.ch +include:_netblocks3.admin.ch +include:_netblocks4.admin.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2881":{"name":"Arboldswil","canton":"Kanton Basel-Landschaft","domain":"arboldswil.ch","mx":["arboldswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.150.248.121 include:_spf.tophost.ch include:relay.mailchannels.net mx a ip4:194.150.248.30 ip4:194.150.248.92 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX arboldswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.arboldswil.ch CNAME → selector1-arboldswil-ch._domainkey.gemeindearboldswilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.arboldswil.ch CNAME → selector2-arboldswil-ch._domainkey.gemeindearboldswilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2882":{"name":"Bennwil","canton":"Kanton Basel-Landschaft","domain":"bennwil.ch","mx":["bennwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bennwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bennwil.ch CNAME → selector1-bennwil-ch._domainkey.gemeindebennwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bennwil.ch CNAME → selector2-bennwil-ch._domainkey.gemeindebennwilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2883":{"name":"Bretzwil","canton":"Kanton Basel-Landschaft","domain":"bretzwil.ch","mx":["mx01.tophost.ch","mx02.tophost.ch"],"spf":"v=spf1 a mx ip4:193.33.128.146 include:_spf.tophost.ch include:relay.mailchannels.net -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2884":{"name":"Diegten","canton":"Kanton Basel-Landschaft","domain":"diegten.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2885":{"name":"Eptingen","canton":"Kanton Basel-Landschaft","domain":"eptingen.ch","mx":["mail.eptingen.ch"],"spf":"v=spf1 ip4:149.126.4.35 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2886":{"name":"Hölstein","canton":"Kanton Basel-Landschaft","domain":"hoelstein.ch","mx":["hoelstein-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hoelstein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hoelstein.ch CNAME → selector1-hoelstein-ch._domainkey.gemeindehoelsteinch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hoelstein.ch CNAME → selector2-hoelstein-ch._domainkey.gemeindehoelsteinch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2887":{"name":"Lampenberg","canton":"Kanton Basel-Landschaft","domain":"lampenberg.ch","mx":["lampenberg.in.tmes.trendmicro.eu"],"spf":"v=spf1 include:spf.tmes.trendmicro.com include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"}],"gateway":"trendmicro"},"2888":{"name":"Langenbruck","canton":"Kanton Basel-Landschaft","domain":"langenbruck.ch","mx":["langenbruck-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:149.126.4.36 +a +mx +ip4:195.48.58.75 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX langenbruck-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.langenbruck.ch CNAME → selector1-langenbruck-ch._domainkey.gemeindelangenbruckch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.langenbruck.ch CNAME → selector2-langenbruck-ch._domainkey.gemeindelangenbruckch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2889":{"name":"Lauwil","canton":"Kanton Basel-Landschaft","domain":"lauwil.ch","mx":["lauwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.150.248.81 include:_spf.tophost.ch include:relay.mailchannels.net +mx +a +ip4:194.150.248.139 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lauwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2890":{"name":"Liedertswil","canton":"Kanton Basel-Landschaft","domain":"liedertswil.ch","mx":["mx01.servicehoster.ch","mx02.servicehoster.ch"],"spf":"v=spf1 include:servicehoster.ch a mx ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2891":{"name":"Niederdorf","canton":"Kanton Basel-Landschaft","domain":"niederdorf.ch","mx":["niederdorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf.vtx.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX niederdorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2892":{"name":"Oberdorf (BL)","canton":"Kanton Basel-Landschaft","domain":"bl.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 ip4:193.47.168.33 ip4:178.209.55.12 ip4:93.187.192.135 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch include:spf.umantis.com include:spf.appmail.swisscom.com include:spf.mail.webland.ch include:spf.mail.hostpoint.ch include:spf.sendinblue.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"}]},"2893":{"name":"Reigoldswil","canton":"Kanton Basel-Landschaft","domain":"gde-reigoldswil.ch","mx":["gdereigoldswil-ch0i.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gdereigoldswil-ch0i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gde-reigoldswil.ch CNAME → selector1-gdereigoldswil-ch0i._domainkey.gemeindereigoldswilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gde-reigoldswil.ch CNAME → selector2-gdereigoldswil-ch0i._domainkey.gemeindereigoldswilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2894":{"name":"Titterten","canton":"Kanton Basel-Landschaft","domain":"titterten.ch","mx":["mx01.tophost.ch","mx02.tophost.ch"],"spf":"v=spf1 ip4:194.150.248.81 include:_spf.tophost.ch include:relay.mailchannels.net ip4:194.150.248.139 +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2895":{"name":"Waldenburg","canton":"Kanton Basel-Landschaft","domain":"waldenburg.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.blk.ymc.swiss include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2901":{"name":"Gächlingen","canton":"Kanton Schaffhausen","domain":"gaechlingen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx a mx:triwdata.ch/27 include:spf.umantis.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2903":{"name":"Löhningen","canton":"Kanton Schaffhausen","domain":"loehningen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 ip4:195.246.245.125 ip4:195.246.245.126 include:spf.protection.outlook.com include:spf.mail.webland.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"2904":{"name":"Neunkirch","canton":"Kanton Schaffhausen","domain":"neunkirch.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2914":{"name":"Büttenhardt","canton":"Kanton Schaffhausen","domain":"buettenhardt.ch","mx":["buettenhardt-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buettenhardt-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2915":{"name":"Dörflingen","canton":"Kanton Schaffhausen","domain":"doerflingen.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 ip4:193.135.56.6 redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2917":{"name":"Lohn (SH)","canton":"Kanton Schaffhausen","domain":"lohn.ch","mx":["lohn.ch"],"spf":"v=spf1 include:spf.protection.cyon.net -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"2919":{"name":"Stetten (SH)","canton":"Kanton Schaffhausen","domain":"stetten.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:178.250.24.196 -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2920":{"name":"Thayngen","canton":"Kanton Schaffhausen","domain":"thayngen.ch","mx":["mx1.mtfcloud.ch","mx2.mtfcloud.ch"],"spf":"v=spf1 ip4:195.226.6.102 include:spf.mtfweb.ch include:_spf.sui-inter.net -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2931":{"name":"Bargen (SH)","canton":"Kanton Schaffhausen","domain":"bargen.ch","mx":["mx.bargen.ch"],"spf":"v=spf1 mx ip4:178.250.24.196 include:spf.protection.cyon.net -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2932":{"name":"Beringen","canton":"Kanton Schaffhausen","domain":"beringen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf.mandrillapp.com include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2933":{"name":"Buchberg","canton":"Kanton Schaffhausen","domain":"buchberg.ch","mx":["buchberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.245.188.35 ip4:193.135.58.35 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buchberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buchberg.ch CNAME → selector1-buchberg-ch._domainkey.buchbergsh.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buchberg.ch CNAME → selector2-buchberg-ch._domainkey.buchbergsh.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2936":{"name":"Merishausen","canton":"Kanton Schaffhausen","domain":"merishausen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2937":{"name":"Neuhausen am Rheinfall","canton":"Kanton Schaffhausen","domain":"neuhausen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx mx:hin.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2938":{"name":"Rüdlingen","canton":"Kanton Schaffhausen","domain":"ruedlingen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx ip4:178.250.24.196 ip4:159.144.81.1 a:mail.codx.ch include:spf.umantis.com include:spf.privasphere.com ip4:212.80.96.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2939":{"name":"Schaffhausen","canton":"Kanton Schaffhausen","domain":"stsh.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx include:_spf.mailersend.net ip4:178.250.24.196 mx:hin.ch include:_spf.taywa.ch include:spf.umantis.com include:spf.protection.outlook.com a:mx1.mtfweb.ch a:mx2.mtfweb.ch ip4:212.80.96.0/21 ip6:2a01:7480:1:100::/64 -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2951":{"name":"Beggingen","canton":"Kanton Schaffhausen","domain":"beggingen.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 include:spf1.egeko.ch redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"2952":{"name":"Schleitheim","canton":"Kanton Schaffhausen","domain":"schleitheim.ch","mx":["mx1.mtfcloud.ch","mx2.mtfcloud.ch","mx3.mtfcloud.ch"],"spf":"v=spf1 include:spf.mtfcloud.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2953":{"name":"Siblingen","canton":"Kanton Schaffhausen","domain":"siblingen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2961":{"name":"Buch (SH)","canton":"Kanton Schaffhausen","domain":"buch-sh.ch","mx":["mail.buch-sh.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2962":{"name":"Hemishofen","canton":"Kanton Schaffhausen","domain":"hemishofen.ch","mx":["mail.hemishofen.ch"],"spf":"v=spf1 +include:_spf.sui-inter.net +include:spf1.egeko.ch +a +mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"2963":{"name":"Ramsen","canton":"Kanton Schaffhausen","domain":"ramsen.ch","mx":["ramsen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ramsen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ramsen.ch CNAME → selector1-ramsen-ch._domainkey.gemeinderamsen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ramsen.ch CNAME → selector2-ramsen-ch._domainkey.gemeinderamsen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2964":{"name":"Stein am Rhein","canton":"Kanton Schaffhausen","domain":"steinamrhein.ch","mx":["steinamrhein-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.mailjet.com include:_spf.rzobt.ch ip4:194.6.176.0/24 ip4:164.128.36.0/24 ip4:193.135.56.6/32 ip4:46.231.200.190/32 ip4:46.231.200.191/32 include:spf.protection.outlook.com mx include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX steinamrhein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"2971":{"name":"Hallau","canton":"Kanton Schaffhausen","domain":"hallau.ch","mx":["hallau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.rzobt.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hallau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2972":{"name":"Oberhallau","canton":"Kanton Schaffhausen","domain":"oberhallau.ch","mx":["oberhallau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX oberhallau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"2973":{"name":"Trasadingen","canton":"Kanton Schaffhausen","domain":"ktsh.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx ip4:178.250.24.196 a:carmx01.bedag.ch a:mail.codx.ch include:spf.umantis.com include:spf.abxsec.com include:spf.privasphere.com mx:mtfweb.ch include:_spf.senders.scnem.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"2974":{"name":"Wilchingen","canton":"Kanton Schaffhausen","domain":"wilchingen.ch","mx":["miraculix1.ksd.ch","miraculix2.ksd.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3001":{"name":"Herisau","canton":"Kanton Appenzell Ausserrhoden","domain":"herisau.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch include:_spf.i-web.ch ip4:212.4.70.139 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3002":{"name":"Hundwil","canton":"Kanton Appenzell Ausserrhoden","domain":"hundwil.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3003":{"name":"Schönengrund","canton":"Kanton Appenzell Ausserrhoden","domain":"schoenengrund.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3004":{"name":"Schwellbrunn","canton":"Kanton Appenzell Ausserrhoden","domain":"schwellbrunn.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3005":{"name":"Stein (AR)","canton":"Kanton Appenzell Ausserrhoden","domain":"stein.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3006":{"name":"Urnäsch","canton":"Kanton Appenzell Ausserrhoden","domain":"ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch a:ar03.snowflakehosting.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3007":{"name":"Waldstatt","canton":"Kanton Appenzell Ausserrhoden","domain":"waldstatt.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3021":{"name":"Bühler","canton":"Kanton Appenzell Ausserrhoden","domain":"buehler.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch ip4:80.74.151.156 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3022":{"name":"Gais","canton":"Kanton Appenzell Ausserrhoden","domain":"ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch a:ar03.snowflakehosting.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3023":{"name":"Speicher","canton":"Kanton Appenzell Ausserrhoden","domain":"speicher.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3024":{"name":"Teufen (AR)","canton":"Kanton Appenzell Ausserrhoden","domain":"teufen.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3025":{"name":"Trogen","canton":"Kanton Appenzell Ausserrhoden","domain":"trogen.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3031":{"name":"Grub (AR)","canton":"Kanton Appenzell Ausserrhoden","domain":"grub.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3032":{"name":"Heiden","canton":"Kanton Appenzell Ausserrhoden","domain":"heiden.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3033":{"name":"Lutzenberg","canton":"Kanton Appenzell Ausserrhoden","domain":"lutzenberg.ch","mx":["dmzfml0001-swi.ari-ag.ch","dmzfml0001.ari-ag.ch","dmzfml0002-swi.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":60.0,"classification_signals":[]},"3034":{"name":"Rehetobel","canton":"Kanton Appenzell Ausserrhoden","domain":"rehetobel.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.223 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3035":{"name":"Reute (AR)","canton":"Kanton Appenzell Ausserrhoden","domain":"reute.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3036":{"name":"Wald (AR)","canton":"Kanton Appenzell Ausserrhoden","domain":"wald.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3037":{"name":"Walzenhausen","canton":"Kanton Appenzell Ausserrhoden","domain":"walzenhausen.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3038":{"name":"Wolfhalden","canton":"Kanton Appenzell Ausserrhoden","domain":"wolfhalden.ar.ch","mx":["dmzfml0001.ari-ag.ch","dmzfml0002.ari-ag.ch"],"spf":"v=spf1 include:_spf.ari-ag.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"}]},"3101":{"name":"Appenzell","canton":"Kanton Appenzell Innerrhoden","domain":"appenzell.ai.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ip4:194.147.134.3 -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3102":{"name":"Gonten","canton":"Kanton Appenzell Innerrhoden","domain":"gonten.ch","mx":["mg04.newday.ch","mg05.newday.ch"],"spf":"v=spf1 a a:mg02.newday.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"asn","detail":"ASN 15576 is Swiss ISP: NTS"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15576 is Swiss ISP: NTS"}]},"3104":{"name":"Schlatt-Haslen","canton":"Kanton Appenzell Innerrhoden","domain":"schlatt-haslen.ch","mx":["mail.schlatt-haslen.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3111":{"name":"Oberegg","canton":"Kanton Appenzell Innerrhoden","domain":"oberegg.ai.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ip4:194.147.134.3 -all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3112":{"name":"Schwende-Rüte","canton":"Kanton Appenzell Innerrhoden","domain":"schwende-ruete.ai.ch","mx":["ktvmx01.mail.admin.ch","ktvmx02.mail.admin.ch","ktvmx03.mail.admin.ch","ktvmx04.mail.admin.ch"],"spf":"v=spf1 include:_netblocks1.admin.ch include:_netblocks2.admin.ch include:_netblocks3.admin.ch include:_netblocks4.admin.ch ip4:159.100.252.16 ip4:194.147.134.3 -all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3201":{"name":"Häggenschwil","canton":"Kanton St. Gallen","domain":"haeggenschwil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"3202":{"name":"Muolen","canton":"Kanton St. Gallen","domain":"muolen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3203":{"name":"St. Gallen","canton":"Kanton St. Gallen","domain":"stadt.sg.ch","mx":["stadt-sg-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:spf.abxsec.com include:ict-sicherheit.stadt.sg.ch include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud include:mailgun.org ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"autodiscover","detail":"autodiscover SRV → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"seppmail"},"3204":{"name":"Wittenbach","canton":"Kanton St. Gallen","domain":"wittenbach.ch","mx":["wittenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:146.185.79.58 include:spf.abxsec.com include:spf.protection.outlook.com include:abx-net.net +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wittenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wittenbach.ch CNAME → selector1-wittenbach-ch._domainkey.gemeindewittenbach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wittenbach.ch CNAME → selector2-wittenbach-ch._domainkey.gemeindewittenbach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3211":{"name":"Berg (SG)","canton":"Kanton St. Gallen","domain":"bergsg.ch","mx":["bergsg-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:83.173.233.138 include:_spf.abxsec.com include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"3212":{"name":"Eggersriet","canton":"Kanton St. Gallen","domain":"eggersriet.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3213":{"name":"Goldach","canton":"Kanton St. Gallen","domain":"goldach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.abacuscity.ch include:spf1.refline.ch include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3214":{"name":"Mörschwil","canton":"Kanton St. Gallen","domain":"moerschwil.ch","mx":["moerschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX moerschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3215":{"name":"Rorschach","canton":"Kanton St. Gallen","domain":"rorschach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 ip4:217.162.10.22 include:_spf.abxsec.com include:spf.protection.outlook.com include:agenturserver.de include:_spf.i-web.ch include:spf.postal.e9li.io ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"abxsec"},"3216":{"name":"Rorschacherberg","canton":"Kanton St. Gallen","domain":"rorschacherberg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:217.162.10.22 include:_spf.abxsec.com include:_spf.i-web.ch include:spf.protection.outlook.com redirect=spf.mail.hostpoint.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rorschacherberg.ch CNAME → selector1-rorschacherberg-ch._domainkey.rorschacherbergch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rorschacherberg.ch CNAME → selector2-rorschacherberg-ch._domainkey.rorschacherbergch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"abxsec"},"3217":{"name":"Steinach","canton":"Kanton St. Gallen","domain":"steinach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 include:_spf.mlsend.com mx include:_spf.abxsec.com include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3218":{"name":"Tübach","canton":"Kanton St. Gallen","domain":"tuebach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com","smtagb02.abxsec.com","smtasg01.abxsec.com","smtazh01.abxsec.com","smtazh02.abxsec.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.mlsend.com mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.tuebach.ch CNAME → selector1-tuebach-ch._domainkey.gemeindetuebach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.tuebach.ch CNAME → selector2-tuebach-ch._domainkey.gemeindetuebach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"abxsec"},"3219":{"name":"Untereggen","canton":"Kanton St. Gallen","domain":"untereggen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3231":{"name":"Au (SG)","canton":"Kanton St. Gallen","domain":"au.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3232":{"name":"Balgach","canton":"Kanton St. Gallen","domain":"balgach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3233":{"name":"Berneck","canton":"Kanton St. Gallen","domain":"berneck.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3234":{"name":"Diepoldsau","canton":"Kanton St. Gallen","domain":"diepoldsau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.6 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3235":{"name":"Rheineck","canton":"Kanton St. Gallen","domain":"rheineck.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 ip4:81.62.128.114 include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"abxsec"},"3236":{"name":"St. Margrethen","canton":"Kanton St. Gallen","domain":"stmargrethen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3237":{"name":"Thal","canton":"Kanton St. Gallen","domain":"thal.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 ip4:146.185.76.0/29 ip4:213.167.225.80 ip4:157.173.127.37 a:mail01.axc.biz include:_spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.thal.ch CNAME → selector1-thal-ch._domainkey.thalch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.thal.ch CNAME → selector2-thal-ch._domainkey.thalch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}],"gateway":"abxsec"},"3238":{"name":"Widnau","canton":"Kanton St. Gallen","domain":"widnau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 ip4:194.11.218.40 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.i-web.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3251":{"name":"Altstätten","canton":"Kanton St. Gallen","domain":"altstaetten.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:217.67.134.194 include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3252":{"name":"Eichberg","canton":"Kanton St. Gallen","domain":"eichberg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.ch-dns.net include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3253":{"name":"Marbach (SG)","canton":"Kanton St. Gallen","domain":"marbach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"3254":{"name":"Oberriet (SG)","canton":"Kanton St. Gallen","domain":"oberriet.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3255":{"name":"Rebstein","canton":"Kanton St. Gallen","domain":"rebstein.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3256":{"name":"Rüthi (SG)","canton":"Kanton St. Gallen","domain":"ruethi.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3271":{"name":"Buchs (SG)","canton":"Kanton St. Gallen","domain":"buchs-sg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 a mx include:_spf.abxsec.com include:spf.postal.e9li.io include:spf.protection.outlook.com ip4:146.185.0.80/29 -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buchs-sg.ch CNAME → selector1-buchssg-ch01c._domainkey.buchssg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buchs-sg.ch CNAME → selector2-buchssg-ch01c._domainkey.buchssg.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3272":{"name":"Gams","canton":"Kanton St. Gallen","domain":"gams.ch","mx":["gams-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.abxsec.com ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gams-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gams.ch CNAME → selector1-gams-ch._domainkey.gamsgemeinde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gams.ch CNAME → selector2-gams-ch._domainkey.gamsgemeinde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3273":{"name":"Grabs","canton":"Kanton St. Gallen","domain":"grabs.sg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3274":{"name":"Sennwald","canton":"Kanton St. Gallen","domain":"sennwald.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3275":{"name":"Sevelen","canton":"Kanton St. Gallen","domain":"sevelen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com a include:spf.crsend.com a:mail01.refline.ch a:mail02.refline.ch include:spf.protection.outlook.com include:mail.kidesia.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3276":{"name":"Wartau","canton":"Kanton St. Gallen","domain":"wartau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3291":{"name":"Bad Ragaz","canton":"Kanton St. Gallen","domain":"badragaz.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3292":{"name":"Flums","canton":"Kanton St. Gallen","domain":"flums.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3293":{"name":"Mels","canton":"Kanton St. Gallen","domain":"mels.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.i-web.ch include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}],"gateway":"abxsec"},"3294":{"name":"Pfäfers","canton":"Kanton St. Gallen","domain":"pfaefers.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3295":{"name":"Quarten","canton":"Kanton St. Gallen","domain":"quarten.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3296":{"name":"Sargans","canton":"Kanton St. Gallen","domain":"sargans.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3297":{"name":"Vilters-Wangs","canton":"Kanton St. Gallen","domain":"vilters-wangs.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3298":{"name":"Walenstadt","canton":"Kanton St. Gallen","domain":"walenstadt.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3311":{"name":"Amden","canton":"Kanton St. Gallen","domain":"amden.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:spf.sendinblue.com include:spf.mailjet.com include:_spf.abxsec.com include:_spf.bexio.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3312":{"name":"Benken (SG)","canton":"Kanton St. Gallen","domain":"benken.sg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3313":{"name":"Kaltbrunn","canton":"Kanton St. Gallen","domain":"kaltbrunn.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3315":{"name":"Schänis","canton":"Kanton St. Gallen","domain":"schaenis.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3316":{"name":"Weesen","canton":"Kanton St. Gallen","domain":"weesen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"3338":{"name":"Schmerikon","canton":"Kanton St. Gallen","domain":"schmerikon.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3339":{"name":"Uznach","canton":"Kanton St. Gallen","domain":"uznach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.i-web.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3340":{"name":"Rapperswil-Jona","canton":"Kanton St. Gallen","domain":"rapperswil-jona.ch","mx":["secmail.rapperswil-jona.ch"],"spf":"v=spf1 include:spf.protection.outlook.com include:mail.rapperswil-jona.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rapperswil-jona.ch CNAME → selector1-rapperswiljona-ch02e._domainkey.rjsgch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rapperswil-jona.ch CNAME → selector2-rapperswiljona-ch02e._domainkey.rjsgch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3341":{"name":"Gommiswald","canton":"Kanton St. Gallen","domain":"gommiswald.ch","mx":["smtagb02.abxsec.com","smtasg01.abxsec.com","smtazh01.abxsec.com","smtazh02.abxsec.com"],"spf":"v=spf1 mx a:www.gommiswald.ch a:mail2.schule.gommiswald.ch include:spf.protection.outlook.com include:spf.abxsec.com redirect=spf.mail.hostpoint.ch","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gommiswald.ch CNAME → selector1-gommiswald-ch._domainkey.gmdgommiswald.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gommiswald.ch CNAME → selector2-gommiswald-ch._domainkey.gmdgommiswald.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"abxsec"},"3342":{"name":"Eschenbach (SG)","canton":"Kanton St. Gallen","domain":"eschenbach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3352":{"name":"Ebnat-Kappel","canton":"Kanton St. Gallen","domain":"ebnat-kappel.ch","mx":["ebnatkappel-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 a:mail.wattwil.ch include:spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ebnatkappel-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ebnat-kappel.ch CNAME → selector1-ebnatkappel-ch01c._domainkey.gemeindeebnatkappel.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ebnat-kappel.ch CNAME → selector2-ebnatkappel-ch01c._domainkey.gemeindeebnatkappel.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3359":{"name":"Wildhaus-Alt St. Johann","canton":"Kanton St. Gallen","domain":"wildhaus-altstjohann.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3360":{"name":"Nesslau","canton":"Kanton St. Gallen","domain":"nesslau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3374":{"name":"Lichtensteig","canton":"Kanton St. Gallen","domain":"lichtensteig.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3379":{"name":"Wattwil","canton":"Kanton St. Gallen","domain":"wattwil.ch","mx":["wattwil-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx a include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"3392":{"name":"Kirchberg (SG)","canton":"Kanton St. Gallen","domain":"kirchberg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.6 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3393":{"name":"Lütisburg","canton":"Kanton St. Gallen","domain":"luetisburg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3394":{"name":"Mosnang","canton":"Kanton St. Gallen","domain":"mosnang.ch","mx":["mosnang-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX mosnang-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3395":{"name":"Bütschwil-Ganterschwil","canton":"Kanton St. Gallen","domain":"buetschwil-ganterschwil.ch","mx":["smtasg01.abxsec.com","smtazh01.abxsec.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:spf.abxsec.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3396":{"name":"Neckertal","canton":"Kanton St. Gallen","domain":"neckertal.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 a mx include:_spf.abxsec.com include:_spf.sui-inter.net ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3401":{"name":"Degersheim","canton":"Kanton St. Gallen","domain":"degersheim.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3402":{"name":"Flawil","canton":"Kanton St. Gallen","domain":"flawil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 a mx include:spf.abxsec.com include:backslash.ch a:tesla2.sui-inter.net include:spf.abacuscity.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3405":{"name":"Jonschwil","canton":"Kanton St. Gallen","domain":"jonschwil.ch","mx":["jonschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX jonschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3407":{"name":"Oberuzwil","canton":"Kanton St. Gallen","domain":"oberuzwil.ch","mx":["oberuzwil-ch.gate.seppmail.cloud"],"spf":"v=spf1 a mx a:spam.geoinfo.ch a:mail.koelliker.ch a:mail.oberuzwil.ch ip4:62.12.163.0/27 ip4:185.63.67.18 include:spf.abxsec.com include:spf.protection.outlook.com include:_spf.i-web.ch include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oberuzwil.ch CNAME → selector1-oberuzwil-ch._domainkey.gou9242.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oberuzwil.ch CNAME → selector2-oberuzwil-ch._domainkey.gou9242.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"3408":{"name":"Uzwil","canton":"Kanton St. Gallen","domain":"uzwil.ch","mx":["uzwil-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:81.62.153.147 mx:hin.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.uzwil.ch CNAME → selector1-uzwil-ch._domainkey.gduzwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.uzwil.ch CNAME → selector2-uzwil-ch._domainkey.gduzwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"3422":{"name":"Niederbüren","canton":"Kanton St. Gallen","domain":"niederbueren.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 a mx include:_spf.abxsec.com include:relay.mailchannels.net include:spf.protection.outlook.com ip4:49.13.125.142 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3423":{"name":"Niederhelfenschwil","canton":"Kanton St. Gallen","domain":"niederhelfenschwil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"abxsec"},"3424":{"name":"Oberbüren","canton":"Kanton St. Gallen","domain":"oberbueren.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3426":{"name":"Zuzwil (SG)","canton":"Kanton St. Gallen","domain":"zuzwil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3427":{"name":"Wil (SG)","canton":"Kanton St. Gallen","domain":"stadtwil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com a:smtp.swil.ch a:bildung-web.ch include:spf.nl2go.com include:_spf.i-web.ch include:spf.abacuscity.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3441":{"name":"Andwil (SG)","canton":"Kanton St. Gallen","domain":"andwil.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3442":{"name":"Gaiserwald","canton":"Kanton St. Gallen","domain":"gaiserwald.ch","mx":["gaiserwald-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:212.80.96.0/21 ip4:213.196.176.25 ip6:2a01:7480:1:100::/64 include:_spf.abxsec.com include:spf.mtasv.net include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"3443":{"name":"Gossau (SG)","canton":"Kanton St. Gallen","domain":"stadtgossau.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:217.26.49.138 ip4:217.26.49.139 include:_spf.abxsec.com include:speedadmin.dk include:spf.nl2go.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3444":{"name":"Waldkirch","canton":"Kanton St. Gallen","domain":"waldkirch.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"abxsec"},"3506":{"name":"Vaz/Obervaz","canton":"Kanton Graubünden","domain":"vazobervaz.ch","mx":["vazobervaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf1.vazobervaz.ch include:spf2.vazobervaz.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":89.0,"classification_signals":[{"kind":"mx","detail":"MX vazobervaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3513":{"name":"Lantsch/Lenz","canton":"Kanton Graubünden","domain":"lantsch-lenz.ch","mx":["mx1.naveum.services","mx2.naveum.services"],"spf":"v=spf1 mx a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services include:_spf.tophost.ch","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"3514":{"name":"Schmitten (GR)","canton":"Kanton Graubünden","domain":"schmitten-gr.ch","mx":["mail.schmitten-gr.ch"],"spf":"v=spf1 +mx +a include:_spf.mail.hostserv.eu ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3542":{"name":"Albula/Alvra","canton":"Kanton Graubünden","domain":"albula-alvra.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3543":{"name":"Surses","canton":"Kanton Graubünden","domain":"surses.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"3544":{"name":"Bergün Filisur","canton":"Kanton Graubünden","domain":"berguenfilisur.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud a:webcms.ruf.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3551":{"name":"Brusio","canton":"Kanton Graubünden","domain":"brusio.ch","mx":["brusio-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.ddss.ch include:mailgun.org -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brusio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3561":{"name":"Poschiavo","canton":"Kanton Graubünden","domain":"poschiavo.ch","mx":["poschiavo-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:217.192.142.142 ip4:213.133.224.40 ip4:213.133.224.64 ip4:193.93.20.61 ip4:178.23.174.0/27 ip4:89.207.237.84 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX poschiavo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3572":{"name":"Falera","canton":"Kanton Graubünden","domain":"falera.net","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:193.93.20.0/26 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3575":{"name":"Laax","canton":"Kanton Graubünden","domain":"laax-gr.ch","mx":["laaxgr-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX laaxgr-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3581":{"name":"Sagogn","canton":"Kanton Graubünden","domain":"sagogn.ch","mx":["avas-in1.exigo.ch","avas-in2.exigo.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3582":{"name":"Schluein","canton":"Kanton Graubünden","domain":"schluein.ch","mx":["schluein-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:92.204.51.120 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schluein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.schluein.ch CNAME → selector1-schluein-ch._domainkey.schluein.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.schluein.ch CNAME → selector2-schluein-ch._domainkey.schluein.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3603":{"name":"Vals","canton":"Kanton Graubünden","domain":"vals.ch","mx":["vals-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:sendgrid.net include:_spf.mlsend.com include:egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vals-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vals.ch CNAME → selector1-vals-ch._domainkey.visitvals.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vals.ch CNAME → selector2-vals-ch._domainkey.visitvals.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"3618":{"name":"Lumnezia","canton":"Kanton Graubünden","domain":"lumnezia.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx ip4:193.93.20.0/26 include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"3619":{"name":"Ilanz/Glion","canton":"Kanton Graubünden","domain":"ilanz-glion.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx ip4:195.189.148.0/24 mx ip4:193.93.20.0/26 include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3633":{"name":"Fürstenau","canton":"Kanton Graubünden","domain":"fuerstenau.ch","mx":["mail.fuerstenau.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches google"}]},"3637":{"name":"Rothenbrunnen","canton":"Kanton Graubünden","domain":"rothenbrunnen.ch","mx":["mail.rothenbrunnen.ch"],"spf":"v=spf1 include:spf.protection.cyon.net -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3638":{"name":"Scharans","canton":"Kanton Graubünden","domain":"scharans.ch","mx":["mail.scharans.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches google"}]},"3640":{"name":"Sils im Domleschg","canton":"Kanton Graubünden","domain":"sils-id.ch","mx":["silsid-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.demicomp.ch include:_spf.i-web.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":91.0,"classification_signals":[{"kind":"mx","detail":"MX silsid-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3661":{"name":"Cazis","canton":"Kanton Graubünden","domain":"cazis.ch","mx":["cazis-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:81.62.176.126 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cazis-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cazis.ch CNAME → selector1-cazis-ch._domainkey.gemcazis.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cazis.ch CNAME → selector2-cazis-ch._domainkey.gemcazis.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"autodiscover","detail":"autodiscover SRV → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3662":{"name":"Flerden","canton":"Kanton Graubünden","domain":"flerden.ch","mx":["mail.flerden.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3663":{"name":"Masein","canton":"Kanton Graubünden","domain":"masein.ch","mx":["mail.masein.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3668":{"name":"Thusis","canton":"Kanton Graubünden","domain":"thusis.ch","mx":["thusis-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud include:spf.smtp2go.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX thusis-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3669":{"name":"Tschappina","canton":"Kanton Graubünden","domain":"tschappina.ch","mx":["mail.tschappina.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3670":{"name":"Urmein","canton":"Kanton Graubünden","domain":"urmein.ch","mx":["mail.urmein.ch"],"spf":"v=spf1 include:spf.protection.cyon.net -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"3672":{"name":"Safiental","canton":"Kanton Graubünden","domain":"safiental.ch","mx":["avas-in1.exigo.ch","avas-in2.exigo.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"3673":{"name":"Domleschg","canton":"Kanton Graubünden","domain":"domleschg.ch","mx":["domleschg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.mailjet.com ip4:146.4.102.214 include:spf.protection.outlook.com include:spf-repost-eu.tmcas.trendmicro.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX domleschg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3681":{"name":"Avers","canton":"Kanton Graubünden","domain":"avers.ch","mx":["mail.avers.ch"],"spf":"v=spf1 ip4:62.202.22.249 include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3695":{"name":"Sufers","canton":"Kanton Graubünden","domain":"sufers.ch","mx":["sufers-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sufers-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3701":{"name":"Andeer","canton":"Kanton Graubünden","domain":"andeer.ch","mx":["andeer-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX andeer-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3711":{"name":"Rongellen","canton":"Kanton Graubünden","domain":"rongellen.ch","mx":["rongellen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rongellen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rongellen.ch CNAME → selector1-rongellen-ch._domainkey.gemeinderongellench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rongellen.ch CNAME → selector2-rongellen-ch._domainkey.gemeinderongellench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3712":{"name":"Zillis-Reischen","canton":"Kanton Graubünden","domain":"zillis-reischen.ch","mx":["zillisreischen-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zillisreischen-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3713":{"name":"Ferrera","canton":"Kanton Graubünden","domain":"ferrera.ch","mx":["ferrera-ch.mail.protection.outlook.com"],"spf":"v=spf1 a ip4:80.74.145.75 ip4:80.74.145.111 include:spf.protection.outlook.com include:_spf.sui-inter.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ferrera-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3714":{"name":"Rheinwald","canton":"Kanton Graubünden","domain":"rheinwald.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx ip4:193.93.20.0/26 a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3715":{"name":"Muntogna da Schons","canton":"Kanton Graubünden","domain":"mdschons.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3721":{"name":"Bonaduz","canton":"","domain":"bonaduz.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx a:webcms.ruf.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3722":{"name":"Domat/Ems","canton":"","domain":"domat-ems.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 mx a:mail.alphacom.ch ip4:91.205.149.149 ip4:80.89.214.234 ip4:5.148.181.25 ip4:91.234.52.17 include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"}],"gateway":"sophos"},"3723":{"name":"Rhäzüns","canton":"","domain":"rhaezuens.ch","mx":["rhaezuens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rhaezuens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3731":{"name":"Felsberg","canton":"","domain":"felsberg.ch","mx":["felsberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX felsberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3732":{"name":"Flims","canton":"","domain":"gemeindeflims.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:195.189.148.0/24 include:_spf.i-web.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3733":{"name":"Tamins","canton":"","domain":"tamins.ch","mx":["tamins-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.62.159.14 include:spf.protection.outlook.com include:_spf.i-web.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tamins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3734":{"name":"Trin","canton":"","domain":"gemeindetrin.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx ip4:195.189.148.0/24 ip4:146.159.132.15 ip4:146.159.132.25 ip4:195.65.10.12 ip4:91.234.52.10 ip4:91.234.52.17 include:spf.abacuscity.ch include:spf.protection.outlook.com include:spf.customer.swiss-egov.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3746":{"name":"Zernez","canton":"Kanton Graubünden","domain":"zernez.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 include:_spf.prod.hydra.sophos.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"}],"gateway":"sophos"},"3752":{"name":"Samnaun","canton":"Kanton Graubünden","domain":"samnaun.swiss","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"hornetsecurity"},"3762":{"name":"Scuol","canton":"Kanton Graubünden","domain":"scuol.net","mx":["scuol-net.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX scuol-net.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.scuol.net CNAME → selector1-scuol-net._domainkey.gemeindescuol.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.scuol.net CNAME → selector2-scuol-net._domainkey.gemeindescuol.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3764":{"name":"Valsot","canton":"Kanton Graubünden","domain":"valsot.ch","mx":["valsot-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX valsot-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3781":{"name":"Bever","canton":"Kanton Graubünden","domain":"gemeinde-bever.ch","mx":["gemeindebever-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindebever-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"3782":{"name":"Celerina/Schlarigna","canton":"Kanton Graubünden","domain":"celerina.ch","mx":["celerina-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.mailersend.net include:spf.engadin.cloud include:spf.spotwerbung.ch include:spf.protection.outlook.com a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX celerina-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.celerina.ch CNAME → selector1-celerina-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.celerina.ch CNAME → selector2-celerina-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3783":{"name":"Madulain","canton":"Kanton Graubünden","domain":"madulain.ch","mx":["madulain-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:6803279.spf01.hubspotemail.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX madulain-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"3784":{"name":"Pontresina","canton":"Kanton Graubünden","domain":"pontresina.ch","mx":["pontresina-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.mailersend.net include:spf.engadin.cloud ip4:78.46.166.37 ip6:2a01:4f8:d0a:61c2::2 include:spf.spotwerbung.ch include:spfhard.crsend.com include:spf.mailjet.com include:eu.zcsend.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":94.0,"classification_signals":[{"kind":"mx","detail":"MX pontresina-ch.mail.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.pontresina.ch CNAME → selector1-pontresina-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.pontresina.ch CNAME → selector2-pontresina-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"autodiscover","detail":"autodiscover SRV → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3785":{"name":"La Punt Chamues-ch","canton":"Kanton Graubünden","domain":"lapunt.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.93.0.0/16 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"3786":{"name":"Samedan","canton":"Kanton Graubünden","domain":"samedan.gr.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"3787":{"name":"St. Moritz","canton":"Kanton Graubünden","domain":"stmoritz.ch","mx":["stmoritz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.mailersend.net include:spf.engadin.cloud include:spf.crsend.com include:spf.spotwerbung.ch ip4:94.130.127.175 ip4:94.130.145.106 ip4:78.46.211.212 ip4:212.71.124.244 ip4:212.59.169.85 include:spf.protection.outlook.com a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stmoritz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.stmoritz.ch CNAME → selector1-moritz-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.stmoritz.ch CNAME → selector2-moritz-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3788":{"name":"S-chanf","canton":"Kanton Graubünden","domain":"s-chanf.ch","mx":["schanf-ch0c.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.210.99.3 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schanf-ch0c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.s-chanf.ch CNAME → selector1-schanf-ch0c._domainkey.schanf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.s-chanf.ch CNAME → selector2-schanf-ch0c._domainkey.schanf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3789":{"name":"Sils im Engadin/Segl","canton":"Kanton Graubünden","domain":"sils-segl.ch","mx":["silssegl-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 ip4:91.205.149.219 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX silssegl-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3790":{"name":"Silvaplana","canton":"Kanton Graubünden","domain":"silvaplana.ch","mx":["silvaplana-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.mailersend.net include:spf.protection.outlook.com include:spf.engadin.cloud ip4:78.46.196.81 include:spf.sendinblue.com include:spf.mailjet.com ip4:164.90.186.134 ip4:46.140.134.176/29 a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX silvaplana-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.silvaplana.ch CNAME → selector1-silvaplana-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.silvaplana.ch CNAME → selector2-silvaplana-ch._domainkey.oegde.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3791":{"name":"Zuoz","canton":"Kanton Graubünden","domain":"zuoz.ch","mx":["zuoz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.spotwerbung.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX zuoz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3792":{"name":"Bregaglia","canton":"Kanton Graubünden","domain":"bregaglia.ch","mx":["avas-in1.exigo.ch","avas-in2.exigo.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:212.243.100.184 a:pop.conet.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3804":{"name":"Buseno","canton":"Kanton Graubünden","domain":"buseno.ch","mx":["buseno-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buseno-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3805":{"name":"Castaneda","canton":"Kanton Graubünden","domain":"castaneda.ch","mx":["castaneda-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX castaneda-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3808":{"name":"Rossa","canton":"Kanton Graubünden","domain":"rossa.ch","mx":["rossa-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rossa-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3810":{"name":"Santa Maria in Calanca","canton":"Kanton Graubünden","domain":"santamariaic.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"}]},"3821":{"name":"Lostallo","canton":"Kanton Graubünden","domain":"lostallo.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 ip4:89.207.237.84 ip4:193.93.20.0/26 include:spf.mail.hostpoint.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3822":{"name":"Mesocco","canton":"Kanton Graubünden","domain":"mesocco.swiss","mx":["mesocco-swiss.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mesocco-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3823":{"name":"Soazza","canton":"Kanton Graubünden","domain":"soazza.ch","mx":["soazza-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX soazza-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3831":{"name":"Cama","canton":"Kanton Graubünden","domain":"cama.swiss","mx":["cama-swiss.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:193.93.20.0/26 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cama-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3832":{"name":"Grono","canton":"Kanton Graubünden","domain":"grono.ch","mx":["grono-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grono-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"3834":{"name":"Roveredo (GR)","canton":"Kanton Graubünden","domain":"roveredo.ch","mx":["roveredo-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.23.174.0/27 ip4:217.26.49.128/25 ip4:217.26.63.0/24 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX roveredo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3835":{"name":"San Vittore","canton":"Kanton Graubünden","domain":"sanvittore.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"}]},"3837":{"name":"Calanca","canton":"Kanton Graubünden","domain":"comunedicalanca.ch","mx":["comunedicalanca-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.93.20.0/26 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX comunedicalanca-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3847":{"name":"Val Müstair","canton":"Kanton Graubünden","domain":"cdvm.ch","mx":["cdvm-ch.mail.eo.outlook.com"],"spf":"v=spf1 ip4:195.65.44.100 include:spf.spotwerbung.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cdvm.ch CNAME → selector1-cdvm-ch._domainkey.pemenergiach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cdvm.ch CNAME → selector2-cdvm-ch._domainkey.pemenergiach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3851":{"name":"Davos","canton":"","domain":"davos.gr.ch","mx":["mail.davos.gr.ch"],"spf":"v=spf1 a mx a:mnc-mail.smsbox.ch ip4:193.247.16.137 ip4:78.47.83.228 ip6:2a01:4f8:d0a:4329::2 include:_spf.i-web.ch include:spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3861":{"name":"Fideris","canton":"","domain":"fideris.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3862":{"name":"Furna","canton":"","domain":"furna.ch","mx":["mail.furna.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"3863":{"name":"Jenaz","canton":"","domain":"jenaz.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx ip4:195.189.148.0/24 include:spf.protection.outlook.com include:_spf.sui-inter.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3871":{"name":"Klosters","canton":"","domain":"gemeindeklosters.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"3881":{"name":"Conters im Prättigau","canton":"","domain":"conters.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:_spf.i-web.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3882":{"name":"Küblis","canton":"","domain":"kueblis.ch","mx":["avas-in1.exigo.ch","avas-in2.exigo.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mx1.rufcloud.ch a:mx2.rufcloud.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3891":{"name":"Luzein","canton":"","domain":"luzein.ch","mx":["luzein-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mail.hostpoint.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX luzein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3901":{"name":"Chur","canton":"Kanton Graubünden","domain":"chur.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx ip4:195.189.148.0/24 ip4:146.159.132.15 ip4:146.159.132.25 ip4:80.237.133.99 ip4:195.65.10.12 ip4:212.243.100.154 ip4:91.234.52.10 ip4:91.234.52.17 include:spf.abacuscity.ch include:spf.protection.outlook.com include:spf.omcomputer.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3911":{"name":"Churwalden","canton":"Kanton Graubünden","domain":"churwalden.ch","mx":["churwalden-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:109.164.250.201 ip4:217.11.36.180/30 ip4:217.151.113.161/32 a:spf.abacuscity.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX churwalden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3921":{"name":"Arosa","canton":"Kanton Graubünden","domain":"gemeindearosa.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 a mx ptr ip4:91.205.149.149 ip4:195.189.148.0/24 ip4:193.93.20.0/26 include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3945":{"name":"Trimmis","canton":"Kanton Graubünden","domain":"trimmis.ch","mx":["mail01.trimmis.ch","mail02.trimmis.ch"],"spf":"v=spf1 +mx +ip4:195.189.148.0/24 include:spf.protection.cyon.net +ip4:195.189.148.94 +ip4:195.189.148.97 include:spf.abacuscity.ch redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3946":{"name":"Untervaz","canton":"Kanton Graubünden","domain":"untervaz.ch","mx":["untervaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.eu.exclaimer.net include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX untervaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3947":{"name":"Zizers","canton":"Kanton Graubünden","domain":"zizers.ch","mx":["zizers-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zizers-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3951":{"name":"Fläsch","canton":"Kanton Graubünden","domain":"flaesch.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3952":{"name":"Jenins","canton":"Kanton Graubünden","domain":"jenins.ch","mx":["jenins-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 a:mx1.rufcloud.ch a:mx2.rufcloud.ch include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX jenins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3953":{"name":"Maienfeld","canton":"Kanton Graubünden","domain":"maienfeld.ch","mx":["avas-in1.exigo.ch","avas-in2.exigo.ch"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 a:mail.i-web.ch include:_spf.rzobt.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3954":{"name":"Malans","canton":"Kanton Graubünden","domain":"malans.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud ip4:198.2.139.11 include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3955":{"name":"Landquart","canton":"Kanton Graubünden","domain":"landquart.ch","mx":["landquart-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:mail.obt-services.ch ip4:185.27.7.120 ip4:193.93.20.0/26 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX landquart-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.landquart.ch CNAME → selector1-landquart-ch._domainkey.landquartgr.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.landquart.ch CNAME → selector2-landquart-ch._domainkey.landquartgr.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3961":{"name":"Grüsch","canton":"","domain":"gruesch.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx include:spf.customer.swiss-egov.cloud ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3962":{"name":"Schiers","canton":"","domain":"schiers.ch","mx":["schiers-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 ip4:162.23.32.11 ip4:162.23.32.12 ip4:162.23.32.13 ip4:162.23.32.14 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schiers-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3972":{"name":"Seewis im Prättigau","canton":"","domain":"seewis.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.iway.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"3981":{"name":"Breil/Brigels","canton":"Kanton Graubünden","domain":"breil.ch","mx":["breil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX breil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"3982":{"name":"Disentis/Mustér","canton":"Kanton Graubünden","domain":"disentis.ch","mx":["disentis-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ptr ip4:193.93.20.0/26 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX disentis-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"3983":{"name":"Medel (Lucmagn)","canton":"Kanton Graubünden","domain":"medel.ch","mx":["medel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX medel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3985":{"name":"Sumvitg","canton":"Kanton Graubünden","domain":"sumvitg.ch","mx":["sumvitg-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx a:mail-gateway-shared01.cyon.net ip4:194.126.4.84 ip4:80.74.128.22 include:_spf.sui-inter.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sumvitg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3986":{"name":"Tujetsch","canton":"Kanton Graubünden","domain":"tujetsch.ch","mx":["mx1.chur.ch","mx2.chur.ch"],"spf":"v=spf1 mx ip4:195.189.148.0/24 ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:146.159.132.15 ip4:146.159.132.25 ip4:80.237.133.99 ip4:195.65.10.12 ip4:212.243.100.154 ip4:91.234.52.10 ip4:91.234.52.17 ip4:193.93.20.0/26 include:spf.abacuscity.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"3987":{"name":"Trun","canton":"Kanton Graubünden","domain":"trun.ch","mx":["trun-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:80.74.128.22 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX trun-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.trun.ch CNAME → selector1-trun-ch._domainkey.gemeindetrun.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.trun.ch CNAME → selector2-trun-ch._domainkey.gemeindetrun.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"autodiscover","detail":"autodiscover SRV → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"3988":{"name":"Obersaxen Mundaun","canton":"Kanton Graubünden","domain":"obersaxenmundaun.swiss","mx":["obersaxenmundaun-swiss.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX obersaxenmundaun-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.obersaxenmundaun.swiss CNAME → selector1-obersaxenmundaun-swiss._domainkey.gvom.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.obersaxenmundaun.swiss CNAME → selector2-obersaxenmundaun-swiss._domainkey.gvom.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4001":{"name":"Aarau","canton":"Kanton Aargau","domain":"aarau.ch","mx":["aarau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:46.140.129.105 ip4:46.140.129.106 ip4:193.135.56.0/23 include:_spf.zimpel.de include:spf.abacuscity.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX aarau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.aarau.ch CNAME → selector1-aarau-ch._domainkey.aarauch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.aarau.ch CNAME → selector2-aarau-ch._domainkey.aarauch.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4002":{"name":"Biberstein","canton":"Kanton Aargau","domain":"biberstein-ag.ch","mx":["bibersteinag-ch02e.mail.eo.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4003":{"name":"Buchs (AG)","canton":"Kanton Aargau","domain":"buchs-aargau.ch","mx":["mx1.naveum.services","mx2.naveum.services"],"spf":"v=spf1 a:mail01.axc.biz a:securemail01.axc.biz a:securemail02.axc.biz a:mx1.naveum.services a:mx2.naveum.services a:srv-comet03.backslash.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"4004":{"name":"Densbüren","canton":"Kanton Aargau","domain":"densbueren.ch","mx":["densbueren-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:appriver.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX densbueren-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.densbueren.ch CNAME → selector1-densbueren-ch._domainkey.densbueren365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.densbueren.ch CNAME → selector2-densbueren-ch._domainkey.densbueren365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4005":{"name":"Erlinsbach (AG)","canton":"Kanton Aargau","domain":"erlinsbach.ch","mx":["mail.erlinsbach.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"4006":{"name":"Gränichen","canton":"Kanton Aargau","domain":"graenichen.ch","mx":["graenichen-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.graenichen.ch CNAME → selector1-graenichen-ch._domainkey.graenichench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.graenichen.ch CNAME → selector2-graenichen-ch._domainkey.graenichench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"4007":{"name":"Hirschthal","canton":"Kanton Aargau","domain":"hirschthal.ch","mx":["hirschthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.47.120.0/24 ip4:178.174.34.174 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hirschthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hirschthal.ch CNAME → selector1-hirschthal-ch._domainkey.gemeindehirschthalch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hirschthal.ch CNAME → selector2-hirschthal-ch._domainkey.gemeindehirschthalch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4008":{"name":"Küttigen","canton":"Kanton Aargau","domain":"kuettigen.ch","mx":["mail.kuettigen.ch"],"spf":"v=spf1 a mx include:spf.lanpool.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"4009":{"name":"Muhen","canton":"Kanton Aargau","domain":"muhen.ch","mx":["muhen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.netzone.ch ip4:213.221.225.126 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muhen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.muhen.ch CNAME → selector1-muhen-ch._domainkey.gemeindemuhenag.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.muhen.ch CNAME → selector2-muhen-ch._domainkey.gemeindemuhenag.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"4010":{"name":"Oberentfelden","canton":"Kanton Aargau","domain":"oberentfelden.ch","mx":["oberentfelden-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.0/24 a:mail.ostendis.ch include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberentfelden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oberentfelden.ch CNAME → selector1-oberentfelden-ch._domainkey.gemeindeoberentfeldench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oberentfelden.ch CNAME → selector2-oberentfelden-ch._domainkey.gemeindeoberentfeldench.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4012":{"name":"Suhr","canton":"Kanton Aargau","domain":"suhr.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 +a include:spf.protection.outlook.com include:fdspfeuc.freshemail.io include:sendgrid.net include:_spf_eucentral1.prod.hydra.sophos.com include:spf.netzone.ch include:spf.hausformat.net include:spf.abacuscity.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"sophos"},"4013":{"name":"Unterentfelden","canton":"Kanton Aargau","domain":"unterentfelden.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4021":{"name":"Baden","canton":"Kanton Aargau","domain":"baden.ch","mx":["baden-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:213.235.247.64/28 ip4:193.135.56.0/23 ip4:194.209.192.0/23 ip4:213.193.114.96/27 include:cmail1.com include:amazonses.com include:spf.umantis.com include:spf1.onax.ch include:spf2.onax.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX baden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:amazonses.com matches aws"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.baden.ch CNAME → selector1-baden-ch._domainkey.stadtbaden.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.baden.ch CNAME → selector2-baden-ch._domainkey.stadtbaden.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4022":{"name":"Bellikon","canton":"Kanton Aargau","domain":"bellikon.ch","mx":["bellikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:178.174.54.186 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bellikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bellikon.ch CNAME → selector1-bellikon-ch._domainkey.gemeindebellikonch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bellikon.ch CNAME → selector2-bellikon-ch._domainkey.gemeindebellikonch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4023":{"name":"Bergdietikon","canton":"Kanton Aargau","domain":"bergdietikon.ch","mx":["bergdietikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bergdietikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bergdietikon.ch CNAME → selector1-bergdietikon-ch._domainkey.gemeindebergdietikonch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bergdietikon.ch CNAME → selector2-bergdietikon-ch._domainkey.gemeindebergdietikonch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4024":{"name":"Birmenstorf (AG)","canton":"Kanton Aargau","domain":"birmenstorf.ch","mx":["birmenstorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com include:spf.lanpool.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX birmenstorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.birmenstorf.ch CNAME → selector1-birmenstorf-ch._domainkey.birmenstorf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.birmenstorf.ch CNAME → selector2-birmenstorf-ch._domainkey.birmenstorf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4026":{"name":"Ennetbaden","canton":"Kanton Aargau","domain":"ennetbaden.ch","mx":["antispam.nextron.ch"],"spf":"v=spf1 mx ip4:193.47.120.62/31 ip4:193.47.104.5 ip4:192.162.28.108 ip4:81.63.133.74 ip4:81.63.133.75 include:spf.nextron.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4027":{"name":"Fislisbach","canton":"Kanton Aargau","domain":"fislisbach.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4028":{"name":"Freienwil","canton":"Kanton Aargau","domain":"freienwil.ch","mx":["freienwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX freienwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4029":{"name":"Gebenstorf","canton":"Kanton Aargau","domain":"gebenstorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4030":{"name":"Killwangen","canton":"Kanton Aargau","domain":"killwangen.ch","mx":["killwangen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:mail.i-web.ch mx:mail.i-web.ch ip4:192.162.28.108 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX killwangen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4031":{"name":"Künten","canton":"Kanton Aargau","domain":"kuenten.ch","mx":["kuenten-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 ip4:193.135.56.0/24 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX kuenten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4032":{"name":"Mägenwil","canton":"Kanton Aargau","domain":"maegenwil.ch","mx":["maegenwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.webapps.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX maegenwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4033":{"name":"Mellingen","canton":"Kanton Aargau","domain":"mellingen.ch","mx":["cleanmail.1solution.ch"],"spf":"v=spf1 mx ip4:185.185.200.130 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"4034":{"name":"Neuenhof","canton":"Kanton Aargau","domain":"neuenhof.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 mx include:_spfmx.rizag.ch a:mist.com a:mail01.axc.biz a:mx1.naveum.services a:mx2.naveum.services include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 13030 is Swiss ISP: Init7"}]},"4035":{"name":"Niederrohrdorf","canton":"Kanton Aargau","domain":"niederrohrdorf.ch","mx":["cleanmail.1solution.ch"],"spf":"v=spf1 mx ip4:185.185.200.130 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"4037":{"name":"Oberrohrdorf","canton":"Kanton Aargau","domain":"oberrohrdorf.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4038":{"name":"Obersiggenthal","canton":"Kanton Aargau","domain":"obersiggenthal.ch","mx":["elba.iway.ch","malta.iway.ch"],"spf":"v=spf1 a include:spf.iway.ch include:spf.privasphere.com include:_spf.psm.knowbe4.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"4039":{"name":"Remetschwil","canton":"Kanton Aargau","domain":"remetschwil.ch","mx":["remetschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:146.4.17.22/30 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX remetschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.remetschwil.ch CNAME → selector1-remetschwil-ch._domainkey.remetschwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.remetschwil.ch CNAME → selector2-remetschwil-ch._domainkey.remetschwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4040":{"name":"Spreitenbach","canton":"Kanton Aargau","domain":"spreitenbach.ch","mx":["spreitenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.92.101.3/32 ip4:81.92.101.1/32 include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX spreitenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4041":{"name":"Stetten (AG)","canton":"Kanton Aargau","domain":"stetten-ag.ch","mx":["stettenag-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stettenag-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4044":{"name":"Untersiggenthal","canton":"Kanton Aargau","domain":"untersiggenthal.ch","mx":["untersiggenthal-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:_spf.ch.seppmail.cloud include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"4045":{"name":"Wettingen","canton":"Kanton Aargau","domain":"wettingen.ch","mx":["wettingen-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx a:wettingen-ch.relay.seppmail.cloud ip4:217.192.56.150 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"4046":{"name":"Wohlenschwil","canton":"Kanton Aargau","domain":"wohlenschwil.ch","mx":["wohlenschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wohlenschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wohlenschwil.ch CNAME → selector1-wohlenschwil-ch._domainkey.gemeindewohlenschwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wohlenschwil.ch CNAME → selector2-wohlenschwil-ch._domainkey.gemeindewohlenschwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4047":{"name":"Würenlingen","canton":"Kanton Aargau","domain":"wuerenlingen.ch","mx":["wuerenlingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.47.108.196 ip4:46.14.37.138 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wuerenlingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wuerenlingen.ch CNAME → selector1-wuerenlingen-ch._domainkey.gemwuer.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wuerenlingen.ch CNAME → selector2-wuerenlingen-ch._domainkey.gemwuer.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4048":{"name":"Würenlos","canton":"Kanton Aargau","domain":"wuerenlos.ch","mx":["wuerenlos-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:149.126.4.85 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wuerenlos-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wuerenlos.ch CNAME → selector1-wuerenlos-ch._domainkey.gemeindewuerenlosch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wuerenlos.ch CNAME → selector2-wuerenlos-ch._domainkey.gemeindewuerenlosch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4049":{"name":"Ehrendingen","canton":"Kanton Aargau","domain":"ehrendingen.ch","mx":["ehrendingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.22.71.80 ip4:63.35.86.4 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ehrendingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ehrendingen.ch CNAME → selector1-ehrendingen-ch._domainkey.ehrendingen365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ehrendingen.ch CNAME → selector2-ehrendingen-ch._domainkey.ehrendingen365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 16509 matches aws"}]},"4061":{"name":"Arni (AG)","canton":"Kanton Aargau","domain":"arni-ag.ch","mx":["arniag-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX arniag-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4062":{"name":"Berikon","canton":"Kanton Aargau","domain":"berikon.ch","mx":["berikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX berikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.berikon.ch CNAME → selector1-berikon-ch._domainkey.gemeindeberikonag.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.berikon.ch CNAME → selector2-berikon-ch._domainkey.gemeindeberikonag.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4063":{"name":"Bremgarten (AG)","canton":"Kanton Aargau","domain":"bremgarten.ch","mx":["bremgarten-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:83.144.243.114 include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bremgarten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bremgarten.ch CNAME → selector1-bremgarten-ch._domainkey.informatikbremgarten.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bremgarten.ch CNAME → selector2-bremgarten-ch._domainkey.informatikbremgarten.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4064":{"name":"Büttikon","canton":"Kanton Aargau","domain":"buettikon.ch","mx":["buettikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buettikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4065":{"name":"Dottikon","canton":"Kanton Aargau","domain":"dottikon.ch","mx":["dottikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:149.126.4.62 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dottikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.dottikon.ch CNAME → selector1-dottikon-ch._domainkey.vgdh.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.dottikon.ch CNAME → selector2-dottikon-ch._domainkey.vgdh.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4066":{"name":"Eggenwil","canton":"Kanton Aargau","domain":"eggenwil.ch","mx":["gateway.eggenwil.ch"],"spf":"v=spf1 mx ip4:195.64.138.0/23 ip4:46.14.246.188/30 ip4:212.25.16.23 ip4:193.135.56.0/23 a:gateway.eggenwil.ch a:mail.interdesk.ch a:idmx.interdesk.ch a:exmail.xauth.ch a:scan01.globalmx.ch a:scan02.globalmx.ch a:smtp.globalmx.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4067":{"name":"Fischbach-Göslikon","canton":"Kanton Aargau","domain":"fischbach-goeslikon.ch","mx":["fischbachgoeslikon-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:smtprelay.dialogcloud.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fischbachgoeslikon-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4068":{"name":"Hägglingen","canton":"Kanton Aargau","domain":"haegglingen.ch","mx":["haegglingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.16 ip4:89.28.153.227 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX haegglingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.haegglingen.ch CNAME → selector1-haegglingen-ch._domainkey.vgdh.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.haegglingen.ch CNAME → selector2-haegglingen-ch._domainkey.vgdh.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4071":{"name":"Jonen","canton":"Kanton Aargau","domain":"jonen.ch","mx":["jonen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.48.58.75 ip4:62.202.30.155 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX jonen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4072":{"name":"Niederwil (AG)","canton":"Kanton Aargau","domain":"niederwil.ch","mx":["niederwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX niederwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.niederwil.ch CNAME → selector1-niederwil-ch._domainkey.gemeindeniederwilag.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.niederwil.ch CNAME → selector2-niederwil-ch._domainkey.gemeindeniederwilag.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4073":{"name":"Oberlunkhofen","canton":"Kanton Aargau","domain":"oberlunkhofen.ch","mx":["oberlunkhofen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.4 ip4:193.135.56.5 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberlunkhofen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4074":{"name":"Oberwil-Lieli","canton":"Kanton Aargau","domain":"oberwil-lieli.ch","mx":["oberwillieli-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:195.48.58.75 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberwillieli-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4075":{"name":"Rudolfstetten-Friedlisberg","canton":"Kanton Aargau","domain":"rudolfstetten.ch","mx":["rudolfstetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rudolfstetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rudolfstetten.ch CNAME → selector1-rudolfstetten-ch._domainkey.rudolfstetten.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rudolfstetten.ch CNAME → selector2-rudolfstetten-ch._domainkey.rudolfstetten.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4076":{"name":"Sarmenstorf","canton":"Kanton Aargau","domain":"sarmenstorf.ch","mx":["sarmenstorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 +include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sarmenstorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.sarmenstorf.ch CNAME → selector1-sarmenstorf-ch._domainkey.sarmenstorf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.sarmenstorf.ch CNAME → selector2-sarmenstorf-ch._domainkey.sarmenstorf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4077":{"name":"Tägerig","canton":"Kanton Aargau","domain":"taegerig.ch","mx":["taegerig-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.0/24 a:mail.i-web.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX taegerig-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.taegerig.ch CNAME → selector1-taegerig-ch._domainkey.gdetaegerig.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.taegerig.ch CNAME → selector2-taegerig-ch._domainkey.gdetaegerig.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4078":{"name":"Uezwil","canton":"Kanton Aargau","domain":"uezwil.ch","mx":["uezwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX uezwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.uezwil.ch CNAME → selector1-uezwil-ch._domainkey.uezwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.uezwil.ch CNAME → selector2-uezwil-ch._domainkey.uezwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4079":{"name":"Unterlunkhofen","canton":"Kanton Aargau","domain":"unterlunkhofen.ch","mx":["unterlunkhofen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:195.48.58.76 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX unterlunkhofen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.unterlunkhofen.ch CNAME → selector1-unterlunkhofen-ch._domainkey.gemeindeunterlunkhofench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.unterlunkhofen.ch CNAME → selector2-unterlunkhofen-ch._domainkey.gemeindeunterlunkhofench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4080":{"name":"Villmergen","canton":"Kanton Aargau","domain":"villmergen.ch","mx":["villmergen-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:_spf.ch.seppmail.cloud include:_spf.i-web.ch mx:hin.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"4081":{"name":"Widen","canton":"Kanton Aargau","domain":"widen.ch","mx":["widen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.incamail.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX widen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.widen.ch CNAME → selector1-widen-ch._domainkey.widen365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.widen.ch CNAME → selector2-widen-ch._domainkey.widen365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4082":{"name":"Wohlen (AG)","canton":"Kanton Aargau","domain":"wohlen.ch","mx":["wohlen-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:_spf.i-web.ch ip4:194.209.188.212 ip4:10.4.254.50 include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"4083":{"name":"Zufikon","canton":"Kanton Aargau","domain":"zufikon.ch","mx":["zufikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:46.14.11.134 ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:80.74.128.222 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zufikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.zufikon.ch CNAME → selector1-zufikon-ch._domainkey.gemeindezufikon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.zufikon.ch CNAME → selector2-zufikon-ch._domainkey.gemeindezufikon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4084":{"name":"Islisberg","canton":"Kanton Aargau","domain":"islisberg.ch","mx":["islisberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.0/24 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX islisberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.islisberg.ch CNAME → selector1-islisberg-ch._domainkey.gemeindeislisbergch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.islisberg.ch CNAME → selector2-islisberg-ch._domainkey.gemeindeislisbergch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4091":{"name":"Auenstein","canton":"Kanton Aargau","domain":"auenstein.ch","mx":["auenstein-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX auenstein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.auenstein.ch CNAME → selector1-auenstein-ch._domainkey.auenstein.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.auenstein.ch CNAME → selector2-auenstein-ch._domainkey.auenstein.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4092":{"name":"Birr","canton":"Kanton Aargau","domain":"birr.ch","mx":["cleanmail.1solution.ch"],"spf":"v=spf1 mx a:relay.dtp.ch ip4:193.135.56.6 ip4:80.254.185.101 ip4:52.157.149.216 ip4:20.52.138.252 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}]},"4093":{"name":"Birrhard","canton":"Kanton Aargau","domain":"birrhard.ch","mx":["birrhard-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX birrhard-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4095":{"name":"Brugg","canton":"Kanton Aargau","domain":"brugg.ch","mx":["brugg-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.brugg.ch CNAME → selector1-brugg-ch._domainkey.bruggch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.brugg.ch CNAME → selector2-brugg-ch._domainkey.bruggch.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"4099":{"name":"Habsburg","canton":"Kanton Aargau","domain":"habsburg.ch","mx":["habsburg-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:193.135.56.6 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX habsburg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4100":{"name":"Hausen (AG)","canton":"Kanton Aargau","domain":"hausen.swiss","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4104":{"name":"Lupfig","canton":"Kanton Aargau","domain":"lupfig.ch","mx":["lupfig-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lupfig-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.lupfig.ch CNAME → selector1-lupfig-ch._domainkey.gemeindelupfigch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.lupfig.ch CNAME → selector2-lupfig-ch._domainkey.gemeindelupfigch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4105":{"name":"Mandach","canton":"Kanton Aargau","domain":"mandach.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"dkim","detail":"DKIM selector1._domainkey.mandach.ch CNAME → selector1-mandach-ch._domainkey.gemeindemandachch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.mandach.ch CNAME → selector2-mandach-ch._domainkey.gemeindemandachch.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4106":{"name":"Mönthal","canton":"Kanton Aargau","domain":"moenthal.ch","mx":["moenthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:193.47.104.5 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX moenthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.moenthal.ch CNAME → selector1-moenthal-ch._domainkey.gemeindemoenthalch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.moenthal.ch CNAME → selector2-moenthal-ch._domainkey.gemeindemoenthalch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4107":{"name":"Mülligen","canton":"Kanton Aargau","domain":"muelligen.ch","mx":["muelligen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 ip4:193.135.58.22 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muelligen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.muelligen.ch CNAME → selector1-muelligen-ch._domainkey.muelligen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.muelligen.ch CNAME → selector2-muelligen-ch._domainkey.muelligen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4110":{"name":"Remigen","canton":"Kanton Aargau","domain":"remigen.ch","mx":["remigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a a:remigen.ch include:spf.protection.outlook.com include:_spf.rzobt.ch include:spf.escapenet.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX remigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4111":{"name":"Riniken","canton":"Kanton Aargau","domain":"riniken.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4112":{"name":"Rüfenach","canton":"Kanton Aargau","domain":"ruefenach.ch","mx":["ruefenach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ruefenach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4117":{"name":"Thalheim (AG)","canton":"Kanton Aargau","domain":"gemeinde-thalheim.ch","mx":["gemeindethalheim-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindethalheim-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4120":{"name":"Veltheim (AG)","canton":"Kanton Aargau","domain":"veltheim.ch","mx":["veltheim-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX veltheim-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.veltheim.ch CNAME → selector1-veltheim-ch._domainkey.gemeindeveltheimch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.veltheim.ch CNAME → selector2-veltheim-ch._domainkey.gemeindeveltheimch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4121":{"name":"Villigen","canton":"Kanton Aargau","domain":"villigen.ch","mx":["villigen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com include:_spf.sui-inter.net include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX villigen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4123":{"name":"Windisch","canton":"Kanton Aargau","domain":"windisch.ch","mx":["windisch-ch.gate.seppmail.cloud"],"spf":"v=spf1 include:_spf.ch.seppmail.cloud ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"dkim","detail":"DKIM selector1._domainkey.windisch.ch CNAME → selector1-windisch-ch._domainkey.windischch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.windisch.ch CNAME → selector2-windisch-ch._domainkey.windischch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"seppmail"},"4124":{"name":"Bözberg","canton":"Kanton Aargau","domain":"boezberg.ch","mx":["boezberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:213.193.96.234 ip4:193.47.120.62 ip4:193.47.120.63 include:_spf.sui-inter.net include:spf.protection.outlook.com include:_spf.rzobt.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boezberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.boezberg.ch CNAME → selector1-boezberg-ch._domainkey.boezberg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.boezberg.ch CNAME → selector2-boezberg-ch._domainkey.boezberg.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4125":{"name":"Schinznach","canton":"Kanton Aargau","domain":"schinznach.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4131":{"name":"Beinwil am See","canton":"Kanton Aargau","domain":"beinwilamsee.ch","mx":["beinwilamsee-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX beinwilamsee-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.beinwilamsee.ch CNAME → selector1-beinwilamsee-ch._domainkey.beinwilamsee365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.beinwilamsee.ch CNAME → selector2-beinwilamsee-ch._domainkey.beinwilamsee365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4132":{"name":"Birrwil","canton":"Kanton Aargau","domain":"birrwil.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4134":{"name":"Dürrenäsch","canton":"Kanton Aargau","domain":"duerrenaesch.ch","mx":["duerrenaesch-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX duerrenaesch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4135":{"name":"Gontenschwil","canton":"Kanton Aargau","domain":"gontenschwil.ch","mx":["gontenschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.104.34.104 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gontenschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gontenschwil.ch CNAME → selector1-gontenschwil-ch._domainkey.gontenschwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gontenschwil.ch CNAME → selector2-gontenschwil-ch._domainkey.gontenschwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4136":{"name":"Holziken","canton":"Kanton Aargau","domain":"holziken.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx ip4:195.48.58.75 ip4:193.47.120.0/24 include:rzmail.hi-ag.ch include:egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4137":{"name":"Leimbach (AG)","canton":"Kanton Aargau","domain":"leimbach.swiss","mx":["leimbach-swiss.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:195.48.58.75 include:spf1.egeko.ch include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leimbach-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4138":{"name":"Leutwil","canton":"Kanton Aargau","domain":"leutwil.ch","mx":["leutwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX leutwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4139":{"name":"Menziken","canton":"Kanton Aargau","domain":"menziken.ch","mx":["menziken-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:securemail.menziken.ch include:spf.protection.outlook.com include:_spf-saas.rubicon.eu -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX menziken-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 8075 matches ms365"}]},"4140":{"name":"Oberkulm","canton":"Kanton Aargau","domain":"oberkulm.ch","mx":["oberkulm-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberkulm-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4141":{"name":"Reinach (AG)","canton":"Kanton Aargau","domain":"reinach.ch","mx":["reinach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.0/24 ip4:193.47.108.196 ip4:83.173.248.210 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX reinach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.reinach.ch CNAME → selector1-reinach-ch._domainkey.reinach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.reinach.ch CNAME → selector2-reinach-ch._domainkey.reinach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4142":{"name":"Schlossrued","canton":"Kanton Aargau","domain":"schlossrued.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:spf1.egeko.ch include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4143":{"name":"Schmiedrued","canton":"Kanton Aargau","domain":"schmiedrued-walde.ch","mx":["schmiedruedwalde-ch02i.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:195.48.58.75 ip4:193.47.120.0/24 ip4:80.74.146.136 include:rzmail.hi-ag.ch v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schmiedruedwalde-ch02i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4144":{"name":"Schöftland","canton":"Kanton Aargau","domain":"schoeftland.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4145":{"name":"Teufenthal (AG)","canton":"Kanton Aargau","domain":"teufenthal.ch","mx":["teufenthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com include:mail.rubicon.eu -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX teufenthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.teufenthal.ch CNAME → selector1-teufenthal-ch._domainkey.gemeindeteufenthal.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.teufenthal.ch CNAME → selector2-teufenthal-ch._domainkey.gemeindeteufenthal.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4146":{"name":"Unterkulm","canton":"Kanton Aargau","domain":"unterkulm.ch","mx":["unterkulm-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:81.62.141.146 include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":77.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"4147":{"name":"Zetzwil","canton":"Kanton Aargau","domain":"zetzwil.ch","mx":["zetzwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:84.75.1.7 ip4:193.135.56.6 include:_spf-saas.rubicon.eu -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zetzwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.zetzwil.ch CNAME → selector1-zetzwil-ch._domainkey.zetzwil.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.zetzwil.ch CNAME → selector2-zetzwil-ch._domainkey.zetzwil.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4161":{"name":"Eiken","canton":"Kanton Aargau","domain":"eiken.ch","mx":["eiken-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eiken-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.eiken.ch CNAME → selector1-eiken-ch._domainkey.eikench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.eiken.ch CNAME → selector2-eiken-ch._domainkey.eikench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4163":{"name":"Frick","canton":"Kanton Aargau","domain":"frick.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4164":{"name":"Gansingen","canton":"Kanton Aargau","domain":"gansingen.ch","mx":["gansingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.90.195.154 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gansingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gansingen.ch CNAME → selector1-gansingen-ch._domainkey.gemeindegansingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gansingen.ch CNAME → selector2-gansingen-ch._domainkey.gemeindegansingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4165":{"name":"Gipf-Oberfrick","canton":"Kanton Aargau","domain":"gipf-oberfrick.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:81.62.142.155 -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4169":{"name":"Kaisten","canton":"Kanton Aargau","domain":"kaisten.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4170":{"name":"Laufenburg","canton":"Kanton Aargau","domain":"laufenburg.ch","mx":["laufenburg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX laufenburg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.laufenburg.ch CNAME → selector1-laufenburg-ch._domainkey.laufenburgcloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.laufenburg.ch CNAME → selector2-laufenburg-ch._domainkey.laufenburgcloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"autodiscover","detail":"autodiscover SRV → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4172":{"name":"Münchwilen (AG)","canton":"Kanton Aargau","domain":"muenchwilen-ag.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf1.egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4173":{"name":"Oberhof","canton":"Kanton Aargau","domain":"oberhof.ch","mx":["oberhof-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberhof-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4175":{"name":"Oeschgen","canton":"Kanton Aargau","domain":"oeschgen.ch","mx":["oeschgen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oeschgen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oeschgen.ch CNAME → selector1-oeschgen-ch._domainkey.gemeindeoeschgench.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oeschgen.ch CNAME → selector2-oeschgen-ch._domainkey.gemeindeoeschgench.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4176":{"name":"Schwaderloch","canton":"Kanton Aargau","domain":"schwaderloch.ch","mx":["schwaderloch-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schwaderloch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4177":{"name":"Sisseln","canton":"Kanton Aargau","domain":"sisseln.ch","mx":["sisseln-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sisseln-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.sisseln.ch CNAME → selector1-sisseln-ch._domainkey.sisseln.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.sisseln.ch CNAME → selector2-sisseln-ch._domainkey.sisseln.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4181":{"name":"Wittnau","canton":"Kanton Aargau","domain":"wittnau.ch","mx":["wittnau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 ip4:146.4.71.186 include:rzmail.hi-ag.ch include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wittnau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4182":{"name":"Wölflinswil","canton":"Kanton Aargau","domain":"woelflinswil.ch","mx":["woelflinswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX woelflinswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.woelflinswil.ch CNAME → selector1-woelflinswil-ch._domainkey.gemeindewoelflinswilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.woelflinswil.ch CNAME → selector2-woelflinswil-ch._domainkey.gemeindewoelflinswilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4183":{"name":"Zeihen","canton":"Kanton Aargau","domain":"zeihen.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:_spf.talus.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4184":{"name":"Mettauertal","canton":"Kanton Aargau","domain":"mettauertal.ch","mx":["mettauertal-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:sui-inter.net ip4:46.140.27.106 include:_spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mettauertal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.mettauertal.ch CNAME → selector1-mettauertal-ch._domainkey.gemeindemettauertalch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.mettauertal.ch CNAME → selector2-mettauertal-ch._domainkey.gemeindemettauertalch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4185":{"name":"Böztal","canton":"Kanton Aargau","domain":"boeztal.ch","mx":["boeztal-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:80.74.144.28 ip4:81.62.247.42 ip4:83.173.200.124 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boeztal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.boeztal.ch CNAME → selector1-boeztal-ch._domainkey.boeztal.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.boeztal.ch CNAME → selector2-boeztal-ch._domainkey.boeztal.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4186":{"name":"Herznach-Ueken","canton":"Kanton Aargau","domain":"herznach-ueken.ch","mx":["herznachueken-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.47.120.62 ip4:193.47.120.63 ip4:195.48.58.75 include:spf.protection.outlook.com include:egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX herznachueken-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4191":{"name":"Ammerswil","canton":"Kanton Aargau","domain":"ammerswil.ch","mx":["ammerswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:91.118.154.96 ip4:62.99.130.28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ammerswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ammerswil.ch CNAME → selector1-ammerswil-ch._domainkey.seengen365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ammerswil.ch CNAME → selector2-ammerswil-ch._domainkey.seengen365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4192":{"name":"Boniswil","canton":"Kanton Aargau","domain":"boniswil.ch","mx":["boniswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boniswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.boniswil.ch CNAME → selector1-boniswil-ch._domainkey.boniswil365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.boniswil.ch CNAME → selector2-boniswil-ch._domainkey.boniswil365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4193":{"name":"Brunegg","canton":"Kanton Aargau","domain":"brunegg.ch","mx":["brunegg-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brunegg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4194":{"name":"Dintikon","canton":"Kanton Aargau","domain":"dintikon.ch","mx":["dintikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dintikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4195":{"name":"Egliswil","canton":"Kanton Aargau","domain":"egliswil.ch","mx":["egliswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.58.35 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX egliswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.egliswil.ch CNAME → selector1-egliswil-ch._domainkey.seengen365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.egliswil.ch CNAME → selector2-egliswil-ch._domainkey.seengen365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4196":{"name":"Fahrwangen","canton":"Kanton Aargau","domain":"fahrwangen.ch","mx":["fahrwangen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.47.104.5 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fahrwangen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.fahrwangen.ch CNAME → selector1-fahrwangen-ch._domainkey.fahrwangen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.fahrwangen.ch CNAME → selector2-fahrwangen-ch._domainkey.fahrwangen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4197":{"name":"Hallwil","canton":"Kanton Aargau","domain":"hallwil.ch","mx":["hallwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hallwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hallwil.ch CNAME → selector1-hallwil-ch._domainkey.gemeindehallwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hallwil.ch CNAME → selector2-hallwil-ch._domainkey.gemeindehallwilch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4198":{"name":"Hendschiken","canton":"Kanton Aargau","domain":"hendschiken.ch","mx":["hendschiken-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.62.190.74 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hendschiken-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4199":{"name":"Holderbank (AG)","canton":"Kanton Aargau","domain":"holderbank.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 mx include:_spf.holderbank.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4200":{"name":"Hunzenschwil","canton":"Kanton Aargau","domain":"hunzenschwil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4201":{"name":"Lenzburg","canton":"Kanton Aargau","domain":"lenzburg.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx a:mail1.mysign.ch include:_spf.abxsec.com include:spf.protection.outlook.com include:mx.dvbern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"abxsec"},"4202":{"name":"Meisterschwanden","canton":"Kanton Aargau","domain":"meisterschwanden.ch","mx":["meisterschwanden-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX meisterschwanden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4203":{"name":"Möriken-Wildegg","canton":"Kanton Aargau","domain":"moeriken-wildegg.ch","mx":["moerikenwildegg-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 ip4:194.56.218.181 include:spf.protection.outlook.com include:spf.talus.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX moerikenwildegg-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.moeriken-wildegg.ch CNAME → selector1-moerikenwildegg-ch02b._domainkey.moerikenwildeggch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.moeriken-wildegg.ch CNAME → selector2-moerikenwildegg-ch02b._domainkey.moerikenwildeggch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4204":{"name":"Niederlenz","canton":"Kanton Aargau","domain":"niederlenz.ch","mx":["niederlenz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX niederlenz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.niederlenz.ch CNAME → selector1-niederlenz-ch._domainkey.niederlenz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.niederlenz.ch CNAME → selector2-niederlenz-ch._domainkey.niederlenz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4205":{"name":"Othmarsingen","canton":"Kanton Aargau","domain":"othmarsingen.ch","mx":["othmarsingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.0/24 ip4:193.47.104.5 include:spf.abacuscity.ch include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX othmarsingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.othmarsingen.ch CNAME → selector1-othmarsingen-ch._domainkey.gemeindeothmarsingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.othmarsingen.ch CNAME → selector2-othmarsingen-ch._domainkey.gemeindeothmarsingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4206":{"name":"Rupperswil","canton":"Kanton Aargau","domain":"rupperswil.ch","mx":["mailrelay01.ascanius.ch"],"spf":"v=spf1 mx a include:_spf.i-web.ch a:mailrelay01.ascanius.ch a:mail.rupperswil.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"4207":{"name":"Schafisheim","canton":"Kanton Aargau","domain":"schafisheim.ch","mx":["schafisheim-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.65.10.12 ip4:195.65.10.15 ip4:193.47.120.0/24 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schafisheim-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.schafisheim.ch CNAME → selector1-schafisheim-ch._domainkey.schafisheim.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.schafisheim.ch CNAME → selector2-schafisheim-ch._domainkey.schafisheim.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4208":{"name":"Seengen","canton":"Kanton Aargau","domain":"seengen.ch","mx":["seengen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX seengen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.seengen.ch CNAME → selector1-seengen-ch._domainkey.seengen365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.seengen.ch CNAME → selector2-seengen-ch._domainkey.seengen365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4209":{"name":"Seon","canton":"Kanton Aargau","domain":"seon.ch","mx":["seon-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx ip4:83.173.217.10 ip4:193.47.120.62 ip4:193.47.120.63 include:spf.protection.outlook.com include:_spf.ch.seppmail.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"seppmail"},"4210":{"name":"Staufen","canton":"Kanton Aargau","domain":"staufen.ch","mx":["srv32.hli.ch","srv35.hli.ch"],"spf":"v=spf1 a mx ip4:81.62.225.254 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4221":{"name":"Abtwil","canton":"Kanton Aargau","domain":"abtwilag.ch","mx":["abtwilag-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX abtwilag-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.abtwilag.ch CNAME → selector1-abtwilag-ch._domainkey.gemeindeabtwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.abtwilag.ch CNAME → selector2-abtwilag-ch._domainkey.gemeindeabtwilch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4222":{"name":"Aristau","canton":"Kanton Aargau","domain":"aristau.ch","mx":["aristau-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:webcms.ruf.ch ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX aristau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4223":{"name":"Auw","canton":"Kanton Aargau","domain":"auw.ch","mx":["auw-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX auw-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4224":{"name":"Beinwil (Freiamt)","canton":"Kanton Aargau","domain":"beinwil.ch","mx":["beinwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX beinwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4226":{"name":"Besenbüren","canton":"Kanton Aargau","domain":"besenbueren.ch","mx":["besenbueren-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:rzmail.hi-ag.ch +include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX besenbueren-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.besenbueren.ch CNAME → selector1-besenbueren-ch._domainkey.gemeindebesenbueren.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.besenbueren.ch CNAME → selector2-besenbueren-ch._domainkey.gemeindebesenbueren.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4227":{"name":"Bettwil","canton":"Kanton Aargau","domain":"bettwil.ch","mx":["bettwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.0/24 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bettwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4228":{"name":"Boswil","canton":"Kanton Aargau","domain":"boswil.ch","mx":["boswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.boswil.ch CNAME → selector1-boswil-ch._domainkey.gemeindeboswilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.boswil.ch CNAME → selector2-boswil-ch._domainkey.gemeindeboswilch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4229":{"name":"Bünzen","canton":"Kanton Aargau","domain":"buenzen.ch","mx":["buenzen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.47.104.5 ip4:195.48.58.75 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buenzen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4230":{"name":"Buttwil","canton":"Kanton Aargau","domain":"buttwil.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4231":{"name":"Dietwil","canton":"Kanton Aargau","domain":"dietwil.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4232":{"name":"Geltwil","canton":"Kanton Aargau","domain":"geltwil.ch","mx":["geltwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX geltwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4233":{"name":"Kallern","canton":"Kanton Aargau","domain":"kallern.ch","mx":["kallern-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 ip4:146.4.3.166 include:rzmail.hi-ag.ch include:spf.protection.outlook.com a:spf.hostfactory.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kallern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kallern.ch CNAME → selector1-kallern-ch._domainkey.kallern365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kallern.ch CNAME → selector2-kallern-ch._domainkey.kallern365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 29691 is Swiss ISP: Hostpoint / Green.ch"}]},"4234":{"name":"Merenschwand","canton":"Kanton Aargau","domain":"merenschwand.ch","mx":["merenschwand-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:webcms.ruf.ch ip4:193.135.56.6 ip4:84.253.8.36 include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX merenschwand-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4235":{"name":"Mühlau","canton":"Kanton Aargau","domain":"muehlau.ch","mx":["muehlau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf1.egeko.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muehlau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4236":{"name":"Muri (AG)","canton":"Kanton Aargau","domain":"muri.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch include:spf.mail.digitalparking.ch include:_spf.psm.knowbe4.com include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4237":{"name":"Oberrüti","canton":"Kanton Aargau","domain":"oberrueti.ch","mx":["oberrueti-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com mx ip4:195.48.58.75 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oberrueti-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oberrueti.ch CNAME → selector1-oberrueti-ch._domainkey.oberruetich.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oberrueti.ch CNAME → selector2-oberrueti-ch._domainkey.oberruetich.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4238":{"name":"Rottenschwil","canton":"Kanton Aargau","domain":"rottenschwil.ch","mx":["rottenschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.48.58.75 include:servers.mcsv.net include:relay.mailchannels.net include:rzmail.hi-ag.ch include:spf1.egeko.ch include:spf.protection.outlook.com include:swisscrow.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rottenschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rottenschwil.ch CNAME → selector1-rottenschwil-ch._domainkey.gemeinderottenschwilch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rottenschwil.ch CNAME → selector2-rottenschwil-ch._domainkey.gemeinderottenschwilch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4239":{"name":"Sins","canton":"Kanton Aargau","domain":"sins.ch","mx":["sins-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.0/24 include:spf.protection.outlook.com include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4240":{"name":"Waltenschwil","canton":"Kanton Aargau","domain":"waltenschwil.ch","mx":["waltenschwil-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.243.197.0/24 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX waltenschwil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.waltenschwil.ch CNAME → selector1-waltenschwil-ch._domainkey.waltenschwil365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.waltenschwil.ch CNAME → selector2-waltenschwil-ch._domainkey.waltenschwil365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4251":{"name":"Hellikon","canton":"Kanton Aargau","domain":"hellikon.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a:delta.magicsystems.ch ip4:195.48.58.75 include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4252":{"name":"Kaiseraugst","canton":"Kanton Aargau","domain":"kaiseraugst.ch","mx":["feedback-smtp.eu-cenral-1.amazonses.com","kaiseraugst-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.47.104.5 ip4:193.47.108.198 include:spf.protection.outlook.com include:amazonses.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX kaiseraugst-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:amazonses.com matches aws"},{"kind":"dkim","detail":"DKIM selector1._domainkey.kaiseraugst.ch CNAME → selector1-kaiseraugst-ch._domainkey.kagst.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.kaiseraugst.ch CNAME → selector2-kaiseraugst-ch._domainkey.kagst.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4253":{"name":"Magden","canton":"Kanton Aargau","domain":"magden.ch","mx":["magden-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 a:mail.obt-services.ch ip4:193.47.104.5 include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX magden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.magden.ch CNAME → selector1-magden-ch._domainkey.magdencloud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.magden.ch CNAME → selector2-magden-ch._domainkey.magdencloud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4254":{"name":"Möhlin","canton":"Kanton Aargau","domain":"moehlin.ch","mx":["moehlin-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"4255":{"name":"Mumpf","canton":"Kanton Aargau","domain":"mumpf.ch","mx":["mumpf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mumpf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4256":{"name":"Obermumpf","canton":"Kanton Aargau","domain":"obermumpf.ch","mx":["obermumpf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:exchange-spf.netzone.ch ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX obermumpf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4257":{"name":"Olsberg","canton":"Kanton Aargau","domain":"olsberg.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4258":{"name":"Rheinfelden","canton":"Kanton Aargau","domain":"rheinfelden.ch","mx":["rheinfelden-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx include:_spf.i-web.ch include:_spf.talus.ch include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com include:spf.protect.kvnbw.de include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"seppmail"},"4259":{"name":"Schupfart","canton":"Kanton Aargau","domain":"schupfart.ch","mx":["schupfart-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:193.47.120.64 ip4:193.47.120.65 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX schupfart-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4260":{"name":"Stein (AG)","canton":"Kanton Aargau","domain":"gemeinde-stein.ch","mx":["gemeindestein-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindestein-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gemeinde-stein.ch CNAME → selector1-gemeindestein-ch02b._domainkey.gemeindesteinagch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gemeinde-stein.ch CNAME → selector2-gemeindestein-ch02b._domainkey.gemeindesteinagch.onmicrosoft.com"},{"kind":"dmarc","detail":"DMARC record matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"4261":{"name":"Wallbach","canton":"Kanton Aargau","domain":"wallbach.ch","mx":["wallbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX wallbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.wallbach.ch CNAME → selector1-wallbach-ch._domainkey.gemeindewallbach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.wallbach.ch CNAME → selector2-wallbach-ch._domainkey.gemeindewallbach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4262":{"name":"Wegenstetten","canton":"Kanton Aargau","domain":"wegenstetten.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4263":{"name":"Zeiningen","canton":"Kanton Aargau","domain":"zeiningen.ch","mx":["zeiningen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:spf.mail.hostpoint.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zeiningen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4264":{"name":"Zuzgen","canton":"Kanton Aargau","domain":"zuzgen.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:195.48.58.75 include:rzmail.hi-ag.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4271":{"name":"Aarburg","canton":"Kanton Aargau","domain":"aarburg.ch","mx":["aarburg-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.abacuscity.ch include:_spf.i-web.ch ip4:193.5.117.74 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX aarburg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4273":{"name":"Bottenwil","canton":"Kanton Aargau","domain":"bottenwil.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 mx a ip4:193.47.120.0/24 ip4:193.135.56.6 include:rzmail.hi-ag.ch include:spf1.egeko.ch -all","provider":"aws","category":"us-cloud","classification_confidence":84.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4274":{"name":"Brittnau","canton":"Kanton Aargau","domain":"brittnau.ch","mx":["brittnau1.cleanmail.ch","brittnau2.cleanmail.ch"],"spf":"v=spf1 mx include:_cmspf.cleanmail.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"cleanmail"},"4275":{"name":"Kirchleerau","canton":"Kanton Aargau","domain":"kirchleerau.ch","mx":["kirchleerau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX kirchleerau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4276":{"name":"Kölliken","canton":"Kanton Aargau","domain":"koelliken.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 include:_spf.talus.ch ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4277":{"name":"Moosleerau","canton":"Kanton Aargau","domain":"moosleerau.ch","mx":["moosleerau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.193.80.0/27 ip4:91.118.154.96 ip4:62.99.130.28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX moosleerau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4279":{"name":"Murgenthal","canton":"Kanton Aargau","domain":"murgenthal.ch","mx":["murgenthal-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.135.56.6 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX murgenthal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.murgenthal.ch CNAME → selector1-murgenthal-ch._domainkey.murgenthal.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.murgenthal.ch CNAME → selector2-murgenthal-ch._domainkey.murgenthal.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4280":{"name":"Oftringen","canton":"Kanton Aargau","domain":"oftringen.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:193.47.120.62 ip4:193.47.120.63 ip4:193.47.104.5 ip4:213.193.80.0/27 include:spf.protection.outlook.com include:_spf.abxsec.com include:_spf.ch.seppmail.cloud ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"abxsec"},"4281":{"name":"Reitnau","canton":"Kanton Aargau","domain":"reitnau.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:spf.abacuscity.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4282":{"name":"Rothrist","canton":"Kanton Aargau","domain":"rothrist.ch","mx":["rothrist-ch.gate.seppmail.cloud"],"spf":"v=spf1 mx a:relay.mailchannels.net ip4:193.47.120.0/24 ip4:46.232.183.86 ip4:178.174.91.83 include:relay.mailchannels.net include:_spf.sui-inter.net include:_spf.ch.seppmail.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rothrist.ch CNAME → selector1-rothrist-ch._domainkey.rothristch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rothrist.ch CNAME → selector2-rothrist-ch._domainkey.rothristch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"seppmail"},"4283":{"name":"Safenwil","canton":"Kanton Aargau","domain":"safenwil.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4284":{"name":"Staffelbach","canton":"Kanton Aargau","domain":"staffelbach.ch","mx":["staffelbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.47.120.0/24 include:spf.hli.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX staffelbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4285":{"name":"Strengelbach","canton":"Kanton Aargau","domain":"strengelbach.ch","mx":["mail.format-ag.ch","mail.tankred.ch","mailbackup.format-ag.ch","mailbackup.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4286":{"name":"Uerkheim","canton":"Kanton Aargau","domain":"uerkheim.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4287":{"name":"Vordemwald","canton":"Kanton Aargau","domain":"vordemwald.ch","mx":["mail.format-ag.ch","mail.tankred.ch"],"spf":"v=spf1 a include:_spf.talus.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4288":{"name":"Wiliberg","canton":"Kanton Aargau","domain":"wiliberg.ch","mx":["wiliberg-ch.gate.seppmail.cloud"],"spf":"v=spf1 ip4:193.135.56.0/24 include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"}],"gateway":"seppmail"},"4289":{"name":"Zofingen","canton":"Kanton Aargau","domain":"zofingen.ch","mx":["zofingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com ip4:193.47.120.0/24 ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zofingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.zofingen.ch CNAME → selector1-zofingen-ch._domainkey.stadtzofingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.zofingen.ch CNAME → selector2-zofingen-ch._domainkey.stadtzofingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4303":{"name":"Böttstein","canton":"Kanton Aargau","domain":"boettstein.ch","mx":["boettstein-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX boettstein-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4304":{"name":"Döttingen","canton":"Kanton Aargau","domain":"doettingen.ch","mx":["doettingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net include:spf.abacuscity.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX doettingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4305":{"name":"Endingen","canton":"Kanton Aargau","domain":"endingen.ch","mx":["endingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX endingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.endingen.ch CNAME → selector1-endingen-ch._domainkey.gemendingen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.endingen.ch CNAME → selector2-endingen-ch._domainkey.gemendingen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4306":{"name":"Fisibach","canton":"Kanton Aargau","domain":"fisibach.ch","mx":["inbound-smtp.eu-west-1.amazonaws.com"],"spf":"v=spf1 a mx ip4:195.48.58.75 include:rzmail.hi-ag.ch include:_spf.i-web.ch -all","provider":"aws","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"mx","detail":"MX inbound-smtp.eu-west-1.amazonaws.com matches aws"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"}]},"4307":{"name":"Full-Reuenthal","canton":"Kanton Aargau","domain":"full-reuenthal.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4309":{"name":"Klingnau","canton":"Kanton Aargau","domain":"klingnau.ch","mx":["klingnau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com ip4:195.48.58.75 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX klingnau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4310":{"name":"Koblenz","canton":"Kanton Aargau","domain":"koblenz.ch","mx":["koblenz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX koblenz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4311":{"name":"Leibstadt","canton":"Kanton Aargau","domain":"leibstadt.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4312":{"name":"Lengnau (AG)","canton":"Kanton Aargau","domain":"lengnau-ag.ch","mx":["lengnauag-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lengnauag-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4313":{"name":"Leuggern","canton":"Kanton Aargau","domain":"leuggern.ch","mx":["leuggern-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leuggern-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.leuggern.ch CNAME → selector1-leuggern-ch._domainkey.leuggern.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.leuggern.ch CNAME → selector2-leuggern-ch._domainkey.leuggern.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4314":{"name":"Mellikon","canton":"Kanton Aargau","domain":"mellikon.ch","mx":["mellikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mellikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4318":{"name":"Schneisingen","canton":"Kanton Aargau","domain":"schneisingen.ch","mx":["schneisingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:mail.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX schneisingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4319":{"name":"Siglistorf","canton":"Kanton Aargau","domain":"siglistorf.ch","mx":["siglistorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX siglistorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4320":{"name":"Tegerfelden","canton":"Kanton Aargau","domain":"tegerfelden.ch","mx":["tegerfelden-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tegerfelden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"4324":{"name":"Zurzach","canton":"Kanton Aargau","domain":"zurzach.ch","mx":["zurzach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zurzach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4401":{"name":"Arbon","canton":"Kanton Thurgau","domain":"arbon.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 include:spf.abxsec.com include:_spf.sui-inter.net +mx +a ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4406":{"name":"Dozwil","canton":"Kanton Thurgau","domain":"dozwil.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:cs5.chrisign.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4411":{"name":"Egnach","canton":"Kanton Thurgau","domain":"egnach.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4416":{"name":"Hefenhofen","canton":"Kanton Thurgau","domain":"hefenhofen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4421":{"name":"Horn","canton":"Kanton Thurgau","domain":"horn.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:194.209.60.21 ip4:194.209.60.7 include:spf1.egeko.ch include:_spf.i-web.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4426":{"name":"Kesswil","canton":"Kanton Thurgau","domain":"kesswil.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.abxsec.com include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"4431":{"name":"Roggwil (TG)","canton":"Kanton Thurgau","domain":"roggwil-tg.ch","mx":["mx01.sui-inter.net","mx02.sui-inter.net","mx03.sui-inter.net"],"spf":"v=spf1 include:tg.ch include:_spf.sui-inter.net +mx +a ip4:213.193.123.194 ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4436":{"name":"Romanshorn","canton":"Kanton Thurgau","domain":"romanshorn.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4441":{"name":"Salmsach","canton":"Kanton Thurgau","domain":"salmsach.ch","mx":["salmsach-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:tg.ch include:_spf.i-web.ch ip4:89.186.196.202 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX salmsach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.salmsach.ch CNAME → selector1-salmsach-ch._domainkey.salmsach.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.salmsach.ch CNAME → selector2-salmsach-ch._domainkey.salmsach.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4446":{"name":"Sommeri","canton":"Kanton Thurgau","domain":"sommeri.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4451":{"name":"Uttwil","canton":"Kanton Thurgau","domain":"uttwil.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4461":{"name":"Amriswil","canton":"Kanton Thurgau","domain":"amriswil.ch","mx":["amriswil-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx mx:hin.ch ip4:193.25.102.54 include:_spf.i-web.ch include:spf.protection.outlook.com include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX amriswil-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.amriswil.ch CNAME → selector1-amriswil-ch._domainkey.amriswiltg.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.amriswil.ch CNAME → selector2-amriswil-ch._domainkey.amriswiltg.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"4471":{"name":"Bischofszell","canton":"Kanton Thurgau","domain":"bischofszell.ch","mx":["bischofszell-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.25.102.170 include:spf.protection.outlook.com include:_spf.i-web.ch include:tg.ch include:_spf.psm.knowbe4.com include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bischofszell-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bischofszell.ch CNAME → selector1-bischofszell-ch._domainkey.bischofszell.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bischofszell.ch CNAME → selector2-bischofszell-ch._domainkey.bischofszell.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"4476":{"name":"Erlen","canton":"Kanton Thurgau","domain":"erlen.ch","mx":["erlen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:89.186.196.82/29 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX erlen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4486":{"name":"Hauptwil-Gottshaus","canton":"Kanton Thurgau","domain":"hauptwil-gottshaus.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":62.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4495":{"name":"Hohentannen","canton":"Kanton Thurgau","domain":"hohentannen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 include:_spf.sui-inter.net +mx +a ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4501":{"name":"Kradolf-Schönenberg","canton":"Kanton Thurgau","domain":"pgks.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 a mx include:_spf.abxsec.com include:spf.onlime.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"4506":{"name":"Sulgen","canton":"Kanton Thurgau","domain":"sulgen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 ip4:212.90.214.230 ip4:83.173.225.254 ip4:193.135.56.6 include:tg.ch include:spf.protection.outlook.com include:spf.ess.de.barracudanetworks.com include:spf.mailxpert.ch include:spf.protection.cyon.net include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4511":{"name":"Zihlschlacht-Sitterdorf","canton":"Kanton Thurgau","domain":"zihlschlacht-sitterdorf.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4536":{"name":"Basadingen-Schlattingen","canton":"Kanton Thurgau","domain":"pg-bs.ch","mx":["mx.pg-bs.ch"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4545":{"name":"Diessenhofen","canton":"Kanton Thurgau","domain":"diessenhofen.ch","mx":["diessenhofen-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 include:spf.protection.outlook.com include:spf.abxsec.com include:mandrillapp.com a:mail.ostendis.ch a:mta1.tg.ch a:mta2.tg.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX diessenhofen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.diessenhofen.ch CNAME → selector1-diessenhofen-ch._domainkey.rathausdh.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.diessenhofen.ch CNAME → selector2-diessenhofen-ch._domainkey.rathausdh.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4546":{"name":"Schlatt (TG)","canton":"Kanton Thurgau","domain":"schlatt.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4551":{"name":"Aadorf","canton":"Kanton Thurgau","domain":"aadorf.ch","mx":["aadorf-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX aadorf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4561":{"name":"Felben-Wellhausen","canton":"Kanton Thurgau","domain":"felben-wellhausen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4566":{"name":"Frauenfeld","canton":"Kanton Thurgau","domain":"frauenfeld.ch","mx":["mail.stadtfrauenfeld.ch"],"spf":"v=spf1 redirect:stadtfrauenfeld.ch","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4571":{"name":"Gachnang","canton":"Kanton Thurgau","domain":"gachnang.ch","mx":["gachnang-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:tg.ch include:spf.protection.outlook.com include:_spf.abxsec.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gachnang-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4590":{"name":"Hüttlingen","canton":"Kanton Thurgau","domain":"huettlingen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4591":{"name":"Matzingen","canton":"Kanton Thurgau","domain":"matzingen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4601":{"name":"Neunforn","canton":"Kanton Thurgau","domain":"neunforn.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx a:webcms.ruf.ch include:spf1.egeko.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4606":{"name":"Stettfurt","canton":"Kanton Thurgau","domain":"stettfurt.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx ip4:193.135.56.6 include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"abxsec"},"4611":{"name":"Thundorf","canton":"Kanton Thurgau","domain":"thundorf.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx a:mail.asp.ruf.ch a:mx1.rufcloud.ch a:mx2.rufcloud.ch ip4:193.135.56.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4616":{"name":"Uesslingen-Buch","canton":"Kanton Thurgau","domain":"uesslingen-buch.ch","mx":["uesslingenbuch-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf-de.emailsignatures365.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX uesslingenbuch-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.uesslingen-buch.ch CNAME → selector1-uesslingenbuch-ch02e._domainkey.uesslingenbuch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.uesslingen-buch.ch CNAME → selector2-uesslingenbuch-ch02e._domainkey.uesslingenbuch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"4621":{"name":"Warth-Weiningen","canton":"Kanton Thurgau","domain":"warth-weiningen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4641":{"name":"Altnau","canton":"Kanton Thurgau","domain":"altnau.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4643":{"name":"Bottighofen","canton":"Kanton Thurgau","domain":"bottighofen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4646":{"name":"Ermatingen","canton":"Kanton Thurgau","domain":"ermatingen.ch","mx":["ermatingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.abxsec.com include:spf.protection.outlook.com include:spf-de.emailsignatures365.com include:spf-westeu.emailsignatures365.com +mx +a ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ermatingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4651":{"name":"Gottlieben","canton":"Kanton Thurgau","domain":"gottlieben.ch","mx":["mx.gottlieben.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:170.205.81.210 ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4656":{"name":"Güttingen","canton":"Kanton Thurgau","domain":"guettingen.ch","mx":["mx.guettingen.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 ip4:81.63.169.2 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4666":{"name":"Kemmental","canton":"Kanton Thurgau","domain":"kemmental.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 include:spf.abacuscity.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4671":{"name":"Kreuzlingen","canton":"Kanton Thurgau","domain":"kreuzlingen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx a:mail.codx.ch include:spf.privasphere.com ip4:212.4.70.131 ip4:193.246.95.120 ip4:193.246.95.101 ip4:149.126.4.25 include:spf.protection.outlook.com include:_spf.abxsec.com include:skr.spf.ymc.host include:_spf.psm.knowbe4.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":80.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"4681":{"name":"Langrickenbach","canton":"Kanton Thurgau","domain":"langrickenbach.ch","mx":["langrickenbach-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:193.135.56.6 ip4:213.55.169.132 include:spf.protection.outlook.com include:tg.ch include:spf.abxsec.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX langrickenbach-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15796 is Swiss ISP: Netzone AG"}]},"4683":{"name":"Lengwil","canton":"Kanton Thurgau","domain":"lengwil.ch","mx":["mail1.rzobt.ch","mail2.rzobt.ch"],"spf":"v=spf1 include:_spf.rzobt.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4691":{"name":"Münsterlingen","canton":"Kanton Thurgau","domain":"muensterlingen.ch","mx":["muensterlingen-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:mx01.securemailbox.ch include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.abxsec.com include:spf.eu.signature365.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muensterlingen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4696":{"name":"Tägerwilen","canton":"Kanton Thurgau","domain":"taegerwilen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 a mx ip4:193.135.56.0/24 ip4:193.135.56.6 ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4701":{"name":"Wäldi","canton":"Kanton Thurgau","domain":"waeldi.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4711":{"name":"Affeltrangen","canton":"Kanton Thurgau","domain":"affeltrangen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4716":{"name":"Bettwiesen","canton":"Kanton Thurgau","domain":"bettwiesen.ch","mx":["bettwiesen.in.tmes.trendmicro.eu"],"spf":"v=spf1 include:spf.tmes.trendmicro.eu include:spf.protection.outlook.com ip4:109.205.200.45 ip4:193.135.56.6 mx include:spf.abxsec.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"}],"gateway":"trendmicro"},"4721":{"name":"Bichelsee-Balterswil","canton":"Kanton Thurgau","domain":"bichelsee-balterswil.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4723":{"name":"Braunau","canton":"Kanton Thurgau","domain":"braunau.ch","mx":["braunau-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:46.4.250.97 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX braunau-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.braunau.ch CNAME → selector1-braunau-ch._domainkey.gmdbraunau.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.braunau.ch CNAME → selector2-braunau-ch._domainkey.gmdbraunau.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4724":{"name":"Eschlikon","canton":"Kanton Thurgau","domain":"eschlikon.ch","mx":["eschlikon-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.246.95.101 ip4:193.246.95.121 include:_spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eschlikon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.eschlikon.ch CNAME → selector1-eschlikon-ch._domainkey.gmdeschlikon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.eschlikon.ch CNAME → selector2-eschlikon-ch._domainkey.gmdeschlikon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4726":{"name":"Fischingen","canton":"Kanton Thurgau","domain":"fischingen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 include:tg.ch include:spf1.egeko.ch include:spf.abxsec.com include:_spf.sui-inter.net +mx +a ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4741":{"name":"Lommis","canton":"Kanton Thurgau","domain":"lommis.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 a mx include:spf.abxsec.com include:tg.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4746":{"name":"Münchwilen (TG)","canton":"Kanton Thurgau","domain":"muenchwilen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.abxsec.com ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4751":{"name":"Rickenbach (TG)","canton":"Kanton Thurgau","domain":"rickenbach-tg.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com include:spf.protection.cyon.net -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4756":{"name":"Schönholzerswilen","canton":"Kanton Thurgau","domain":"schoenholzerswilen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4761":{"name":"Sirnach","canton":"Kanton Thurgau","domain":"sirnach.ch","mx":["mta1.abxsec.com","mta2.abxsec.com"],"spf":"v=spf1 mx include:_spf.abxsec.com ip4:193.135.56.0/24 a:mail.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"abxsec"},"4776":{"name":"Tobel-Tägerschen","canton":"Kanton Thurgau","domain":"tobel-taegerschen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.16 include:spf.escapenet.ch include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4781":{"name":"Wängi","canton":"Kanton Thurgau","domain":"waengi.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:sui-inter.net include:dxb.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4786":{"name":"Wilen (TG)","canton":"Kanton Thurgau","domain":"wilen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4791":{"name":"Wuppenau","canton":"Kanton Thurgau","domain":"wuppenau.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4801":{"name":"Berlingen","canton":"Kanton Thurgau","domain":"berlingen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4806":{"name":"Eschenz","canton":"Kanton Thurgau","domain":"eschenz.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4811":{"name":"Herdern","canton":"Kanton Thurgau","domain":"herdern.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4816":{"name":"Homburg","canton":"Kanton Thurgau","domain":"homburg.ch","mx":["mail.homburg.ch"],"spf":"v=spf1 mx include:tg.ch","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4821":{"name":"Hüttwilen","canton":"Kanton Thurgau","domain":"huettwilen.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:egeko.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4826":{"name":"Mammern","canton":"Kanton Thurgau","domain":"mammern.ch","mx":["mx1.rufcloud.ch","mx2.rufcloud.ch"],"spf":"v=SPF1 mx a:webcms.ruf.ch include:spf.customer.swiss-egov.cloud -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"}]},"4831":{"name":"Müllheim","canton":"Kanton Thurgau","domain":"muellheim.ch","mx":["mail.muellheim.ch"],"spf":"v=spf1 +a +mx include:spf.customer.swiss-egov.cloud include:_spf.sui-inter.net include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4841":{"name":"Pfyn","canton":"Kanton Thurgau","domain":"pfyn.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:_spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4846":{"name":"Raperswilen","canton":"Kanton Thurgau","domain":"raperswilen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4851":{"name":"Salenstein","canton":"Kanton Thurgau","domain":"salenstein.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4864":{"name":"Steckborn","canton":"Kanton Thurgau","domain":"steckborn.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 ip4:193.33.128.155 +a +mx +ip4:193.33.128.141 +include:spf.mandrillapp.com +include:relay.mailchannels.net include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4871":{"name":"Wagenhausen","canton":"Kanton Thurgau","domain":"wagenhausen.ch","mx":["mx.wagenhausen.ch"],"spf":"v=spf1 mx include:spf.abxsec.com ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4881":{"name":"Amlikon-Bissegg","canton":"Kanton Thurgau","domain":"amlikon-bissegg.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:spf1.egeko.ch ip4:193.135.56.6 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4891":{"name":"Berg (TG)","canton":"Kanton Thurgau","domain":"berg-tg.ch","mx":["gmd-berg.in.tmes.trendmicro.eu"],"spf":"v=spf1 +a ip4:185.230.20.53 include:spf.yop.ch include:spf.tmes.trendmicro.com include:spf.abxsec.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"trendmicro"},"4901":{"name":"Birwinken","canton":"Kanton Thurgau","domain":"birwinken.ch","mx":["mail100.rizag.ch"],"spf":"v=spf1 mx include:_spfmx.rizag.ch include:spf.protection.outlook.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4911":{"name":"Bürglen (TG)","canton":"Kanton Thurgau","domain":"buerglen-tg.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx ip4:193.135.56.6 include:tg.ch include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"4921":{"name":"Bussnang","canton":"Kanton Thurgau","domain":"bussnang.ch","mx":["mx.bussnang.ch"],"spf":"v=spf1 mx include:tg.ch include:spf.protection.cyon.net include:spf.abxsec.com -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"4941":{"name":"Märstetten","canton":"Kanton Thurgau","domain":"maerstetten.ch","mx":["maerstetten-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:193.135.56.6 ip4:34.65.211.248 ip4:81.63.140.74 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX maerstetten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.maerstetten.ch CNAME → selector1-maerstetten-ch._domainkey.gmdmaerstetten.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.maerstetten.ch CNAME → selector2-maerstetten-ch._domainkey.gmdmaerstetten.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 396982 matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"4946":{"name":"Weinfelden","canton":"Kanton Thurgau","domain":"weinfelden.ch","mx":["weinfelden-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.abxsec.com ip4:193.135.56.6 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX weinfelden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.weinfelden.ch CNAME → selector1-weinfelden-ch._domainkey.gmdweinfelden.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.weinfelden.ch CNAME → selector2-weinfelden-ch._domainkey.gmdweinfelden.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"4951":{"name":"Wigoltingen","canton":"Kanton Thurgau","domain":"wigoltingen.ch","mx":["mta1.tg.ch","mta2.tg.ch"],"spf":"v=spf1 mx include:tg.ch include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5001":{"name":"Arbedo-Castione","canton":"Kanton Tessin","domain":"arbedocastione.ch","mx":["mail.arbedocastione.ch"],"spf":"v=spf1 a:lin24.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:89.251.240.236 ip4:213.133.233.20 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5002":{"name":"Bellinzona","canton":"Kanton Tessin","domain":"bellinzona.ch","mx":["mail2.bellinzona.ch"],"spf":"v=spf1 mx ptr ip4:89.251.240.236 ip4:213.133.224.64 ip4:213.133.224.40 ip4:213.133.224.13 include:_asms6spf.assolo.net ip4:213.133.224.155 ip4:178.23.174.28 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:54.229.2.165 ip4:52.17.45.98 ip4:52.16.190.81 ip4:52.30.130.201 ip4:213.133.224.78 ip4:62.55.182.68/32 include:_spf.bellinzona.ch include:spf.protection.outlook.com include:spf-de.emailsignatures365.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 16509 matches aws"}]},"5003":{"name":"Cadenazzo","canton":"Kanton Tessin","domain":"cadenazzo.ch","mx":["mail.cadenazzo.ch"],"spf":"v=spf1 mx ptr include:spf.protection.outlook.com ip4:89.251.240.236 -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5009":{"name":"Isone","canton":"Kanton Tessin","domain":"isone.ch","mx":["isone-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:lin24.assolo.net ip4:213.133.224.180 include:_asms10spf.assolo.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX isone-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5010":{"name":"Lumino","canton":"Kanton Tessin","domain":"lumino.ch","mx":["lumino-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a include:CustSPF.tinext.com ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.64 ip4:178.23.174.0/27 ip4:213.133.224.40 ip4:213.133.224.18 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lumino-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5017":{"name":"Sant'Antonino","canton":"Kanton Tessin","domain":"santonino.ch","mx":["mail.santonino.ch"],"spf":"v=spf1 mx a ip4:89.251.240.236 ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5048":{"name":"Acquarossa","canton":"Kanton Tessin","domain":"acquarossa.ch","mx":["acquarossa-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX acquarossa-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5049":{"name":"Blenio","canton":"Kanton Tessin","domain":"comuneblenio.ch","mx":["comuneblenio-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.133.224.103 ip4:213.133.224.105 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX comuneblenio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5050":{"name":"Serravalle","canton":"Kanton Tessin","domain":"serravalle.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:89.207.237.84 ip4:213.133.224.180 ip4:213.133.224.209 ip4:213.133.224.68 ip4:178.23.174.0/27 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5061":{"name":"Airolo","canton":"Kanton Tessin","domain":"airolo.ch","mx":["airolo-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX airolo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.airolo.ch CNAME → selector1-airolo-ch._domainkey.municipioairolo.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.airolo.ch CNAME → selector2-airolo-ch._domainkey.municipioairolo.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5063":{"name":"Bedretto","canton":"Kanton Tessin","domain":"bedretto.ch","mx":["bedretto.ch"],"spf":"v=spf1 ip4:5.182.248.166 include:tizoo.com +a +mx +ip4:212.147.66.228 +ip4:89.207.237.84 +ip4:178.23.174.0/27 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5071":{"name":"Dalpe","canton":"Kanton Tessin","domain":"dalpe.ch","mx":["dalpe.ch"],"spf":"v=spf1 a mx ip4:89.207.237.84 ip4:178.23.174.0/27 include:_spf.server4all.de ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5072":{"name":"Faido","canton":"Kanton Tessin","domain":"faido.ch","mx":["mail.faido.ch"],"spf":"v=spf1 mx ptr include:spf.protection.outlook.com ip4:89.251.240.236 ip4:178.23.174.28 ip4:178.23.174.19 ip4:178.23.174.18 ip4:178.23.174.17 ip4:178.23.174.16 ip4:178.23.174.0/27 ip4:89.207.237.84/32 ip4:213.133.224.98 -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5073":{"name":"Giornico","canton":"Kanton Tessin","domain":"giornico.ch","mx":["asms.assolo.net"],"spf":"v=spf1 a include:_asms6spf.assolo.net ip4:213.133.224.99 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.13 ip4:213.133.224.14 ip4:213.133.224.16 ip4:213.133.224.5 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5076":{"name":"Personico","canton":"Kanton Tessin","domain":"personico.ch","mx":["personico-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.62.135.38 include:spf.protection.outlook.com include:antispam01.moresi.com include:antispam02.moresi.com include:antispam03.moresi.com include:antispam04.moresi.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX personico-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5077":{"name":"Pollegio","canton":"Kanton Tessin","domain":"pollegio.ch","mx":["asms2.assolo.net"],"spf":"v=spf1 include:_asms7spf.assolo.net ip4:213.133.224.143 ip4:213.133.224.79 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5079":{"name":"Quinto","canton":"Kanton Tessin","domain":"tiquinto.ch","mx":["tiquinto-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:83.166.142.218 include:servers.mcsv.net ?all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX tiquinto-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5091":{"name":"Ascona","canton":"Kanton Tessin","domain":"ascona.ch","mx":["asmav.assolo.net"],"spf":"v=spf1 a:asmav.assolo.net a:lin12.assolo.net a:asms2.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5096":{"name":"Brione sopra Minusio","canton":"Kanton Tessin","domain":"brione.ch","mx":["brione-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brione-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5097":{"name":"Brissago","canton":"Kanton Tessin","domain":"brissago.ch","mx":["brissago-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:asmav.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:195.190.166.214 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brissago-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5108":{"name":"Gordola","canton":"Kanton Tessin","domain":"gordola.ch","mx":["gordola-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:_asms4spf.assolo.net include:spf.protection.outlook.com a:lin31.assolo.net a:lin8.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gordola-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5112":{"name":"Lavertezzo","canton":"Kanton Tessin","domain":"lavertezzo.ch","mx":["lavertezzo-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lavertezzo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5113":{"name":"Locarno","canton":"Kanton Tessin","domain":"locarno.ch","mx":["mx42.locarno.ch","mx43.locarno.ch"],"spf":"v=spf1 ip4:212.4.70.139 ip4:62.55.182.68 ip4:217.193.141.42 ip4:217.193.141.43 a:mailout.ip-plus.net mx -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5115":{"name":"Losone","canton":"Kanton Tessin","domain":"losone.ch","mx":["losone-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:lin24.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com a:asms2.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX losone-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5117":{"name":"Mergoscia","canton":"Kanton Tessin","domain":"mergoscia.ch","mx":["mx01.tophost.ch","mx02.tophost.ch"],"spf":"","provider":"independent","category":"swiss-based","classification_confidence":60.0,"classification_signals":[]},"5118":{"name":"Minusio","canton":"Kanton Tessin","domain":"minusio.ch","mx":["smtp.assolo.net"],"spf":"v=spf1 include:_asms6spf.assolo.net a:lin32.assolo.net ip4:213.133.224.13 ip4:83.173.217.38 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.79 ip4:213.133.224.68 ip4:213.133.224.160 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5120":{"name":"Muralto","canton":"Kanton Tessin","domain":"muralto.ch","mx":["muralto-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.190.166.213 +a +mx ip4:195.190.166.204 ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muralto-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5121":{"name":"Orselina","canton":"Kanton Tessin","domain":"orselina.ch","mx":["orselina-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:lin12.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX orselina-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5125":{"name":"Ronco sopra Ascona","canton":"Kanton Tessin","domain":"ronco-s-ascona.ch","mx":["roncosascona-ch01k.mail.protection.outlook.com"],"spf":"v=spf1 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX roncosascona-ch01k.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5131":{"name":"Tenero-Contra","canton":"Kanton Tessin","domain":"tenero-contra.ch","mx":["backup-mailsecurity.cybersecservices.ch","mailsecurity.cybersecservices.ch"],"spf":"v=spf1 a:lin17.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5136":{"name":"Onsernone","canton":"Kanton Tessin","domain":"onsernone.swiss","mx":["onsernone-swiss.mail.protection.outlook.com"],"spf":"v=spf1 include:_asms5spf.assolo.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX onsernone-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5138":{"name":"Cugnasco-Gerra","canton":"Kanton Tessin","domain":"cugnasco-gerra.ch","mx":["mail.cugnasco-gerra.ch"],"spf":"v=spf1 a:lin16.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 include:_asms4spf.assolo.net ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5141":{"name":"Agno","canton":"Kanton Tessin","domain":"agno.ch","mx":["asms4.assolo.net"],"spf":"v=spf1 mx include:_asms4spf.assolo.net ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5143":{"name":"Aranno","canton":"Kanton Tessin","domain":"aranno.ch","mx":["aranno-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:green.icteam.swiss a:asmav.assolo.net a:asms2.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.103 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX aranno-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5144":{"name":"Arogno","canton":"Kanton Tessin","domain":"arogno.ch","mx":["7azulib01.atomdata.ch","7bdalib01.atomdata.ch"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.174.26.10 ip4:178.174.0.238 ip4:91.208.130.32 ip4:91.208.130.31 a:lin16.assolo.net include:mailhost.ticino-online.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5148":{"name":"Bedano","canton":"Kanton Tessin","domain":"bedano.ch","mx":["mail.bedano.ch"],"spf":"v=spf1 mx ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:146.4.99.230 include:spf.privasphere.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5151":{"name":"Bioggio","canton":"Kanton Tessin","domain":"bioggio.ch","mx":["bioggio-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.246.38.166 a:green.icteam.swiss -all ","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bioggio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5154":{"name":"Bissone","canton":"Kanton Tessin","domain":"bissone.ch","mx":["bissone-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bissone-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bissone.ch CNAME → selector1-bissone-ch._domainkey.bissone.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bissone.ch CNAME → selector2-bissone-ch._domainkey.bissone.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5160":{"name":"Brusino Arsizio","canton":"Kanton Tessin","domain":"brusinoarsizio.ch","mx":["brusinoarsizio-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX brusinoarsizio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5161":{"name":"Cademario","canton":"Kanton Tessin","domain":"cademario.ch","mx":["cademario-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:195.190.166.213 ip4:62.48.123.84 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cademario-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5162":{"name":"Cadempino","canton":"Kanton Tessin","domain":"cadempino.ch","mx":["mail.cadempino.ch"],"spf":"v=spf1 +a +mx ip4:185.94.150.0/26 ip4:89.207.237.84 178.23.174.0/27 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5167":{"name":"Canobbio","canton":"Kanton Tessin","domain":"canobbio.ch","mx":["canobbio-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.190.166.212 ip4:195.190.166.206 +a +mx +ip4:195.190.166.205 +include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":91.0,"classification_signals":[{"kind":"mx","detail":"MX canobbio-ch.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5171":{"name":"Caslano","canton":"Kanton Tessin","domain":"caslano.ch","mx":["caslano-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:213.133.233.22 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX caslano-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5176":{"name":"Comano","canton":"Kanton Tessin","domain":"comano.ch","mx":["comano-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:lin17.assolo.net include:_asms7spf.assolo.net include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX comano-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5180":{"name":"Cureglia","canton":"Kanton Tessin","domain":"cureglia.ch","mx":["cureglia-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.173 a:lin12.assolo.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cureglia-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5186":{"name":"Grancia","canton":"Kanton Tessin","domain":"grancia.ch","mx":["mx1.mail.hostpoint.ch","mx2.mail.hostpoint.ch"],"spf":"v=spf1 redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5187":{"name":"Gravesano","canton":"Kanton Tessin","domain":"gravesano.ch","mx":["gravesano-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gravesano-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5189":{"name":"Lamone","canton":"Kanton Tessin","domain":"lamone.ch","mx":["mail.ticinoposta.ch"],"spf":"v=spf1 mx a:mail.ticinoposta.ch a:ticinoposta.mifaweb.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5192":{"name":"Lugano","canton":"Kanton Tessin","domain":"lugano.ch","mx":["smtp11.lugano.ch","smtp12.lugano.ch"],"spf":"v=spf1 mx a ip4:195.14.126.66 ip4:195.14.126.67 include:143896222.spf04.hubspotemail.net include:CustSPF.tinext.com include:emailwarp.com include:servers.mcsv.net include:spf.swisscom.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5193":{"name":"Magliaso","canton":"Kanton Tessin","domain":"magliaso.ch","mx":["magliaso-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.23.174.0/27 mx ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX magliaso-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5194":{"name":"Manno","canton":"Kanton Tessin","domain":"manno.ch","mx":["ch-backup-mailsecurity.cybersecservices.ch","ch-mailsecurity.cybersecservices.ch"],"spf":"v=spf1 include:spf.protection.outlook.com include:cryms.com ip4:178.23.174.0/27 ip4:89.207.237.84 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.manno.ch CNAME → selector1-manno-ch._domainkey.municipiomanno.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.manno.ch CNAME → selector2-manno-ch._domainkey.municipiomanno.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5196":{"name":"Massagno","canton":"Kanton Tessin","domain":"massagno.ch","mx":["mx2.massagno.ch"],"spf":"v=spf1 ip4:185.79.206.82 ip4:185.79.206.83 ip4:185.79.206.84 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.247 a:lin32.assolo.net -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5198":{"name":"Melide","canton":"Kanton Tessin","domain":"melide.ch","mx":["melide-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com include:custspf.tinext.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX melide-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.melide.ch CNAME → selector1-melide-ch._domainkey.municipiomelide.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.melide.ch CNAME → selector2-melide-ch._domainkey.municipiomelide.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5199":{"name":"Mezzovico-Vira","canton":"Kanton Tessin","domain":"mezzovico-vira.ch","mx":["mezzovicovira-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 a:lin16.assolo.net a:lin31.assolo.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mezzovicovira-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5203":{"name":"Morcote","canton":"Kanton Tessin","domain":"morcote.ch","mx":["morcote-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:62.2.108.198 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.3.37.249 ip4:213.133.224.64/29 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX morcote-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.morcote.ch CNAME → selector1-morcote-ch._domainkey.morcote.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.morcote.ch CNAME → selector2-morcote-ch._domainkey.morcote.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5205":{"name":"Muzzano","canton":"Kanton Tessin","domain":"muzzano.ch","mx":["muzzano-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.3.37.48 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX muzzano-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5206":{"name":"Neggio","canton":"Kanton Tessin","domain":"neggio.ch","mx":["mail.tinext.net"],"spf":"v=spf1 mx a include:CustSPF.tinext.com -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5208":{"name":"Origlio","canton":"Kanton Tessin","domain":"origlio.ch","mx":["origlio-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX origlio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5210":{"name":"Paradiso","canton":"Kanton Tessin","domain":"paradiso.ch","mx":["mxfilter1.paradiso.ch","mxfilter2.paradiso.ch"],"spf":"v=spf1 a:intranet.paradiso.ch a:mail.paradiso.ch a:residenza.paradiso.ch a:vps.braile.ch ip4:46.14.23.114/32 ip4:51.75.55.164 redirect=spf.mail.hostpoint.ch","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5212":{"name":"Ponte Capriasca","canton":"Kanton Tessin","domain":"pontecapriasca.ch","mx":["ch-backup-mailsecurity.cybersecservices.ch","ch-mailsecurity.cybersecservices.ch","pontecapriasca-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:ch-backup-mailsecurity.cybersecservices.ch a:ch-mailsecurity.cybersecservices.ch ip4:195.186.122.112 ip4:195.186.122.114 ip4:195.186.101.108 ip4:195.186.101.109 ip4:193.246.38.134 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:195.141.20.198 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pontecapriasca-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"5214":{"name":"Porza","canton":"Kanton Tessin","domain":"porza.ch","mx":["asms5.assolo.net"],"spf":"v=spf1 include:_asms5spf.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5216":{"name":"Pura","canton":"Kanton Tessin","domain":"pura.ch","mx":["pura-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:asmav.assolo.net ip4:178.23.174.0/27 ip4:89.207.237.84 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pura-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5221":{"name":"Savosa","canton":"Kanton Tessin","domain":"savosa.ch","mx":["savosa-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.105 ip4:213.133.224.103 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX savosa-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5225":{"name":"Sorengo","canton":"Kanton Tessin","domain":"sorengo.ch","mx":["sorengo-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX sorengo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5226":{"name":"Capriasca","canton":"Kanton Tessin","domain":"capriasca.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 ip4:213.133.233.21 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5227":{"name":"Torricella-Taverne","canton":"Kanton Tessin","domain":"torricella-taverne.ch","mx":["torricellataverne-ch02e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX torricellataverne-ch02e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5230":{"name":"Vernate","canton":"Kanton Tessin","domain":"vernate.ch","mx":["mail.vernate.ch"],"spf":"v=spf1 mx ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"}]},"5231":{"name":"Vezia","canton":"Kanton Tessin","domain":"vezia.ch","mx":["vezia-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.133.224.68 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vezia-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vezia.ch CNAME → selector1-vezia-ch._domainkey.comunevezia.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vezia.ch CNAME → selector2-vezia-ch._domainkey.comunevezia.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5233":{"name":"Vico Morcote","canton":"Kanton Tessin","domain":"vicomorcote.ch","mx":["vicomorcote-ch.mail.protection.outlook.com"],"spf":"v=spf1 a:lin24.assolo.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vicomorcote-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5236":{"name":"Collina d'Oro","canton":"Kanton Tessin","domain":"collinadoro.swiss","mx":["collinadoro-swiss.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:146.4.29.26 ip4:146.4.29.27 ip4:213.133.226.37 a:cdointranetvm.assolo.net a:intranet.collinadoro.swiss a:intranet.collinadoro.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX collinadoro-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5237":{"name":"Alto Malcantone","canton":"Kanton Tessin","domain":"altomalcantone.ch","mx":["altomalcantone-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.236.28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX altomalcantone-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5238":{"name":"Monteceneri","canton":"Kanton Tessin","domain":"monteceneri.ch","mx":["monteceneri-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:62.202.13.115 ip4:80.74.159.65 ip4:89.207.237.84 ip4:178.23.174.0/27 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX monteceneri-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.monteceneri.ch CNAME → selector1-monteceneri-ch._domainkey.monteceneri365.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.monteceneri.ch CNAME → selector2-monteceneri-ch._domainkey.monteceneri365.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5239":{"name":"Tresa","canton":"Kanton Tessin","domain":"tresa.ch","mx":["tresa-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:46.14.230.94 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tresa-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.tresa.ch CNAME → selector1-tresa-ch._domainkey.croglio.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.tresa.ch CNAME → selector2-tresa-ch._domainkey.croglio.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5240":{"name":"Val Mara","canton":"Kanton Tessin","domain":"valmara.ch","mx":["valmara-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:178.23.174.0/27 ip4:89.207.237.84 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX valmara-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5242":{"name":"Balerna","canton":"Kanton Tessin","domain":"balerna.ch","mx":["pedro.labcc.ch"],"spf":"v=spf1 ip4:213.133.236.29 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.labcc.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5249":{"name":"Castel San Pietro","canton":"Kanton Tessin","domain":"castelsanpietro.ch","mx":["asmav.assolo.net"],"spf":"v=spf1 include:_asms6spf.assolo.net ip4:213.133.224.164 ip4:213.133.224.21 ip4:81.62.228.226 ip4:46.21.27.18 ip4:46.21.27.19 ip4:46.21.27.20 ip4:46.21.27.12 ip4:178.23.174.0/27 ip4:89.207.237.84 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5250":{"name":"Chiasso","canton":"Kanton Tessin","domain":"chiasso.ch","mx":["asmav.assolo.net"],"spf":"v=spf1 include:_spf.mlsend.com ip4:213.200.244.96/29 ip4:178.23.174.0/27 a:mail.chiasso.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5251":{"name":"Coldrerio","canton":"Kanton Tessin","domain":"coldrerio.ch","mx":["coldrerio-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:46.21.25.126 ip4:194.209.9.131 ip4:178.23.174.0/27 ip4:89.207.237.84 include:spf.protection.outlook.com include:spf1.dos-group.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX coldrerio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5254":{"name":"Mendrisio","canton":"Kanton Tessin","domain":"mendrisio.ch","mx":["mx01.cloud.vadesecure.com","mx02.cloud.vadesecure.com","mx03.cloud.vadesecure.com","mx04.cloud.vadesecure.com"],"spf":"v=spf1 include:servers.mcsv.net ip4:217.193.168.186 ip4:62.2.94.100 include:spf.cloud.vadesecure.com include:spf.protection.outlook.com ip4:195.144.52.177 ip4:62.2.94.104 ip4:62.2.94.114 mx ip4:62.55.182.68 -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"5257":{"name":"Morbio Inferiore","canton":"Kanton Tessin","domain":"morbioinf.ch","mx":["morbioinf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:89.207.237.84 ip4:178.23.174.0/27 a:lin16.assolo.net -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX morbioinf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.morbioinf.ch CNAME → selector1-morbioinf-ch._domainkey.morbioinferiore.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.morbioinf.ch CNAME → selector2-morbioinf-ch._domainkey.morbioinferiore.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5260":{"name":"Novazzano","canton":"Kanton Tessin","domain":"novazzano.ch","mx":["novazzano-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx:mail.ticinoposta.ch ip4:178.23.174.0/27 ip4:84.16.245.14 ip4:84.16.245.15 ip4:84.16.244.136 ip4:89.207.237.84 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX novazzano-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5263":{"name":"Riva San Vitale","canton":"Kanton Tessin","domain":"rivasanvitale.ch","mx":["mailscanner.moresi.com"],"spf":"v=spf1 mx ip4:178.23.174.0/27 ip4:89.207.237.84 ip6:2a02:ab40:0:1003::/64 ip4:213.133.236.26 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5266":{"name":"Stabio","canton":"Kanton Tessin","domain":"stabio.ch","mx":["ch-backup-mailsecurity.cybersecservices.ch","ch-mailsecurity.cybersecservices.ch"],"spf":"v=spf1 a:smtp.mlt-systems.ch a:cpanel.mlt-systems.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.stabio.ch CNAME → selector1-stabio-ch._domainkey.comunestabio.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.stabio.ch CNAME → selector2-stabio-ch._domainkey.comunestabio.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5268":{"name":"Vacallo","canton":"Kanton Tessin","domain":"vacallo.ch","mx":["mail.ticinoposta.ch"],"spf":"v=spf1 mx a:mail.ticinoposta.ch a:ticinoposta.mifaweb.net -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5269":{"name":"Breggia","canton":"Kanton Tessin","domain":"comunebreggia.ch","mx":["mail.comunebreggia.ch"],"spf":"v=spf1 include:_asms3spf.assolo.net ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:213.133.224.236 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5281":{"name":"Biasca","canton":"Kanton Tessin","domain":"biasca.ch","mx":["biasca-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.133.224.25 ip4:213.133.226.34 ip4:89.207.237.84 ip4:178.23.174.0/27 ip4:89.251.240.41/32 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX biasca-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.biasca.ch CNAME → selector1-biasca-ch._domainkey.biascacomune.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.biasca.ch CNAME → selector2-biasca-ch._domainkey.biascacomune.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5287":{"name":"Riviera","canton":"Kanton Tessin","domain":"comuneriviera.ch","mx":["mail1.comuneriviera.ch"],"spf":"v=spf1 mx ip4:213.133.224.155 ip4:213.133.224.173 ip4:46.14.64.106 ip4:178.23.174.0/27 ip4:89.207.237.84 ip4:213.133.224.209 ip4:213.133.224.68 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5304":{"name":"Bosco/Gurin","canton":"Kanton Tessin","domain":"bosco-gurin.ch","mx":["bosco-gurin.ch"],"spf":"v=spf1 +a +mx +ip4:195.190.166.210 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5307":{"name":"Campo (Vallemaggia)","canton":"Kanton Tessin","domain":"campo-vallemaggia.ch","mx":["campovallemaggia-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX campovallemaggia-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5309":{"name":"Cerentino","canton":"Kanton Tessin","domain":"cerentino.ch","mx":["mail.cerentino.ch"],"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5310":{"name":"Cevio","canton":"Kanton Tessin","domain":"cevio.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5315":{"name":"Linescio","canton":"Kanton Tessin","domain":"linescio.ch","mx":["mail.linescio.ch"],"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5317":{"name":"Maggia","canton":"Kanton Tessin","domain":"maggia.ch","mx":["mail.maggia.ch"],"spf":"v=spf1 a:maggia.ch mx ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5323":{"name":"Lavizzara","canton":"Kanton Tessin","domain":"lavizzara.ch","mx":["lavizzara.ch"],"spf":"v=spf1 ip4:195.190.166.214 +a +mx +ip4:195.190.166.208 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5324":{"name":"Avegno Gordevio","canton":"Kanton Tessin","domain":"avegnogordevio.ch","mx":["avegnogordevio-ch.mail.protection.outlook.com","avegnogordevio.ch","ms14964657.msv1.invalid"],"spf":"v=spf1 ip4:195.190.166.212 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX avegnogordevio-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5395":{"name":"Lema","canton":"Kanton Tessin","domain":"lema.ch","mx":["lema-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.180.162.206 ip4:213.200.233.58 ip4:109.164.222.186 ip4:109.164.214.150 ip4:146.4.115.166 ip4:213.133.234.100 ip4:213.133.224.103 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lema-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5396":{"name":"Terre di Pedemonte","canton":"Kanton Tessin","domain":"pedemonte.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 include:_asms3spf.assolo.net include:spf.protection.outlook.com a:lin12.assolo.net a:lin21.assolo.net ip4:213.133.224.236 ip4:213.133.224.237 ip4:213.133.224.238 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"sophos"},"5397":{"name":"Centovalli","canton":"Kanton Tessin","domain":"centovalli.swiss","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 mx a:dispatch-eu.ppe-hosted.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"5398":{"name":"Gambarogno","canton":"Kanton Tessin","domain":"gambarogno.ch","mx":["asmav.assolo.net"],"spf":"v=spf1 ip4:109.164.223.179 a:lin15.assolo.net a:lin24.assolo.net -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5399":{"name":"Verzasca","canton":"Kanton Tessin","domain":"verzasca.swiss","mx":["verzasca-swiss.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.133.224.79 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verzasca-swiss.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5401":{"name":"Aigle","canton":"Kanton Waadt","domain":"aigle.ch","mx":["fallbackmx.spamexperts.eu","lastmx.spamexperts.net","mx.spamexperts.com"],"spf":"v=spf1 include:_netblocks.aigle.ch include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.aigle.ch CNAME → selector1-aigle-ch._domainkey.communeaigle.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.aigle.ch CNAME → selector2-aigle-ch._domainkey.communeaigle.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5402":{"name":"Bex","canton":"Kanton Waadt","domain":"bex.ch","mx":["bex-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.109 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bex-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5403":{"name":"Chessel","canton":"Kanton Waadt","domain":"chessel.ch","mx":["chessel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chessel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5404":{"name":"Corbeyrier","canton":"Kanton Waadt","domain":"corbeyrier.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5405":{"name":"Gryon","canton":"Kanton Waadt","domain":"gryon.ch","mx":["gryon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.111 a mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gryon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gryon.ch CNAME → selector1-gryon-ch._domainkey.communegryon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gryon.ch CNAME → selector2-gryon-ch._domainkey.communegryon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5406":{"name":"Lavey-Morcles","canton":"Kanton Waadt","domain":"lavey.ch","mx":["lavey-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lavey-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.lavey.ch CNAME → selector1-lavey-ch._domainkey.communelavey.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.lavey.ch CNAME → selector2-lavey-ch._domainkey.communelavey.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5407":{"name":"Leysin","canton":"Kanton Waadt","domain":"leysin.ch","mx":["mps.telecomservices.ch"],"spf":"v=spf1 a:mail.leysin.ch a:mps.telecomservices.ch include:spf.protection.outlook.com include:witecom.ch include:servers.mcsv.net include:spf.protection.outlook.com include:protection.outlook.com ip4:185.43.245.131 ip4:84.253.14.34 ip4:84.253.7.218 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.leysin.ch CNAME → selector1-leysin-ch._domainkey.adminleysin.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.leysin.ch CNAME → selector2-leysin-ch._domainkey.adminleysin.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5408":{"name":"Noville","canton":"Kanton Waadt","domain":"noville.ch","mx":["noville-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX noville-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5409":{"name":"Ollon","canton":"Kanton Waadt","domain":"ollon.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com include:_spf-eu.ppe-hosted.com a:dispatch-eu.ppe-hosted.com a:dispatch1-eu1.ppe-hosted.com ip4:185.54.6.109 ip4:145.232.246.230 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"5410":{"name":"Ormont-Dessous","canton":"Kanton Waadt","domain":"ormont-dessous.ch","mx":["ormontdessous-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.blk.ymc.swiss ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ormontdessous-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5411":{"name":"Ormont-Dessus","canton":"Kanton Waadt","domain":"ormont-dessus.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 include:spf.infomaniak.ch mx -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5412":{"name":"Rennaz","canton":"Kanton Waadt","domain":"rennaz.ch","mx":["rennaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com include:_spf.hostcenter.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rennaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rennaz.ch CNAME → selector1-rennaz-ch._domainkey.communerennaz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rennaz.ch CNAME → selector2-rennaz-ch._domainkey.communerennaz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5413":{"name":"Roche (VD)","canton":"Kanton Waadt","domain":"roche-vd.ch","mx":["rochevd-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.109 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rochevd-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.roche-vd.ch CNAME → selector1-rochevd-ch01c._domainkey.communederoche.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.roche-vd.ch CNAME → selector2-rochevd-ch01c._domainkey.communederoche.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5414":{"name":"Villeneuve (VD)","canton":"Kanton Waadt","domain":"villeneuve.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:spf.evok.ch include:spf.rcv.ch include:_spf.i-web.ch include:spf1.ne.ch ip4:194.56.250.0/23 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5415":{"name":"Yvorne","canton":"Kanton Waadt","domain":"yvorne.ch","mx":["yvorne-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:193.34.137.65 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX yvorne-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.yvorne.ch CNAME → selector1-yvorne-ch._domainkey.communeyvorne.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.yvorne.ch CNAME → selector2-yvorne-ch._domainkey.communeyvorne.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5422":{"name":"Aubonne","canton":"Kanton Waadt","domain":"aubonne.ch","mx":["aubonne-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.rcv.ch include:_spf.psm.knowbe4.com include:spf.protection.outlook.com ip4:217.119.144.0/24 ip4:217.119.146.132 ip4:185.54.6.105 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX aubonne-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.aubonne.ch CNAME → selector1-aubonne-ch._domainkey.aubonnech.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.aubonne.ch CNAME → selector2-aubonne-ch._domainkey.aubonnech.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5423":{"name":"Ballens","canton":"Kanton Waadt","domain":"ballens.ch","mx":["ballens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ?all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ballens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5424":{"name":"Berolle","canton":"Kanton Waadt","domain":"berolle.ch","mx":["mail.berolle.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5425":{"name":"Bière","canton":"Kanton Waadt","domain":"biere-vd.ch","mx":["bierevd-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX bierevd-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5426":{"name":"Bougy-Villars","canton":"Kanton Waadt","domain":"bougy-villars.ch","mx":["bougyvillars-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.105 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bougyvillars-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5427":{"name":"Féchy","canton":"Kanton Waadt","domain":"fechy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5428":{"name":"Gimel","canton":"Kanton Waadt","domain":"gimel.ch","mx":["gimel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gimel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5429":{"name":"Longirod","canton":"Kanton Waadt","domain":"longirod.ch","mx":["longirod-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX longirod-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5430":{"name":"Marchissy","canton":"Kanton Waadt","domain":"marchissy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5431":{"name":"Mollens (VD)","canton":"Kanton Waadt","domain":"mollensvd.ch","mx":["mollensvd-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX mollensvd-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5434":{"name":"Saint-George","canton":"Kanton Waadt","domain":"stgeorge.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.vtx.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5435":{"name":"Saint-Livres","canton":"Kanton Waadt","domain":"st-livres.ch","mx":["stlivres-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:dynamic.st-livres.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX stlivres-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5436":{"name":"Saint-Oyens","canton":"Kanton Waadt","domain":"saint-oyens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5437":{"name":"Saubraz","canton":"Kanton Waadt","domain":"saubraz.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5451":{"name":"Avenches","canton":"Kanton Waadt","domain":"avenches.ch","mx":["avenches-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a:relay01.wlk-ems.com +a:exchange.avenches.ch ip4:212.90.203.0/27 ip4:195.186.0.0/16 include:spf.protection.outlook.com include:spf.mailjet.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX avenches-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5456":{"name":"Cudrefin","canton":"Kanton Waadt","domain":"cudrefin.ch","mx":["cudrefin-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX cudrefin-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5458":{"name":"Faoug","canton":"Kanton Waadt","domain":"faoug.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5464":{"name":"Vully-les-Lacs","canton":"Kanton Waadt","domain":"vully-les-lacs.ch","mx":["vullyleslacs-ch01cc.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.14.2.218 include:spf.protection.outlook.com include:spf.eadmin-solutions.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vullyleslacs-ch01cc.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vully-les-lacs.ch CNAME → selector1-vullyleslacs-ch01cc._domainkey.vllacs.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vully-les-lacs.ch CNAME → selector2-vullyleslacs-ch01cc._domainkey.vllacs.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5471":{"name":"Bettens","canton":"Kanton Waadt","domain":"bluewin.ch","mx":["mx01.p.bluenet.ch","mx02.p.bluenet.ch"],"spf":"v=spf1 redirect=_spf.bluewin.ch","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5472":{"name":"Bournens","canton":"Kanton Waadt","domain":"bournens.ch","mx":["bournens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bournens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5473":{"name":"Boussens","canton":"Kanton Waadt","domain":"boussens.ch","mx":["boussens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX boussens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5474":{"name":"La Chaux (Cossonay)","canton":"Kanton Waadt","domain":"lachaux.ch","mx":["lachaux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com include:spf.infomaniak.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lachaux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5475":{"name":"Chavannes-le-Veyron","canton":"Kanton Waadt","domain":"chavannes-le-veyron.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5476":{"name":"Chevilly","canton":"Kanton Waadt","domain":"chevilly.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5477":{"name":"Cossonay","canton":"Kanton Waadt","domain":"cossonay.ch","mx":["cossonay-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:145.232.246.190 ip4:185.54.6.105 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cossonay-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5479":{"name":"Cuarnens","canton":"Kanton Waadt","domain":"cuarnens.ch","mx":["cuarnens-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:62.202.19.61 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cuarnens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5480":{"name":"Daillens","canton":"Kanton Waadt","domain":"daillens.ch","mx":["daillens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX daillens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.daillens.ch CNAME → selector1-daillens-ch._domainkey.daillens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.daillens.ch CNAME → selector2-daillens-ch._domainkey.daillens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5481":{"name":"Dizy","canton":"Kanton Waadt","domain":"dizy.ch","mx":["dizy-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX dizy-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5482":{"name":"Eclépens","canton":"Kanton Waadt","domain":"eclepens.ch","mx":["eclepens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eclepens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5483":{"name":"Ferreyres","canton":"Kanton Waadt","domain":"ferreyres.ch","mx":["mail01.swisscenter.com"],"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5484":{"name":"Gollion","canton":"Kanton Waadt","domain":"gollion.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5485":{"name":"Grancy","canton":"Kanton Waadt","domain":"grancy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5486":{"name":"L'Isle","canton":"Kanton Waadt","domain":"lisle.ch","mx":["lisle-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lisle-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5487":{"name":"Lussery-Villars","canton":"Kanton Waadt","domain":"lussery-villars.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5488":{"name":"Mauraz","canton":"Kanton Waadt","domain":"mauraz.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5489":{"name":"Mex (VD)","canton":"Kanton Waadt","domain":"mex.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5490":{"name":"Moiry","canton":"Kanton Waadt","domain":"moiry.ch","mx":["mail.moiry.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch mx a a:smtp-sh.infomaniak.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5491":{"name":"Mont-la-Ville","canton":"Kanton Waadt","domain":"mont-la-ville.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5492":{"name":"Montricher","canton":"Kanton Waadt","domain":"montricher.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5493":{"name":"Orny","canton":"Kanton Waadt","domain":"orny.ch","mx":["orny-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.199.52.153 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX orny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.orny.ch CNAME → selector1-orny-ch._domainkey.communeorny.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.orny.ch CNAME → selector2-orny-ch._domainkey.communeorny.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5495":{"name":"Penthalaz","canton":"Kanton Waadt","domain":"penthalaz.ch","mx":["cloud7.spamtitan.com","cloud8.spamtitan.com"],"spf":"v=spf1 mx mx:rcv.ch include:relay.mail.infomaniak.ch include:_spf_cd.spamtitan.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5496":{"name":"Penthaz","canton":"Kanton Waadt","domain":"penthaz.ch","mx":["penthaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX penthaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.penthaz.ch CNAME → selector1-penthaz-ch._domainkey.penthaz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.penthaz.ch CNAME → selector2-penthaz-ch._domainkey.penthaz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5497":{"name":"Pompaples","canton":"Kanton Waadt","domain":"pompaples.ch","mx":["pompaples-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX pompaples-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5498":{"name":"La Sarraz","canton":"Kanton Waadt","domain":"lasarraz.ch","mx":["lasarraz-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a:webcms.ruf.ch include:spf.ganesh-hosting.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lasarraz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5499":{"name":"Senarclens","canton":"Kanton Waadt","domain":"senarclens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5501":{"name":"Sullens","canton":"Kanton Waadt","domain":"sullens.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:spf.evok.ch ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5503":{"name":"Vufflens-la-Ville","canton":"Kanton Waadt","domain":"vufflens-la-ville.ch","mx":["vufflenslaville-ch02j.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vufflenslaville-ch02j.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5511":{"name":"Assens","canton":"Kanton Waadt","domain":"assens.ch","mx":["assens-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.14.23.22 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX assens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5512":{"name":"Bercher","canton":"Kanton Waadt","domain":"bercher-vd.ch","mx":["berchervd-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:185.54.6.111 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX berchervd-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bercher-vd.ch CNAME → selector1-berchervd-ch01i._domainkey.greffebercher.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bercher-vd.ch CNAME → selector2-berchervd-ch01i._domainkey.greffebercher.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5514":{"name":"Bottens","canton":"Kanton Waadt","domain":"bottens.ch","mx":["bottens-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.200.241.130 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bottens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bottens.ch CNAME → selector1-bottens-ch._domainkey.communebottens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bottens.ch CNAME → selector2-bottens-ch._domainkey.communebottens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5515":{"name":"Bretigny-sur-Morrens","canton":"Kanton Waadt","domain":"bretigny.ch","mx":["bretigny-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX bretigny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5516":{"name":"Cugy (VD)","canton":"Kanton Waadt","domain":"cugy-vd.ch","mx":["cugyvd-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cugyvd-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cugy-vd.ch CNAME → selector1-cugyvd-ch01b._domainkey.communecugy.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cugy-vd.ch CNAME → selector2-cugyvd-ch01b._domainkey.communecugy.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5518":{"name":"Echallens","canton":"Kanton Waadt","domain":"echallens.ch","mx":["mx1.mtaroutes.com","mx2.mtaroutes.com","mx3.mtaroutes.com","mx4.mtaroutes.com"],"spf":"v=spf1 include:spf1.ne.ch include:spf.mtaroutes.com include:spf.ganesh-hosting.ch ip4:185.214.154.116 -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5520":{"name":"Essertines-sur-Yverdon","canton":"Kanton Waadt","domain":"essertines-sur-yverdon.ch","mx":["essertinessuryverdon-ch02ee.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX essertinessuryverdon-ch02ee.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5521":{"name":"Etagnières","canton":"Kanton Waadt","domain":"etagnieres.ch","mx":["etagnieres-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.protection.outlook.com ip4:185.54.6.111 ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX etagnieres-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5522":{"name":"Fey","canton":"Kanton Waadt","domain":"fey-vd.ch","mx":["feyvd-ch0i.mail.protection.outlook.com"],"spf":"v=spf1 ip4:62.202.5.220 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX feyvd-ch0i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.fey-vd.ch CNAME → selector1-feyvd-ch0i._domainkey.communefey.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.fey-vd.ch CNAME → selector2-feyvd-ch0i._domainkey.communefey.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5523":{"name":"Froideville","canton":"Kanton Waadt","domain":"froideville.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 a mx a:mailgate.ti-informatique.com include:_spf.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5527":{"name":"Morrens (VD)","canton":"Kanton Waadt","domain":"morrens.ch","mx":["morrens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX morrens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5529":{"name":"Oulens-sous-Echallens","canton":"Kanton Waadt","domain":"oulens-sous-echallens.ch","mx":["oulenssousechallens-ch01ei.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX oulenssousechallens-ch01ei.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.oulens-sous-echallens.ch CNAME → selector1-oulenssousechallens-ch01ei._domainkey.oulenssousechallens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.oulens-sous-echallens.ch CNAME → selector2-oulenssousechallens-ch01ei._domainkey.oulenssousechallens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5530":{"name":"Pailly","canton":"Kanton Waadt","domain":"pailly.ch","mx":["pailly-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX pailly-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.pailly.ch CNAME → selector1-pailly-ch._domainkey.communepailly.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.pailly.ch CNAME → selector2-pailly-ch._domainkey.communepailly.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5531":{"name":"Penthéréaz","canton":"Kanton Waadt","domain":"penthereaz.ch","mx":["penthereaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX penthereaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5533":{"name":"Poliez-Pittet","canton":"Kanton Waadt","domain":"poliez-pittet.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5534":{"name":"Rueyres","canton":"Kanton Waadt","domain":"rueyres.ch","mx":["cm.cleanmail.ch"],"spf":"v=spf1 include:spf.fastnet.ch include:spf.sogomail.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"cleanmail"},"5535":{"name":"Saint-Barthélemy (VD)","canton":"Kanton Waadt","domain":"st-barthelemy.ch","mx":["stbarthelemy-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:46.14.27.30/32 ip4:193.246.38.134/32 ip4:164.128.171.231/32 include:spf.protection.outlook.com ?all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stbarthelemy-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.st-barthelemy.ch CNAME → selector1-stbarthelemy-ch0e._domainkey.communedestbarthelemy.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.st-barthelemy.ch CNAME → selector2-stbarthelemy-ch0e._domainkey.communedestbarthelemy.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5537":{"name":"Villars-le-Terroir","canton":"Kanton Waadt","domain":"villars-le-terroir.ch","mx":["villarsleterroir-ch01ie.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX villarsleterroir-ch01ie.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5539":{"name":"Vuarrens","canton":"Kanton Waadt","domain":"vuarrens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5540":{"name":"Montilliez","canton":"Kanton Waadt","domain":"montilliez.ch","mx":["mailfilter.pinhaotec.com"],"spf":"v=spf1 mx ip4:5.1.96.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5541":{"name":"Goumoëns","canton":"Kanton Waadt","domain":"goumoens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5551":{"name":"Bonvillars","canton":"Kanton Waadt","domain":"bonvillars.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5552":{"name":"Bullet","canton":"Kanton Waadt","domain":"bullet.ch","mx":["bullet-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bullet-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bullet.ch CNAME → selector1-bullet-ch._domainkey.communebullet.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bullet.ch CNAME → selector2-bullet-ch._domainkey.communebullet.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5553":{"name":"Champagne","canton":"Kanton Waadt","domain":"champagne.ch","mx":["champagne-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX champagne-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5554":{"name":"Concise","canton":"Kanton Waadt","domain":"concise.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5555":{"name":"Corcelles-près-Concise","canton":"Kanton Waadt","domain":"corcelles-concise.ch","mx":["corcellesconcise-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX corcellesconcise-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.corcelles-concise.ch CNAME → selector1-corcellesconcise-ch02c._domainkey.corcellesconcise.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.corcelles-concise.ch CNAME → selector2-corcellesconcise-ch02c._domainkey.corcellesconcise.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5556":{"name":"Fiez","canton":"Kanton Waadt","domain":"fiez.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5557":{"name":"Fontaines-sur-Grandson","canton":"Kanton Waadt","domain":"fontaines-sur-grandson.ch","mx":["mail.fontaines-sur-grandson.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5559":{"name":"Giez","canton":"Kanton Waadt","domain":"giez.ch","mx":["giez-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all include:mailgw.tizoo.com","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX giez-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.giez.ch CNAME → selector1-giez-ch._domainkey.communegiez.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.giez.ch CNAME → selector2-giez-ch._domainkey.communegiez.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5560":{"name":"Grandevent","canton":"Kanton Waadt","domain":"grandevent.ch","mx":["grandevent-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grandevent-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.grandevent.ch CNAME → selector1-grandevent-ch._domainkey.grandeventch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.grandevent.ch CNAME → selector2-grandevent-ch._domainkey.grandeventch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5561":{"name":"Grandson","canton":"Kanton Waadt","domain":"grandson.ch","mx":["mta.witecom.ch"],"spf":"v=spf1 mx include:spf.witecom.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5562":{"name":"Mauborget","canton":"Kanton Waadt","domain":"mauborget.ch","mx":["mx1.swisscenter.com"],"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5563":{"name":"Mutrux","canton":"Kanton Waadt","domain":"mutrux.swiss","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5564":{"name":"Novalles","canton":"Kanton Waadt","domain":"novalles.ch","mx":["mail.horus.ch"],"spf":"v=spf1 include:spf.horus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5565":{"name":"Onnens (VD)","canton":"Kanton Waadt","domain":"onnens.ch","mx":["mta.witecom.ch"],"spf":"v=spf1 include:spf.witecom.ch ?all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5566":{"name":"Provence","canton":"Kanton Waadt","domain":"provence.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5568":{"name":"Sainte-Croix","canton":"Kanton Waadt","domain":"sainte-croix.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 include:_spf_eucentral1.prod.hydra.sophos.com include:_spf.blk.ymc.swiss -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"}],"gateway":"sophos"},"5571":{"name":"Tévenon","canton":"Kanton Waadt","domain":"tevenon.ch","mx":["mta.witecom.ch"],"spf":"v=spf1 mx include:spf.witecom.ch include:spf.customer.swiss-egov.cloud ?all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5581":{"name":"Belmont-sur-Lausanne","canton":"Kanton Waadt","domain":"belmont.ch","mx":["etrn-01.vtx.ch","mail.pully.ch"],"spf":"v=spf1 ip4:193.246.106.0/23 ip4:145.232.253.0/24 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5582":{"name":"Cheseaux-sur-Lausanne","canton":"Kanton Waadt","domain":"cheseaux.ch","mx":["cheseaux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cheseaux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5583":{"name":"Crissier","canton":"Kanton Waadt","domain":"crissier.ch","mx":["crissier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.mailjet.com include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX crissier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5584":{"name":"Epalinges","canton":"Kanton Waadt","domain":"epalinges.ch","mx":["epalinges-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a:mail.epalinges.ch +a:www.epalinges.ch include:spf1.ne.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX epalinges-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.epalinges.ch CNAME → selector1-epalinges-ch._domainkey.epalingesch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.epalinges.ch CNAME → selector2-epalinges-ch._domainkey.epalingesch.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5585":{"name":"Jouxtens-Mézery","canton":"Kanton Waadt","domain":"jouxtens-mezery.ch","mx":["jouxtensmezery-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX jouxtensmezery-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.jouxtens-mezery.ch CNAME → selector1-jouxtensmezery-ch02b._domainkey.communejouxtensmezery.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.jouxtens-mezery.ch CNAME → selector2-jouxtensmezery-ch02b._domainkey.communejouxtensmezery.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5586":{"name":"Lausanne","canton":"Kanton Waadt","domain":"lausanne.ch","mx":["mxvdl.lausanne.ch"],"spf":"v=spf1 ip4:193.200.220.0/24 mx:lausanne.ch include:_spf.general.transactional-mail-a.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5587":{"name":"Le Mont-sur-Lausanne","canton":"Kanton Waadt","domain":"lemontsurlausanne.ch","mx":["remote.lemontsurlausanne.ch"],"spf":"v=spf1 a mx a:mta-gw.evok.ch ip4:213.200.229.44 ip4:94.103.98.202 ip4:185.54.6.105 ip4:46.14.178.178 include:spf.infomaniak.ch ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5588":{"name":"Paudex","canton":"Kanton Waadt","domain":"paudex.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5589":{"name":"Prilly","canton":"Kanton Waadt","domain":"prilly.ch","mx":["mail.prilly.ch","mail2.prilly.ch"],"spf":"v=spf1 a mx include:_spf.i-web.ch include:spf.mailpro.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5590":{"name":"Pully","canton":"Kanton Waadt","domain":"pully.ch","mx":["etrn-01.vtx.ch","mail.pully.ch"],"spf":"v=spf1 ip4:193.246.106.0/23 ip4:145.232.253.0/24 ip4:148.196.186.40 ip4:205.201.133.57 include:spf1.ne.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"5591":{"name":"Renens (VD)","canton":"Kanton Waadt","domain":"renens.ch","mx":["renens-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.29.0.13 ip4:51.107.19.113 include:spf.protection.outlook.com include:spf2.sbr-master.net include:spf1.ne.ch include:spf.infomaniak.ch include:spf-de.emailsignatures365.com a:b.spf.service-now.com a:c.spf.service-now.com a:d.spf.service-now.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX renens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5592":{"name":"Romanel-sur-Lausanne","canton":"Kanton Waadt","domain":"romanel-sur-lausanne.ch","mx":["romanelsurlausanne-ch01ii.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.komodo.ch ip4:46.14.212.184/29 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX romanelsurlausanne-ch01ii.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.romanel-sur-lausanne.ch CNAME → selector1-romanelsurlausanne-ch01ii._domainkey.romanelsurlausanne.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.romanel-sur-lausanne.ch CNAME → selector2-romanelsurlausanne-ch01ii._domainkey.romanelsurlausanne.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5601":{"name":"Chexbres","canton":"Kanton Waadt","domain":"chexbres.ch","mx":["chexbres-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:193.8.140.198/32 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chexbres-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5604":{"name":"Forel (Lavaux)","canton":"Kanton Waadt","domain":"forel.ch","mx":["forel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX forel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5606":{"name":"Lutry","canton":"Kanton Waadt","domain":"lutry.ch","mx":["mail.lutry.rcv.ch","mail2.lutry.rcv.ch"],"spf":"v=spf1 a mx include:spf.vtx.ch include:spf.rcv.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5607":{"name":"Puidoux","canton":"Kanton Waadt","domain":"puidoux.ch","mx":["puidoux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX puidoux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5609":{"name":"Rivaz","canton":"Kanton Waadt","domain":"rivaz.ch","mx":["rivaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX rivaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5610":{"name":"Saint-Saphorin (Lavaux)","canton":"Kanton Waadt","domain":"saint-saphorin.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5611":{"name":"Savigny","canton":"Kanton Waadt","domain":"savigny.ch","mx":["savigny-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.rcv.ch ip4:185.54.6.105 include:_spf.webforge.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX savigny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.savigny.ch CNAME → selector1-savigny-ch._domainkey.communedesavigny.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.savigny.ch CNAME → selector2-savigny-ch._domainkey.communedesavigny.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5613":{"name":"Bourg-en-Lavaux","canton":"Kanton Waadt","domain":"b-e-l.ch","mx":["cust4434-1.in.mailcontrol.com","cust4434-2.in.mailcontrol.com"],"spf":"v=spf1 include:fwdsc.swisscenter.com include:mailcontrol.com include:servicehoster.ch a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com ip4:185.54.6.105 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5621":{"name":"Aclens","canton":"Kanton Waadt","domain":"aclens.ch","mx":["aclens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX aclens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.aclens.ch CNAME → selector1-aclens-ch._domainkey.communeaclens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.aclens.ch CNAME → selector2-aclens-ch._domainkey.communeaclens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5622":{"name":"Bremblens","canton":"Kanton Waadt","domain":"bremblens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5623":{"name":"Buchillon","canton":"Kanton Waadt","domain":"buchillon.ch","mx":["buchillon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX buchillon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5624":{"name":"Bussigny","canton":"Kanton Waadt","domain":"bussigny.ch","mx":["bussigny-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com include:spf.ganesh-hosting.ch ip4:212.71.120.144/28 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bussigny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bussigny.ch CNAME → selector1-bussigny-ch._domainkey.bussignych.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bussigny.ch CNAME → selector2-bussigny-ch._domainkey.bussignych.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5627":{"name":"Chavannes-près-Renens","canton":"Kanton Waadt","domain":"chavannes.ch","mx":["chavannes-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf-de.emailsignatures365.com ip4:212.71.120.144/28 ip4:185.25.192.92/32 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chavannes-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.chavannes.ch CNAME → selector1-chavannes-ch._domainkey.communechavannes.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.chavannes.ch CNAME → selector2-chavannes-ch._domainkey.communechavannes.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5628":{"name":"Chigny","canton":"Kanton Waadt","domain":"chigny.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.vtx.ch ip4:185.54.6.105 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5629":{"name":"Clarmont","canton":"Kanton Waadt","domain":"clarmont.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5631":{"name":"Denens","canton":"Kanton Waadt","domain":"denens.ch","mx":["denens-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.mailhostbox.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX denens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5632":{"name":"Denges","canton":"Kanton Waadt","domain":"denges.ch","mx":["denges-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.customer.swiss-egov.cloud -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX denges-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5633":{"name":"Echandens","canton":"Kanton Waadt","domain":"echandens.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.16 include:spf.eadmin-solutions.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5634":{"name":"Echichens","canton":"Kanton Waadt","domain":"echichens.ch","mx":["echichens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX echichens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5635":{"name":"Ecublens (VD)","canton":"Kanton Waadt","domain":"ecublens.ch","mx":["ecublens-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:62.2.153.110 include:spf.ganesh-hosting.ch include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mailjet.com include:spf-eu.emailsignatures365.com a:c.spf.service-now.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ecublens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ecublens.ch CNAME → selector1-ecublens-ch._domainkey.communeecublens.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ecublens.ch CNAME → selector2-ecublens-ch._domainkey.communeecublens.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5636":{"name":"Etoy","canton":"Kanton Waadt","domain":"etoy.ch","mx":["etoy-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.14.144.46 include:spf.protection.outlook.com include:_spf.bluewin.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX etoy-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.etoy.ch CNAME → selector1-etoy-ch._domainkey.etoy.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.etoy.ch CNAME → selector2-etoy-ch._domainkey.etoy.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5637":{"name":"Lavigny","canton":"Kanton Waadt","domain":"lavigny.ch","mx":["alt1.aspmx.l.google.com","alt2.aspmx.l.google.com","alt3.aspmx.l.google.com","alt4.aspmx.l.google.com","aspmx.l.google.com"],"spf":"v=spf1 include:_spf.google.com ~all","provider":"google","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"mx","detail":"MX alt1.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX alt2.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX alt3.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX alt4.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX aspmx.l.google.com matches google"},{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5638":{"name":"Lonay","canton":"Kanton Waadt","domain":"lonay.ch","mx":["lonay-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lonay-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5639":{"name":"Lully (VD)","canton":"Kanton Waadt","domain":"lully.ch","mx":["lully-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lully-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5640":{"name":"Lussy-sur-Morges","canton":"Kanton Waadt","domain":"lussy-sur-morges.ch","mx":["lussysurmorges-ch01cc.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lussysurmorges-ch01cc.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5642":{"name":"Morges","canton":"Kanton Waadt","domain":"morges.ch","mx":["mx1.hc1035-98.eu.iphmx.com","mx2.hc1035-98.eu.iphmx.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com include:spf1.ne.ch ip4:159.100.243.117 ip4:185.19.28.207 exists:%{i}.spf.hc1035-98.eu.iphmx.com ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":70.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"cisco"},"5643":{"name":"Préverenges","canton":"Kanton Waadt","domain":"preverenges.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 ip4:194.209.244.213 ip4:37.0.59.14 include:spf.infomaniak.ch include:_spf.i-web.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5645":{"name":"Romanel-sur-Morges","canton":"Kanton Waadt","domain":"romanel-sur-morges.ch","mx":["romanelsurmorges-ch01ii.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:spf.infomaniak.ch include:spf.customer.swiss-egov.cloud include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX romanelsurmorges-ch01ii.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.romanel-sur-morges.ch CNAME → selector1-romanelsurmorges-ch01ii._domainkey.romanelsurmorgesch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.romanel-sur-morges.ch CNAME → selector2-romanelsurmorges-ch01ii._domainkey.romanelsurmorgesch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5646":{"name":"Saint-Prex","canton":"Kanton Waadt","domain":"saint-prex.ch","mx":["saintprex-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX saintprex-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5648":{"name":"Saint-Sulpice (VD)","canton":"Kanton Waadt","domain":"st-sulpice.ch","mx":["mail.rcv.ch","mail2.rcv.ch","stsulpice-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.rcv.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stsulpice-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5649":{"name":"Tolochenaz","canton":"Kanton Waadt","domain":"tolochenaz.ch","mx":["tolochenaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tolochenaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5650":{"name":"Vaux-sur-Morges","canton":"Kanton Waadt","domain":"vaux-sur-morges.ch","mx":["mta-gw.infomaniak.ch","vauxsurmorges-ch01bb.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"mx","detail":"MX vauxsurmorges-ch01bb.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vaux-sur-morges.ch CNAME → selector1-vauxsurmorges-ch01bb._domainkey.vauxsurmorges.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vaux-sur-morges.ch CNAME → selector2-vauxsurmorges-ch01bb._domainkey.vauxsurmorges.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5651":{"name":"Villars-Sainte-Croix","canton":"Kanton Waadt","domain":"villars-sainte-croix.ch","mx":["villarssaintecroix-ch01i1e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX villarssaintecroix-ch01i1e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector2._domainkey.villars-sainte-croix.ch CNAME → selector2-villarssaintecroix-ch01i1e._domainkey.communevillarssaintecroix.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5652":{"name":"Villars-sous-Yens","canton":"Kanton Waadt","domain":"villars-sous-yens.ch","mx":["villarssousyens-ch01i1b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX villarssousyens-ch01i1b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5653":{"name":"Vufflens-le-Château","canton":"Kanton Waadt","domain":"vufflens-le-chateau.ch","mx":["vufflenslechateau-ch02j.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vufflenslechateau-ch02j.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5654":{"name":"Vullierens","canton":"Kanton Waadt","domain":"vullierens.ch","mx":["vullierens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vullierens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5655":{"name":"Yens","canton":"Kanton Waadt","domain":"yens.ch","mx":["yens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX yens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5656":{"name":"Hautemorges","canton":"Kanton Waadt","domain":"hautemorges.ch","mx":["hautemorges-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:84.253.10.182 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX hautemorges-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.hautemorges.ch CNAME → selector1-hautemorges-ch._domainkey.communehautemorges.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.hautemorges.ch CNAME → selector2-hautemorges-ch._domainkey.communehautemorges.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5661":{"name":"Boulens","canton":"Kanton Waadt","domain":"boulens.ch","mx":["mail.boulens.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5663":{"name":"Bussy-sur-Moudon","canton":"Kanton Waadt","domain":"bussy-sur-moudon.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5665":{"name":"Chavannes-sur-Moudon","canton":"Kanton Waadt","domain":"chavannes-sur-moudon.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.trisinformatique.com include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5669":{"name":"Curtilles","canton":"Kanton Waadt","domain":"curtilles.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5671":{"name":"Dompierre (VD)","canton":"Kanton Waadt","domain":"dompierre-vd.ch","mx":["dompierrevd-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX dompierrevd-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5673":{"name":"Hermenches","canton":"Kanton Waadt","domain":"hermenches.ch","mx":["hermenches-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX hermenches-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5674":{"name":"Lovatens","canton":"Kanton Waadt","domain":"lovatens.ch","mx":["srv.lovatens.ch"],"spf":"v=spf1 a mx include:spf.swizzonic-mail.ch include:_spf.blk.ymc.swiss include:_spf.i-web.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5675":{"name":"Lucens","canton":"Kanton Waadt","domain":"lucens.ch","mx":["lucens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:185.54.6.111 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lucens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5678":{"name":"Moudon","canton":"Kanton Waadt","domain":"moudon.ch","mx":["moudon-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf1.net4all.ch ip4:212.71.120.144/28 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX moudon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5680":{"name":"Ogens","canton":"Kanton Waadt","domain":"ogens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5683":{"name":"Prévonloup","canton":"Kanton Waadt","domain":"prevonloup.ch","mx":["alt1.aspmx.l.google.com","alt2.aspmx.l.google.com","aspmx.l.google.com","aspmx2.googlemail.com","aspmx3.googlemail.com","aspmx4.googlemail.com","aspmx5.googlemail.com"],"spf":"v=spf1 include:_spf.google.com ~all","provider":"google","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"mx","detail":"MX alt1.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX alt2.aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX aspmx.l.google.com matches google"},{"kind":"mx","detail":"MX aspmx2.googlemail.com matches google"},{"kind":"mx","detail":"MX aspmx3.googlemail.com matches google"},{"kind":"mx","detail":"MX aspmx4.googlemail.com matches google"},{"kind":"mx","detail":"MX aspmx5.googlemail.com matches google"},{"kind":"spf","detail":"SPF include:_spf.google.com matches google"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"},{"kind":"asn","detail":"ASN 15169 matches google"}]},"5684":{"name":"Rossenges","canton":"Kanton Waadt","domain":"rossenges.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5688":{"name":"Syens","canton":"Kanton Waadt","domain":"syens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5690":{"name":"Villars-le-Comte","canton":"Kanton Waadt","domain":"villars-le-comte.ch","mx":["mx1.swisscenter.com"],"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5692":{"name":"Vucherens","canton":"Kanton Waadt","domain":"vucherens.ch","mx":["vucherens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vucherens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5693":{"name":"Montanaire","canton":"Kanton Waadt","domain":"montanaire.ch","mx":["montanaire-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com include:mailgun.org -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX montanaire-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5701":{"name":"Arnex-sur-Nyon","canton":"Kanton Waadt","domain":"arnex-sur-nyon.ch","mx":["mx4.safemail.ch","mx5.safemail.ch"],"spf":"v=spf1 +a +mx +ip4:195.70.7.126 include:dfinet.ch +ip4:195.70.7.126 +ip4:195.70.12.114 +include:smtp.dfinet.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5702":{"name":"Arzier-Le Muids","canton":"Kanton Waadt","domain":"arzier.ch","mx":["arzier-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX arzier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5703":{"name":"Bassins","canton":"Kanton Waadt","domain":"bassins.ch","mx":["bassins-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX bassins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5704":{"name":"Begnins","canton":"Kanton Waadt","domain":"begnins.ch","mx":["begnins-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.129.53.73 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX begnins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.begnins.ch CNAME → selector1-begnins-ch._domainkey.communebegnins.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.begnins.ch CNAME → selector2-begnins-ch._domainkey.communebegnins.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5705":{"name":"Bogis-Bossey","canton":"Kanton Waadt","domain":"bogis-bossey.ch","mx":["bogisbossey-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX bogisbossey-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5706":{"name":"Borex","canton":"Kanton Waadt","domain":"borex.ch","mx":["borex-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX borex-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.borex.ch CNAME → selector1-borex-ch._domainkey.communeborex.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.borex.ch CNAME → selector2-borex-ch._domainkey.communeborex.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5707":{"name":"Chavannes-de-Bogis","canton":"Kanton Waadt","domain":"chavannes-de-bogis.ch","mx":["chavannesdebogis-ch02cb.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chavannesdebogis-ch02cb.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.chavannes-de-bogis.ch CNAME → selector1-chavannesdebogis-ch02cb._domainkey.communecdb.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.chavannes-de-bogis.ch CNAME → selector2-chavannesdebogis-ch02cb._domainkey.communecdb.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5708":{"name":"Chavannes-des-Bois","canton":"Kanton Waadt","domain":"chavannes-des-bois.ch","mx":["chavannesdesbois-ch02cc.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX chavannesdesbois-ch02cc.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5709":{"name":"Chéserex","canton":"Kanton Waadt","domain":"cheserex.ch","mx":["cheserex-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cheserex-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cheserex.ch CNAME → selector1-cheserex-ch._domainkey.communecheserex.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cheserex.ch CNAME → selector2-cheserex-ch._domainkey.communecheserex.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5710":{"name":"Coinsins","canton":"Kanton Waadt","domain":"coinsins.ch","mx":["coinsins-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX coinsins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5711":{"name":"Commugny","canton":"Kanton Waadt","domain":"commugny.ch","mx":["commugny-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:159.100.243.181 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX commugny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5712":{"name":"Coppet","canton":"Kanton Waadt","domain":"coppet.ch","mx":["coppet-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX coppet-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5713":{"name":"Crans (VD)","canton":"Kanton Waadt","domain":"cransvd.ch","mx":["cransvd-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX cransvd-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5714":{"name":"Crassier","canton":"Kanton Waadt","domain":"crassier.ch","mx":["crassier-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.infomaniak.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX crassier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.crassier.ch CNAME → selector1-crassier-ch._domainkey.communecrassier.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.crassier.ch CNAME → selector2-crassier-ch._domainkey.communecrassier.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5715":{"name":"Duillier","canton":"Kanton Waadt","domain":"duillier.ch","mx":["duillier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX duillier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5716":{"name":"Eysins","canton":"Kanton Waadt","domain":"eysins.ch","mx":["eysins-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eysins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5717":{"name":"Founex","canton":"Kanton Waadt","domain":"founex.ch","mx":["founex-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf.eadmin-solutions.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX founex-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5718":{"name":"Genolier","canton":"Kanton Waadt","domain":"genolier.ch","mx":["genolier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.eadmin-solutions.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX genolier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5719":{"name":"Gingins","canton":"Kanton Waadt","domain":"gingins.ch","mx":["gingins-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 ip4:185.54.6.105 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX gingins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5720":{"name":"Givrins","canton":"Kanton Waadt","domain":"givrins.ch","mx":["givrins-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:146.4.37.74 ip4:185.54.6.105 ip4:193.34.137.65 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX givrins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5721":{"name":"Gland","canton":"Kanton Waadt","domain":"gland.ch","mx":["gland-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:37.0.35.222 ip4:94.103.98.202 include:spf.protection.outlook.com include:spf.infomaniak.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gland-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gland.ch CNAME → selector1-gland-ch._domainkey.municipalitedegland.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gland.ch CNAME → selector2-gland-ch._domainkey.municipalitedegland.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5722":{"name":"Grens","canton":"Kanton Waadt","domain":"grens.ch","mx":["grens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.grens.ch CNAME → selector1-grens-ch._domainkey.grensch.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.grens.ch CNAME → selector2-grens-ch._domainkey.grensch.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5723":{"name":"Mies","canton":"Kanton Waadt","domain":"mies.ch","mx":["mies-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:193.34.137.65 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mies-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5724":{"name":"Nyon","canton":"Kanton Waadt","domain":"nyon.ch","mx":["mail.rcv.ch","mail2.rcv.ch"],"spf":"v=spf1 MX a:iomedia-smtp.infomaniak.ch include:spf.infomaniak.ch include:spf.rcv.ch include:spf1.ne.ch include:spf.protection.outlook.com -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5725":{"name":"Prangins","canton":"Kanton Waadt","domain":"prangins.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com","prangins-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:109.164.235.43 ip4:194.209.244.213 ip4:185.48.146.91 ip4:185.54.6.105 a:dispatch-eu.ppe-hosted.com include:spf.protection.outlook.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX prangins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.prangins.ch CNAME → selector1-prangins-ch._domainkey.infologdata.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.prangins.ch CNAME → selector2-prangins-ch._domainkey.infologdata.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"proofpoint"},"5726":{"name":"La Rippe","canton":"Kanton Waadt","domain":"larippe.ch","mx":["larippe-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX larippe-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.larippe.ch CNAME → selector1-larippe-ch._domainkey.communelarippe.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.larippe.ch CNAME → selector2-larippe-ch._domainkey.communelarippe.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5727":{"name":"Saint-Cergue","canton":"Kanton Waadt","domain":"st-cergue.ch","mx":["stcergue-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stcergue-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.st-cergue.ch CNAME → selector1-stcergue-ch0e._domainkey.communestcergue.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.st-cergue.ch CNAME → selector2-stcergue-ch0e._domainkey.communestcergue.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5728":{"name":"Signy-Avenex","canton":"Kanton Waadt","domain":"signy-avenex.ch","mx":["mx.swizzonic.email"],"spf":"v=spf1 include:spf.webapps.net ip4:193.34.137.65 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5729":{"name":"Tannay","canton":"Kanton Waadt","domain":"tannay.ch","mx":["tannay-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.cybercloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX tannay-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5730":{"name":"Trélex","canton":"Kanton Waadt","domain":"trelex.ch","mx":["trelex-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:83.172.203.166 include:spf.infomaniak.ch include:spf.protection.outlook.com ip4:185.54.6.105 ip4:193.34.137.65 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX trelex-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.trelex.ch CNAME → selector1-trelex-ch._domainkey.communetrelex.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.trelex.ch CNAME → selector2-trelex-ch._domainkey.communetrelex.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5731":{"name":"Le Vaud","canton":"Kanton Waadt","domain":"levaud.ch","mx":["levaud-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:newsletter.infomaniak.com include:amazonses.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX levaud-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:amazonses.com matches aws"},{"kind":"dkim","detail":"DKIM selector1._domainkey.levaud.ch CNAME → selector1-levaud-ch._domainkey.levaud.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.levaud.ch CNAME → selector2-levaud-ch._domainkey.levaud.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5732":{"name":"Vich","canton":"Kanton Waadt","domain":"vich.ch","mx":["vich-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vich-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5741":{"name":"L'Abergement","canton":"Kanton Waadt","domain":"labergement.ch","mx":["labergement-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.webforge.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX labergement-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5742":{"name":"Agiez","canton":"Kanton Waadt","domain":"agiez.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5743":{"name":"Arnex-sur-Orbe","canton":"Kanton Waadt","domain":"arnex-sur-orbe.ch","mx":["arnexsurorbe-ch01cc.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com include:_spf.webforge.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX arnexsurorbe-ch01cc.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5744":{"name":"Ballaigues","canton":"Kanton Waadt","domain":"ballaigues.ch","mx":["ballaigues-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.ganesh-hosting.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ballaigues-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.ballaigues.ch CNAME → selector1-ballaigues-ch._domainkey.communeballaigues.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.ballaigues.ch CNAME → selector2-ballaigues-ch._domainkey.communeballaigues.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5745":{"name":"Baulmes","canton":"Kanton Waadt","domain":"baulmes.ch","mx":["mta.witecom.ch"],"spf":"v=spf1 mx include:spf.witecom.ch -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5746":{"name":"Bavois","canton":"Kanton Waadt","domain":"bavois.ch","mx":["bavois-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bavois-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5747":{"name":"Bofflens","canton":"Kanton Waadt","domain":"bofflens.ch","mx":["bofflens-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bofflens-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5748":{"name":"Bretonnières","canton":"Kanton Waadt","domain":"bretonnieres.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5749":{"name":"Chavornay","canton":"Kanton Waadt","domain":"chavornay.ch","mx":["chavornay-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.153.189.8 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf1.ne.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chavornay-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.chavornay.ch CNAME → selector1-chavornay-ch._domainkey.chavornay.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.chavornay.ch CNAME → selector2-chavornay-ch._domainkey.chavornay.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5750":{"name":"Les Clées","canton":"Kanton Waadt","domain":"lesclees.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5752":{"name":"Croy","canton":"Kanton Waadt","domain":"croy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5754":{"name":"Juriens","canton":"Kanton Waadt","domain":"juriens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.eadmin-solutions.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5755":{"name":"Lignerolle","canton":"Kanton Waadt","domain":"lignerolle.ch","mx":["mx1.swisscenter.com"],"spf":"v=spf1 mx include:fwdsc.swisscenter.com -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5756":{"name":"Montcherand","canton":"Kanton Waadt","domain":"montcherand.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5757":{"name":"Orbe","canton":"Kanton Waadt","domain":"orbe.ch","mx":["orbe-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +include:relay.mailchannels.net +include:spf.ganesh-hosting.ch +include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":89.0,"classification_signals":[{"kind":"mx","detail":"MX orbe-ch.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5758":{"name":"La Praz","canton":"Kanton Waadt","domain":"lapraz.ch","mx":["mail.horus.ch"],"spf":"v=spf1 include:spf.horus.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5759":{"name":"Premier","canton":"Kanton Waadt","domain":"premier.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5760":{"name":"Rances","canton":"Kanton Waadt","domain":"rances.ch","mx":["rances-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX rances-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5761":{"name":"Romainmôtier-Envy","canton":"Kanton Waadt","domain":"romainmotier.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5762":{"name":"Sergey","canton":"Kanton Waadt","domain":"sergey.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5763":{"name":"Valeyres-sous-Rances","canton":"Kanton Waadt","domain":"valeyres-sous-rances.ch","mx":["valeyressousrances-ch02bc.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX valeyressousrances-ch02bc.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5764":{"name":"Vallorbe","canton":"Kanton Waadt","domain":"vallorbe.ch","mx":["vallorbe-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vallorbe-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5765":{"name":"Vaulion","canton":"Kanton Waadt","domain":"vaulion.ch","mx":["vaulion-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vaulion-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5766":{"name":"Vuiteboeuf","canton":"Kanton Waadt","domain":"vuiteboeuf.ch","mx":["vuiteboeuf-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vuiteboeuf-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vuiteboeuf.ch CNAME → selector1-vuiteboeuf-ch._domainkey.communevuiteboeuf.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vuiteboeuf.ch CNAME → selector2-vuiteboeuf-ch._domainkey.communevuiteboeuf.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5785":{"name":"Corcelles-le-Jorat","canton":"Kanton Waadt","domain":"corcelles-le-jorat.ch","mx":["corcelleslejorat-ch02cb.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.blk.ymc.swiss -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX corcelleslejorat-ch02cb.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5790":{"name":"Maracon","canton":"Kanton Waadt","domain":"maracon.ch","mx":["maracon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX maracon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5792":{"name":"Montpreveyres","canton":"Kanton Waadt","domain":"montpreveyres.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ip4:185.54.6.105 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5798":{"name":"Ropraz","canton":"Kanton Waadt","domain":"ropraz.ch","mx":["mail1.copperfasten.ch","mail2.copperfasten.ch"],"spf":"v=spf1 include:spf.eadmin-solutions.ch +a +mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5799":{"name":"Servion","canton":"Kanton Waadt","domain":"servion.ch","mx":["servion-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:193.34.137.65 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX servion-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.servion.ch CNAME → selector1-servion-ch._domainkey.communeservion.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.servion.ch CNAME → selector2-servion-ch._domainkey.communeservion.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5803":{"name":"Vulliens","canton":"Kanton Waadt","domain":"vulliens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5804":{"name":"Jorat-Menthue","canton":"Kanton Waadt","domain":"jorat-menthue.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5805":{"name":"Oron","canton":"Kanton Waadt","domain":"oron.ch","mx":["mail.cleanmail.ch"],"spf":"v=spf1 a mx ip4:178.174.94.211/29 ip4:193.8.140.198/32 ip4:185.54.6.105 ip4:193.34.137.65 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}],"gateway":"cleanmail"},"5806":{"name":"Jorat-Mézières","canton":"Kanton Waadt","domain":"jorat-mezieres.ch","mx":["owa.jorat-mezieres.ch"],"spf":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5812":{"name":"Champtauroz","canton":"Kanton Waadt","domain":"champtauroz.ch","mx":["champtauroz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX champtauroz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.champtauroz.ch CNAME → selector1-champtauroz-ch._domainkey.communechamptauroz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.champtauroz.ch CNAME → selector2-champtauroz-ch._domainkey.communechamptauroz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5813":{"name":"Chevroux","canton":"Kanton Waadt","domain":"chevroux.ch","mx":["chevroux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.eadmin-solutions.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX chevroux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5816":{"name":"Corcelles-près-Payerne","canton":"Kanton Waadt","domain":"corcelles.ch","mx":["corcelles-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX corcelles-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5817":{"name":"Grandcour","canton":"Kanton Waadt","domain":"grandcour.ch","mx":["grandcour-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grandcour-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5819":{"name":"Henniez","canton":"Kanton Waadt","domain":"commune-henniez.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5821":{"name":"Missy","canton":"Kanton Waadt","domain":"missy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5822":{"name":"Payerne","canton":"Kanton Waadt","domain":"payerne.ch","mx":["mail.rcv.ch","mail2.rcv.ch"],"spf":"v=spf1 include:spf.rcv.ch include:_spf.i-web.ch include:spf1.ne.ch include:spf.abacuscity.ch ip4:185.54.6.105 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5827":{"name":"Trey","canton":"Kanton Waadt","domain":"trey.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5828":{"name":"Treytorrens (Payerne)","canton":"Kanton Waadt","domain":"treytorrens.ch","mx":["mail.treytorrens.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5830":{"name":"Villarzel","canton":"Kanton Waadt","domain":"villarzel.ch","mx":["villarzel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX villarzel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5831":{"name":"Valbroye","canton":"Kanton Waadt","domain":"valbroye.ch","mx":["valbroye-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.14.6.235 ip4:213.193.110.206 include:spf.protection.outlook.com include:spf1.ne.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX valbroye-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"5841":{"name":"Château-d'Oex","canton":"Kanton Waadt","domain":"chateaudoex-admin.ch","mx":["mail.chateaudoex-admin.rcv.ch","mail2.chateaudoex-admin.rcv.ch"],"spf":"v=spf1 include:spf.rcv.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5842":{"name":"Rossinière","canton":"Kanton Waadt","domain":"rossiniere.ch","mx":["rossiniere-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rossiniere-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rossiniere.ch CNAME → selector1-rossiniere-ch._domainkey.communerossiniere.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rossiniere.ch CNAME → selector2-rossiniere-ch._domainkey.communerossiniere.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5843":{"name":"Rougemont","canton":"Kanton Waadt","domain":"rougemont.ch","mx":["rougemont-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX rougemont-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5851":{"name":"Allaman","canton":"Kanton Waadt","domain":"allaman.ch","mx":["allaman-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch mx ip4:185.48.146.23 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX allaman-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5852":{"name":"Bursinel","canton":"Kanton Waadt","domain":"bursinel.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5853":{"name":"Bursins","canton":"Kanton Waadt","domain":"bursins.ch","mx":["bursins-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx include:spf.customer.swiss-egov.cloud include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bursins-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5854":{"name":"Burtigny","canton":"Kanton Waadt","domain":"burtigny.ch","mx":["burtigny-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:185.54.6.105 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX burtigny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.burtigny.ch CNAME → selector1-burtigny-ch._domainkey.communeburtigny.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.burtigny.ch CNAME → selector2-burtigny-ch._domainkey.communeburtigny.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5855":{"name":"Dully","canton":"Kanton Waadt","domain":"dully.ch","mx":["dully-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX dully-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5856":{"name":"Essertines-sur-Rolle","canton":"Kanton Waadt","domain":"essertines-sur-rolle.ch","mx":["essertinessurrolle-ch02ee.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX essertinessurrolle-ch02ee.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5857":{"name":"Gilly","canton":"Kanton Waadt","domain":"gilly.ch","mx":["gilly-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gilly-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gilly.ch CNAME → selector1-gilly-ch._domainkey.gillyvd.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gilly.ch CNAME → selector2-gilly-ch._domainkey.gillyvd.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5858":{"name":"Luins","canton":"Kanton Waadt","domain":"luins.ch","mx":["luins-ch.mail.protection.outlook.com"],"spf":"v=spf1 +mx +a +include:mailgw.tizoo.com +ip4:212.147.66.228 +include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":91.0,"classification_signals":[{"kind":"mx","detail":"MX luins-ch.mail.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5859":{"name":"Mont-sur-Rolle","canton":"Kanton Waadt","domain":"mont-sur-rolle.ch","mx":["montsurrolle-ch01bb.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.ganesh-hosting.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX montsurrolle-ch01bb.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5860":{"name":"Perroy","canton":"Kanton Waadt","domain":"perroy.ch","mx":["perroy-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:46.14.234.46 include:spf.protection.outlook.com include:_spf.dellaro.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX perroy-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5861":{"name":"Rolle","canton":"Kanton Waadt","domain":"rolle.ch","mx":["rolle-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:185.54.6.111 ip4:81.62.216.237 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX rolle-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.rolle.ch CNAME → selector1-rolle-ch._domainkey.communederolle1180.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.rolle.ch CNAME → selector2-rolle-ch._domainkey.communederolle1180.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"5862":{"name":"Tartegnin","canton":"Kanton Waadt","domain":"tartegnin.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5863":{"name":"Vinzel","canton":"Kanton Waadt","domain":"vinzel.ch","mx":["vinzel.ch"],"spf":"v=spf1 ip4:5.182.248.186 include:tizoo.com ip4:5.182.248.144 ip4:212.71.120.144/28 +a +mx +ip4:212.147.66.228 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5871":{"name":"L'Abbaye","canton":"Kanton Waadt","domain":"labbaye.ch","mx":["labbaye-ch.mail.eo.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5872":{"name":"Le Chenit","canton":"Kanton Waadt","domain":"communeduchenit.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5873":{"name":"Le Lieu","canton":"Kanton Waadt","domain":"lelieu.ch","mx":["lelieu-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lelieu-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5882":{"name":"Chardonne","canton":"Kanton Waadt","domain":"chardonne.ch","mx":["chardonne-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:193.5.240.2 ip4:185.54.6.105 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX chardonne-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5883":{"name":"Corseaux","canton":"Kanton Waadt","domain":"corseaux.ch","mx":["corseaux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:spf1.ne.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX corseaux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5884":{"name":"Corsier-sur-Vevey","canton":"Kanton Waadt","domain":"corsier-sur-vevey.ch","mx":["corsiersurvevey-ch01ii.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX corsiersurvevey-ch01ii.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.corsier-sur-vevey.ch CNAME → selector1-corsiersurvevey-ch01ii._domainkey.communecorsiersurvevey.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.corsier-sur-vevey.ch CNAME → selector2-corsiersurvevey-ch01ii._domainkey.communecorsiersurvevey.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5885":{"name":"Jongny","canton":"Kanton Waadt","domain":"jongny.ch","mx":["jongny-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.rcv.ch include:spf.protection.outlook.com a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX jongny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.jongny.ch CNAME → selector1-jongny-ch._domainkey.jongnyvd.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.jongny.ch CNAME → selector2-jongny-ch._domainkey.jongnyvd.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5886":{"name":"Montreux","canton":"Kanton Waadt","domain":"montreux.ch","mx":["mail.rcv.ch","mail2.rcv.ch"],"spf":"v=spf1 include:spf.rcv.ch ip4:194.56.250.0/23 ip4:94.103.98.197/32 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5889":{"name":"La Tour-de-Peilz","canton":"Kanton Waadt","domain":"la-tour-de-peilz.ch","mx":["mail.rcv.ch","mail2.rcv.ch"],"spf":"v=spf1 include:spf.rcv.ch include:spf1.ne.ch include:_spf.i-web.ch a:mail.equateur.ch a:mail.netbiblio-mailer.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5890":{"name":"Vevey","canton":"Kanton Waadt","domain":"vevey.ch","mx":["vevey-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf1.ne.ch ip4:185.54.6.105 include:spf.infomaniak.com include:spf.protection.outlook.com include:spf.villedevevey.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX vevey-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vevey.ch CNAME → selector1-vevey-ch._domainkey.veveych.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vevey.ch CNAME → selector2-vevey-ch._domainkey.veveych.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5891":{"name":"Veytaux","canton":"Kanton Waadt","domain":"veytaux.ch","mx":["veytaux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX veytaux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5892":{"name":"Blonay - Saint-Légier","canton":"Kanton Waadt","domain":"bstl.ch","mx":["bstl-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bstl-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.bstl.ch CNAME → selector1-bstl-ch._domainkey.blonay.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.bstl.ch CNAME → selector2-bstl-ch._domainkey.blonay.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5902":{"name":"Belmont-sur-Yverdon","canton":"Kanton Waadt","domain":"belmont-sur-yverdon.ch","mx":["belmontsuryverdon-ch01ii.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX belmontsuryverdon-ch01ii.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5903":{"name":"Bioley-Magnoux","canton":"Kanton Waadt","domain":"bioley-magnoux.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5904":{"name":"Chamblon","canton":"Kanton Waadt","domain":"chamblon.ch","mx":["chamblon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX chamblon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.chamblon.ch CNAME → selector1-chamblon-ch._domainkey.chamblon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.chamblon.ch CNAME → selector2-chamblon-ch._domainkey.chamblon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5905":{"name":"Champvent","canton":"Kanton Waadt","domain":"champvent.ch","mx":["champvent-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX champvent-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"5907":{"name":"Chavannes-le-Chêne","canton":"Kanton Waadt","domain":"chavannes-le-chene.ch","mx":["mx1.spamvor.com","mx2.spamvor.com"],"spf":"v=spf1 include:_spf.ch-dns.net +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"spamvor"},"5908":{"name":"Chêne-Pâquier","canton":"Kanton Waadt","domain":"chene-paquier.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5909":{"name":"Cheseaux-Noréaz","canton":"Kanton Waadt","domain":"cheseaux-noreaz.ch","mx":["mta.witecom.ch"],"spf":"v=spf1 include:spf.witecom.ch include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5910":{"name":"Cronay","canton":"Kanton Waadt","domain":"cronay.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5911":{"name":"Cuarny","canton":"Kanton Waadt","domain":"cuarny.ch","mx":["cuarny-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX cuarny-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5912":{"name":"Démoret","canton":"Kanton Waadt","domain":"demoret.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5913":{"name":"Donneloye","canton":"Kanton Waadt","domain":"donneloye.ch","mx":["donneloye-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX donneloye-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5914":{"name":"Ependes (VD)","canton":"Kanton Waadt","domain":"ependesvd.ch","mx":["ependesvd-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ependesvd-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5919":{"name":"Mathod","canton":"Kanton Waadt","domain":"mathod.ch","mx":["mathod-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.211.226.99 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX mathod-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5921":{"name":"Molondin","canton":"Kanton Waadt","domain":"molondin.ch","mx":["molondin-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX molondin-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5922":{"name":"Montagny-près-Yverdon","canton":"Kanton Waadt","domain":"montagny.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5923":{"name":"Oppens","canton":"Kanton Waadt","domain":"oppens.ch","mx":["oppens.ch"],"spf":"v=spf1 ip4:5.182.248.151 include:tizoo.com +a +mx +ip4:212.147.66.228 +ip4:212.147.77.250 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"5924":{"name":"Orges","canton":"Kanton Waadt","domain":"orges.ch","mx":["orges-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX orges-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"5925":{"name":"Orzens","canton":"Kanton Waadt","domain":"orzens.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5926":{"name":"Pomy","canton":"Kanton Waadt","domain":"pomy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5928":{"name":"Rovray","canton":"Kanton Waadt","domain":"rovray.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5929":{"name":"Suchy","canton":"Kanton Waadt","domain":"suchy.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5930":{"name":"Suscévaz","canton":"Kanton Waadt","domain":"suscevaz.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.webforge.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5931":{"name":"Treycovagnes","canton":"Kanton Waadt","domain":"treycovagnes.ch","mx":["treycovagnes-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX treycovagnes-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"5932":{"name":"Ursins","canton":"Kanton Waadt","domain":"ursins.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"5933":{"name":"Valeyres-sous-Montagny","canton":"Kanton Waadt","domain":"valeyres-sous-montagny.ch","mx":["valeyressousmontagny-ch02bc.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX valeyressousmontagny-ch02bc.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5934":{"name":"Valeyres-sous-Ursins","canton":"Kanton Waadt","domain":"bluemail.ch","mx":["mx01.p.bluenet.ch","mx02.p.bluenet.ch"],"spf":"v=spf1 redirect=_spf.bluewin.ch","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5935":{"name":"Villars-Epeney","canton":"Kanton Waadt","domain":"villars-epeney.ch","mx":["mta-gw.infomaniak.ch"],"spf":"","provider":"infomaniak","category":"swiss-based","classification_confidence":80.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"}]},"5937":{"name":"Vugelles-La Mothe","canton":"Kanton Waadt","domain":"vugelleslamothe.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"5938":{"name":"Yverdon-les-Bains","canton":"Kanton Waadt","domain":"yverdon-les-bains.ch","mx":["mail.yverdon.rcv.ch","mail2.yverdon.rcv.ch"],"spf":"v=spf1 include:spf.rcv.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"5939":{"name":"Yvonand","canton":"Kanton Waadt","domain":"yvonand.ch","mx":["mta.witecom.ch"],"spf":"v=spf1 mx include:spf.witecom.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6002":{"name":"Brig-Glis","canton":"Kanton Wallis","domain":"brig-glis.ch","mx":["mx.rhone.ch"],"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.204.128/30 ip4:81.201.204.116/30 ip4:81.201.204.104/29 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6004":{"name":"Eggerberg","canton":"Kanton Wallis","domain":"eggerberg.ch","mx":["eggerberg-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX eggerberg-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6007":{"name":"Naters","canton":"Kanton Wallis","domain":"naters.ch","mx":["mail.naters.ch"],"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.204.188/30 ip4:81.201.204.48/29 include:spf.protection.outlook.com include:mx.dvbern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6008":{"name":"Ried-Brig","canton":"Kanton Wallis","domain":"ried-brig.ch","mx":["riedbrig-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX riedbrig-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6009":{"name":"Simplon","canton":"Kanton Wallis","domain":"gemeinde-simplon.ch","mx":["gemeindesimplon-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindesimplon-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6010":{"name":"Termen","canton":"Kanton Wallis","domain":"termen.ch","mx":["termen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX termen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6011":{"name":"Zwischbergen","canton":"Kanton Wallis","domain":"gondo.ch","mx":["gondo-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:81.201.201.8 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gondo-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6021":{"name":"Ardon","canton":"Kanton Wallis","domain":"ardon.ch","mx":["ardon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ardon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6022":{"name":"Chamoson","canton":"Kanton Wallis","domain":"chamoson.net","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 mx include:clients.ciges.ch ?all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6023":{"name":"Conthey","canton":"Kanton Wallis","domain":"conthey.ch","mx":["conthey-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.221.145.32 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX conthey-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6024":{"name":"Nendaz","canton":"Kanton Wallis","domain":"nendaz.org","mx":["nendaz-org.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.221.147.224/28 include:spf.protection.outlook.com include:spf.mailpro.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX nendaz-org.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.nendaz.org CNAME → selector1-nendaz-org._domainkey.nendaz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.nendaz.org CNAME → selector2-nendaz-org._domainkey.nendaz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6025":{"name":"Vétroz","canton":"Kanton Wallis","domain":"vetroz.ch","mx":["mgwa01.dlnet.ch","mgwb01.dlnet.ch"],"spf":"v=spf1 mx a a:mgwa01.dlnet.ch a:mgwb01.dlnet.ch -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6032":{"name":"Bourg-Saint-Pierre","canton":"Kanton Wallis","domain":"bourg-saint-pierre.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6033":{"name":"Liddes","canton":"Kanton Wallis","domain":"liddes.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch ip4:94.103.101.133 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6034":{"name":"Orsières","canton":"Kanton Wallis","domain":"orsieres.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 include:ti-informatique.com mx ?all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6035":{"name":"Sembrancher","canton":"Kanton Wallis","domain":"sembrancher.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 include:spf.infomaniak.ch mx -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6037":{"name":"Val de Bagnes","canton":"Kanton Wallis","domain":"valdebagnes.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch include:_spf.i-web.ch include:email.freshservice.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6052":{"name":"Bellwald","canton":"Kanton Wallis","domain":"bellwald.ch","mx":["mx.rhone.ch"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.protection.outlook.com +a +mx +ip4:81.201.202.0/26 +ip4:81.201.201.0/25 +ip4:188.40.26.205/32 -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6054":{"name":"Binn","canton":"Kanton Wallis","domain":"binn.ch","mx":["mail.binn.ch"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.cyon.net -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6056":{"name":"Ernen","canton":"Kanton Wallis","domain":"ernen.ch","mx":["ernen-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX ernen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6057":{"name":"Fiesch","canton":"Kanton Wallis","domain":"gemeinde-fiesch.ch","mx":["gemeindefiesch-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 ip4:188.227.202.22 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindefiesch-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"6058":{"name":"Fieschertal","canton":"Kanton Wallis","domain":"fieschertal.ch","mx":["fieschertal-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fieschertal-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6061":{"name":"Lax","canton":"Kanton Wallis","domain":"lax.ch","mx":["lax-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:188.227.202.28 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lax-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"6076":{"name":"Obergoms","canton":"Kanton Wallis","domain":"obergoms.ch","mx":["mx.rhone.ch"],"spf":"v=spf1 ip4:81.201.202.0/26 ip4:81.201.201.0/25 ip4:81.201.202.0/24 include:_bulk-spf.datasport.com include:spf.protection.outlook.com include:spf.mandrillapp.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6077":{"name":"Goms","canton":"Kanton Wallis","domain":"gemeinde-goms.ch","mx":["gemeindegoms-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:146.4.85.110 +ip4:81.201.204.212 +ip4:95.174.243.178 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindegoms-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gemeinde-goms.ch CNAME → selector1-gemeindegoms-ch02b._domainkey.gdegoms.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gemeinde-goms.ch CNAME → selector2-gemeindegoms-ch02b._domainkey.gdegoms.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6082":{"name":"Ayent","canton":"Kanton Wallis","domain":"ayent.ch","mx":["ayent-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx include:spf.infomaniak.ch include:spf.protection.outlook.com include:evok.ch ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ayent-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6083":{"name":"Evolène","canton":"Kanton Wallis","domain":"commune-evolene.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6084":{"name":"Hérémence","canton":"Kanton Wallis","domain":"heremence.ch","mx":["mailgate.ti-informatique.com","mailgate2.ti-informatique.com"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6087":{"name":"Saint-Martin (VS)","canton":"Kanton Wallis","domain":"saint-martin.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:spf.infomaniak.ch include:clients.ciges.ch ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":70.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6089":{"name":"Vex","canton":"Kanton Wallis","domain":"vex.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 include:ti-informatique.com mx -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6090":{"name":"Mont-Noble","canton":"Kanton Wallis","domain":"mont-noble.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:_spf.ch-dns.net include:clients.ciges.ch +mx -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[],"gateway":"proofpoint"},"6101":{"name":"Agarn","canton":"Kanton Wallis","domain":"agarn.ch","mx":["agarn-ch.mail.protection.outlook.com"],"spf":"v=spf1 v=spf1 a mx ip4:194.126.200.0/24 ip4:149.126.0.0/21 ip4:62.202.49.82 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX agarn-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6102":{"name":"Albinen","canton":"Kanton Wallis","domain":"albinen.ch","mx":["albinen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX albinen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6104":{"name":"Ergisch","canton":"Kanton Wallis","domain":"ergisch.ch","mx":["ergisch-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX ergisch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6109":{"name":"Inden","canton":"Kanton Wallis","domain":"inden.ch","mx":["inden-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.sui-inter.net include:spf.protection.outlook.com +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX inden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6110":{"name":"Leuk","canton":"Kanton Wallis","domain":"leuk.ch","mx":["leuk-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:217.11.36.106 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leuk-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.leuk.ch CNAME → selector1-leuk-ch._domainkey.gemeindeleuk.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.leuk.ch CNAME → selector2-leuk-ch._domainkey.gemeindeleuk.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6111":{"name":"Leukerbad","canton":"Kanton Wallis","domain":"leukerbad.org","mx":["leukerbad-org.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leukerbad-org.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6112":{"name":"Oberems","canton":"Kanton Wallis","domain":"oberems.ch","mx":["oberems-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX oberems-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6113":{"name":"Salgesch","canton":"Kanton Wallis","domain":"salgesch.ch","mx":["mx-cluster01-hz13.hornetsecurity.ch","mx-cluster02-hz13.hornetsecurity.ch","mx-cluster03-hz13.hornetsecurity.ch","mx-cluster04-hz13.hornetsecurity.ch"],"spf":"v=spf1 redirect=salgesch.ch.spf.hornetdmarc.com","provider":"microsoft","category":"us-cloud","classification_confidence":75.0,"classification_signals":[{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"hornetsecurity"},"6116":{"name":"Varen","canton":"Kanton Wallis","domain":"varen.ch","mx":["varen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX varen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6117":{"name":"Guttet-Feschel","canton":"Kanton Wallis","domain":"guttet-feschel.ch","mx":["guttetfeschel-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX guttetfeschel-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6118":{"name":"Gampel-Bratsch","canton":"Kanton Wallis","domain":"gampel-bratsch.ch","mx":["gampelbratsch-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gampelbratsch-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6119":{"name":"Turtmann-Unterems","canton":"Kanton Wallis","domain":"turtmann-unterems.ch","mx":["turtmannunterems-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX turtmannunterems-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6131":{"name":"Bovernier","canton":"Kanton Wallis","domain":"bovernier.ch","mx":["bovernier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bovernier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6133":{"name":"Fully","canton":"Kanton Wallis","domain":"fully.ch","mx":["smtp.fully.ch"],"spf":"v=spf1 a mx a:mail2.pcprofi.ch ip4:81.88.178.30 ip4:81.88.178.21 ip4:213.221.139.177 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6134":{"name":"Isérables","canton":"Kanton Wallis","domain":"iserables.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 mx include:spf1.net4all.ch include:spf.infomaniak.ch include:_spf.komodo.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6135":{"name":"Leytron","canton":"Kanton Wallis","domain":"leytron.ch","mx":["leytron-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:213.221.149.254 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX leytron-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6136":{"name":"Martigny","canton":"Kanton Wallis","domain":"martigny.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6137":{"name":"Martigny-Combe","canton":"Kanton Wallis","domain":"martigny-combe.ch","mx":["martignycombe-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX martignycombe-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.martigny-combe.ch CNAME → selector1-martignycombe-ch02b._domainkey.martignycombe.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.martigny-combe.ch CNAME → selector2-martignycombe-ch02b._domainkey.martignycombe.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6139":{"name":"Riddes","canton":"Kanton Wallis","domain":"riddes.ch","mx":["riddes-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com ip4:213.221.136.66 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX riddes-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6140":{"name":"Saillon","canton":"Kanton Wallis","domain":"commune-saillon.ch","mx":["communesaillon-ch01i.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spfcloud.letsignit.com include:mailgun.org include:_spf.i-web.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX communesaillon-ch01i.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.commune-saillon.ch CNAME → selector1-communesaillon-ch01i._domainkey.cnesaillon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.commune-saillon.ch CNAME → selector2-communesaillon-ch01i._domainkey.cnesaillon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6141":{"name":"Saxon","canton":"Kanton Wallis","domain":"admin.saxon.ch","mx":["admin-saxon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX admin-saxon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6142":{"name":"Trient","canton":"Kanton Wallis","domain":"trient.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6151":{"name":"Champéry","canton":"Kanton Wallis","domain":"champery.ch","mx":["champery-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com a:mailgate.ti-informatique.com a:mailgate2.ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX champery-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6152":{"name":"Collombey-Muraz","canton":"Kanton Wallis","domain":"collombey-muraz.ch","mx":["collombeymuraz-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 ip4:213.221.157.230 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX collombeymuraz-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.collombey-muraz.ch CNAME → selector1-collombeymuraz-ch02c._domainkey.collombey.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.collombey-muraz.ch CNAME → selector2-collombeymuraz-ch02c._domainkey.collombey.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6153":{"name":"Monthey","canton":"Kanton Wallis","domain":"monthey.ch","mx":["mx-01-eu-central-1.prod.hydra.sophos.com","mx-02-eu-central-1.prod.hydra.sophos.com"],"spf":"v=spf1 ip4:213.221.152.154 ip4:193.34.137.65 ip4:185.54.6.111 include:spf.protection.outlook.com include:_spf_eucentral1.prod.hydra.sophos.com include:spf-de.emailsignatures365.com include:de1-emailsignatures-cloud.codetwo.com include:spf1.ne.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}],"gateway":"sophos"},"6154":{"name":"Port-Valais","canton":"Kanton Wallis","domain":"port-valais.ch","mx":["portvalais-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.71.120.144/28 ip4:213.221.134.37 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX portvalais-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.port-valais.ch CNAME → selector1-portvalais-ch01b._domainkey.portvalaisvs.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.port-valais.ch CNAME → selector2-portvalais-ch01b._domainkey.portvalaisvs.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6155":{"name":"Saint-Gingolph","canton":"Kanton Wallis","domain":"st-gingolph.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6156":{"name":"Troistorrents","canton":"Kanton Wallis","domain":"troistorrents.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6157":{"name":"Val-d'Illiez","canton":"Kanton Wallis","domain":"illiez.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 mx -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6158":{"name":"Vionnaz","canton":"Kanton Wallis","domain":"vionnaz.ch","mx":["vionnaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vionnaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6159":{"name":"Vouvry","canton":"Kanton Wallis","domain":"vouvry.ch","mx":["vouvry-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:_spf.kreativmedia.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vouvry-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6172":{"name":"Bister","canton":"Kanton Wallis","domain":"gemeinde-bister.ch","mx":["gemeindebister-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindebister-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.gemeinde-bister.ch CNAME → selector1-gemeindebister-ch02b._domainkey.gemeindebister.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.gemeinde-bister.ch CNAME → selector2-gemeindebister-ch02b._domainkey.gemeindebister.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6173":{"name":"Bitsch","canton":"Kanton Wallis","domain":"bitsch.ch","mx":["bitsch-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:62.204.96.43 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bitsch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"6177":{"name":"Grengiols","canton":"Kanton Wallis","domain":"grengiols.ch","mx":["grengiols-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com ip4:146.4.33.178 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grengiols-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6181":{"name":"Riederalp","canton":"Kanton Wallis","domain":"gemeinde-riederalp.ch","mx":["gemeinderiederalp-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeinderiederalp-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6191":{"name":"Ausserberg","canton":"Kanton Wallis","domain":"ausserberg.ch","mx":["ausserberg.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":95.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6192":{"name":"Blatten","canton":"Kanton Wallis","domain":"loetschen.ch","mx":["loetschen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX loetschen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.loetschen.ch CNAME → selector1-loetschen-ch._domainkey.loetschen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.loetschen.ch CNAME → selector2-loetschen-ch._domainkey.loetschen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6193":{"name":"Bürchen","canton":"Kanton Wallis","domain":"buerchen.ch","mx":["buerchen-ch.mail.protection.outlook.com"],"spf":"v=spf1 +ip4:185.5.33.226 +ip4:178.174.37.114 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX buerchen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.buerchen.ch CNAME → selector1-buerchen-ch._domainkey.buerchen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.buerchen.ch CNAME → selector2-buerchen-ch._domainkey.buerchen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6194":{"name":"Eischoll","canton":"Kanton Wallis","domain":"eischoll.ch","mx":["eischoll-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.cyon.net include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eischoll-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.eischoll.ch CNAME → selector1-eischoll-ch._domainkey.eischoll.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.eischoll.ch CNAME → selector2-eischoll-ch._domainkey.eischoll.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6195":{"name":"Ferden","canton":"Kanton Wallis","domain":"loetschen.ch","mx":["loetschen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX loetschen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.loetschen.ch CNAME → selector1-loetschen-ch._domainkey.loetschen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.loetschen.ch CNAME → selector2-loetschen-ch._domainkey.loetschen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6197":{"name":"Kippel","canton":"Kanton Wallis","domain":"loetschen.ch","mx":["loetschen-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX loetschen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.loetschen.ch CNAME → selector1-loetschen-ch._domainkey.loetschen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.loetschen.ch CNAME → selector2-loetschen-ch._domainkey.loetschen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6198":{"name":"Niedergesteln","canton":"Kanton Wallis","domain":"niedergesteln.ch","mx":["niedergesteln-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:smtprelay.dialogcloud.ch include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX niedergesteln-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6199":{"name":"Raron","canton":"Kanton Wallis","domain":"raron.ch","mx":["raron-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:46.14.118.150 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX raron-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6201":{"name":"Unterbäch","canton":"Kanton Wallis","domain":"unterbaech.ch","mx":["mx.rhone.ch"],"spf":"v=spf1 a mx ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6202":{"name":"Wiler (Lötschen)","canton":"Kanton Wallis","domain":"wilervs.ch","mx":["wilervs.ch"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6203":{"name":"Mörel-Filet","canton":"Kanton Wallis","domain":"moerel-filet.ch","mx":["moerelfilet-ch01e.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx include:spf.protection.outlook.com +ip4:149.126.6.130/24 +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 +ip4:109.164.212.178 +ip4:51.103.157.97 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX moerelfilet-ch01e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6204":{"name":"Steg-Hohtenn","canton":"Kanton Wallis","domain":"steg-hohtenn.ch","mx":["steghohtenn-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX steghohtenn-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6205":{"name":"Bettmeralp","canton":"Kanton Wallis","domain":"gemeinde-bettmeralp.ch","mx":["gemeindebettmeralp-ch02b.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX gemeindebettmeralp-ch02b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6211":{"name":"Collonges","canton":"Kanton Wallis","domain":"collonges.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6212":{"name":"Dorénaz","canton":"Kanton Wallis","domain":"dorenaz.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 mx include:clients.ciges.ch include:_spf.ch-dns.net ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6213":{"name":"Evionnaz","canton":"Kanton Wallis","domain":"evionnaz.ch","mx":["evionnaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX evionnaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6214":{"name":"Finhaut","canton":"Kanton Wallis","domain":"finhaut.ch","mx":["finhaut-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.71.120.144/28 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX finhaut-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6215":{"name":"Massongex","canton":"Kanton Wallis","domain":"massongex.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6217":{"name":"Saint-Maurice","canton":"Kanton Wallis","domain":"saint-maurice.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6218":{"name":"Salvan","canton":"Kanton Wallis","domain":"salvan.ch","mx":["mail.salvan.ch"],"spf":"v=spf1 a mx ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6219":{"name":"Vernayaz","canton":"Kanton Wallis","domain":"vernayaz.ch","mx":["mailgate2.ti-informatique.com"],"spf":"v=spf1 a mx a:mailgate.ti-informatique.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6220":{"name":"Vérossaz","canton":"Kanton Wallis","domain":"verossaz.ch","mx":["verossaz-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX verossaz-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6232":{"name":"Chalais","canton":"Kanton Wallis","domain":"chalais.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch ip4:128.65.195.32 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6235":{"name":"Chippis","canton":"Kanton Wallis","domain":"chippis.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch include:spf.infomaniak.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6238":{"name":"Grône","canton":"Kanton Wallis","domain":"grone.ch","mx":["grone-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grone-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6239":{"name":"Icogne","canton":"Kanton Wallis","domain":"icogne.ch","mx":["mail2.pcprofi.ch"],"spf":"v=spf1 a mx ip4:217.196.176.0/20 include:relay.mailchannels.net include:spf.antispamcloud.com include:newsletter.infomaniak.com include:mailgun.org ?all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6240":{"name":"Lens","canton":"Kanton Wallis","domain":"lens.ch","mx":["mail2.pcprofi.ch"],"spf":"v=spf1 a mx a:mail2.pcprofi.ch ip4:81.88.178.30 ip4:81.88.178.21 ip4:81.88.178.32 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6246":{"name":"Saint-Léonard","canton":"Kanton Wallis","domain":"st-leonard.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6248":{"name":"Sierre","canton":"Kanton Wallis","domain":"sierre.ch","mx":["mail2.pcprofi.ch"],"spf":"v=spf1 mx ip4:81.88.178.21 ip4:195.141.89.158 ip4:91.208.173.157 ip4:81.88.178.3 ip4:213.221.157.218 ip4:213.221.157.222 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"6252":{"name":"Anniviers","canton":"Kanton Wallis","domain":"anniviers.org","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch include:spf1.ne.ch include:spf.infomaniak.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":85.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.anniviers.org CNAME → selector1-anniviers-org._domainkey.communeanniviers.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.anniviers.org CNAME → selector2-anniviers-org._domainkey.communeanniviers.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"proofpoint"},"6253":{"name":"Crans-Montana","canton":"Kanton Wallis","domain":"cransmontana.ch","mx":["mail2.pcprofi.ch"],"spf":"v=spf1 mx a:mail2.pcprofi.ch ip4:81.88.178.21 ip4:81.88.178.3 ip4:213.221.147.3 ip4:77.235.50.204 ip4:153.109.157.140 ip4:153.109.10.232 include:eu.mailgun.org ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6254":{"name":"Noble-Contrée","canton":"Kanton Wallis","domain":"noble-contree.ch","mx":["noblecontree-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.mailpro.com include:ti-informatique.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX noblecontree-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6261":{"name":"Arbaz","canton":"Kanton Wallis","domain":"arbaz.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:clients.ciges.ch ip4:128.65.195.26 ~all","provider":"microsoft","category":"us-cloud","classification_confidence":97.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.arbaz.ch CNAME → selector1-arbaz-ch._domainkey.communearbaz.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.arbaz.ch CNAME → selector2-arbaz-ch._domainkey.communearbaz.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"proofpoint"},"6263":{"name":"Grimisuat","canton":"Kanton Wallis","domain":"grimisuat.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch ip4:128.65.195.35 include:spf.mailpro.com include:spf.infomaniak.ch ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":70.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6265":{"name":"Savièse","canton":"Kanton Wallis","domain":"saviese.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 mx include:clients.ciges.ch ip4:128.65.195.28 include:spf.mailpro.com ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}],"gateway":"proofpoint"},"6266":{"name":"Sion","canton":"Kanton Wallis","domain":"sion.ch","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 include:clients.ciges.ch include:_spf.i-web.ch include:relay.mail.infomaniak.ch include:app.mail.infomaniak.ch include:servers.mcsv.net ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"proofpoint"},"6267":{"name":"Veysonnaz","canton":"Kanton Wallis","domain":"veysonnaz.org","mx":["mx1-eu1.ppe-hosted.com","mx2-eu1.ppe-hosted.com"],"spf":"v=spf1 mx include:clients.ciges.ch ip4:160.153.18.103 ~all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}],"gateway":"proofpoint"},"6281":{"name":"Baltschieder","canton":"Kanton Wallis","domain":"baltschieder.ch","mx":["baltschieder-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX baltschieder-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6282":{"name":"Eisten","canton":"Kanton Wallis","domain":"eisten.ch","mx":["eisten-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:149.126.0.51 +ip4:81.201.202.0/26 +ip4:81.201.204.212 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX eisten-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6283":{"name":"Embd","canton":"Kanton Wallis","domain":"embd.ch","mx":["embd-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:178.174.29.254 a:embd.ch mx include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX embd-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6285":{"name":"Grächen","canton":"Kanton Wallis","domain":"graechen.ch","mx":["graechen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:109.164.212.170 ip4:109.164.212.171 ip4:109.164.212.172 ip4:109.164.212.173 ip4:109.164.212.174 include:_spf.sui-inter.net include:spf.mailjet.com include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX graechen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.graechen.ch CNAME → selector1-graechen-ch._domainkey.graechen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.graechen.ch CNAME → selector2-graechen-ch._domainkey.graechen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6286":{"name":"Lalden","canton":"Kanton Wallis","domain":"lalden.ch","mx":["lalden-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com include:mx.dvbern.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX lalden-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6287":{"name":"Randa","canton":"Kanton Wallis","domain":"randa.ch","mx":["randa-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:194.150.248.202 include:_spf.tophost.ch ip4:62.204.96.89 include:relay.mailchannels.net include:_spf.createsend.com ip4:194.150.248.63 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX randa-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"}]},"6288":{"name":"Saas-Almagell","canton":"Kanton Wallis","domain":"3905.ch","mx":["3905-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:212.41.213.109 ip4:212.120.41.204 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX 3905-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.3905.ch CNAME → selector1-3905-ch._domainkey.gemeindesaasalmagell3905.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.3905.ch CNAME → selector2-3905-ch._domainkey.gemeindesaasalmagell3905.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6289":{"name":"Saas-Balen","canton":"Kanton Wallis","domain":"3908.ch","mx":["3908-ch.mail.protection.outlook.com"],"spf":"v=spf1 +ip4:212.90.219.242 +ip4:212.90.219.241 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX 3908-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6290":{"name":"Saas-Fee","canton":"Kanton Wallis","domain":"3906.ch","mx":["3906-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com include:_spf.i-web.ch include:spf.computech.ch +a +mx -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX 3906-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.3906.ch CNAME → selector1-3906-ch._domainkey.3906.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.3906.ch CNAME → selector2-3906-ch._domainkey.3906.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6291":{"name":"Saas-Grund","canton":"Kanton Wallis","domain":"saas-fee.ch","mx":["saasfee-ch01b.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.6.50.0/24 include:_bulk-spf.datasport.com ip4:213.221.250.0/24 ip4:213.221.214.0/24 mx:stpartner.ch include:spf.protection.outlook.com include:spfa.myconvento.com ip4:54.93.36.23 include:amazonses.com include:wlk-msg.de ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX saasfee-ch01b.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:amazonses.com matches aws"},{"kind":"dkim","detail":"DKIM selector1._domainkey.saas-fee.ch CNAME → selector1-saasfee-ch01b._domainkey.saasfeech.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.saas-fee.ch CNAME → selector2-saasfee-ch01b._domainkey.saasfeech.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 15600 is Swiss ISP: Quickline"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 16509 matches aws"}]},"6292":{"name":"St. Niklaus","canton":"Kanton Wallis","domain":"st-niklaus.ch","mx":["stniklaus-ch0e.mail.protection.outlook.com"],"spf":"v=spf1 ip4:81.201.206.242 include:spf.protection.outlook.com include:_spf.sui-inter.net +mx +a -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX stniklaus-ch0e.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.st-niklaus.ch CNAME → selector1-stniklaus-ch0e._domainkey.stniklaus.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.st-niklaus.ch CNAME → selector2-stniklaus-ch0e._domainkey.stniklaus.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6293":{"name":"Stalden (VS)","canton":"Kanton Wallis","domain":"stalden.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":90.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}],"gateway":"hornetsecurity"},"6294":{"name":"Staldenried","canton":"Kanton Wallis","domain":"staldenried.ch","mx":["staldenried-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx a ip4:81.201.202.2/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX staldenried-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6295":{"name":"Täsch","canton":"Kanton Wallis","domain":"taesch.ch","mx":["taesch-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX taesch-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6296":{"name":"Törbel","canton":"Kanton Wallis","domain":"toerbel.ch","mx":["toerbel-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX toerbel-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6297":{"name":"Visp","canton":"Kanton Wallis","domain":"visp.ch","mx":["visp-ch.mail.protection.outlook.com"],"spf":"v=spf1 +a +mx +ip4:194.126.200.0/24 +ip4:149.126.0.0/21 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":99.0,"classification_signals":[{"kind":"mx","detail":"MX visp-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6298":{"name":"Visperterminen","canton":"Kanton Wallis","domain":"visperterminen.ch","mx":["mx01.hornetsecurity.com","mx02.hornetsecurity.com","mx03.hornetsecurity.com","mx04.hornetsecurity.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.hornetsecurity.com ~all","provider":"microsoft","category":"us-cloud","classification_confidence":92.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}],"gateway":"hornetsecurity"},"6299":{"name":"Zeneggen","canton":"Kanton Wallis","domain":"zeneggen.ch","mx":["zeneggen-ch.mail.protection.outlook.com"],"spf":"v=spf1 a mx ip4:83.173.221.226 ip4:81.201.202.0/26 ip4:81.201.201.0/25 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zeneggen-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.zeneggen.ch CNAME → selector1-zeneggen-ch._domainkey.zeneggen.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.zeneggen.ch CNAME → selector2-zeneggen-ch._domainkey.zeneggen.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6300":{"name":"Zermatt","canton":"Kanton Wallis","domain":"zermatt.ch","mx":["zermatt-ch.mail.protection.outlook.com"],"spf":"v=spf1 ip4:195.141.155.12 ip4:195.141.155.20 ip4:82.195.253.109 ip4:82.195.229.62 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX zermatt-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"6404":{"name":"Boudry","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6408":{"name":"Cortaillod","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6413":{"name":"Rochefort","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6416":{"name":"Milvignes","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6417":{"name":"La Grande Béroche","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6421":{"name":"La Chaux-de-Fonds","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6422":{"name":"Les Planchettes","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6423":{"name":"La Sagne","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6432":{"name":"La Brévine","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6433":{"name":"Brot-Plamboz","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6434":{"name":"Le Cerneux-Péquignot","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6435":{"name":"La Chaux-du-Milieu","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6436":{"name":"Le Locle","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6437":{"name":"Les Ponts-de-Martel","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6451":{"name":"Cornaux","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6452":{"name":"Cressier (NE)","canton":"Kanton Neuenburg","domain":"cressier.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 include:evok.ch include:_spf.ch-dns.net ip4:212.71.120.144/28 -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6455":{"name":"Le Landeron","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6456":{"name":"Lignières","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6458":{"name":"Neuchâtel","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6487":{"name":"Val-de-Ruz","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6504":{"name":"La Côte-aux-Fées","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6511":{"name":"Les Verrières","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6512":{"name":"Val-de-Travers","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6513":{"name":"Laténa","canton":"Kanton Neuenburg","domain":"ne.ch","mx":["ne2mx9a.ne.ch","nemx9a.ne.ch"],"spf":"v=spf1 include:spf1.ne.ch include:spf.protection.outlook.com ip4:148.196.27.140 ip4:148.196.27.141 +mx:hin.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"asn","detail":"ASN 559 is Swiss ISP: SWITCH"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 559 is Swiss ISP: SWITCH"}]},"6601":{"name":"Aire-la-Ville","canton":"Kanton Genf","domain":"aire-la-ville.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6602":{"name":"Anières","canton":"Kanton Genf","domain":"anieres.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6603":{"name":"Avully","canton":"Kanton Genf","domain":"avully.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6604":{"name":"Avusy","canton":"Kanton Genf","domain":"avusy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6605":{"name":"Bardonnex","canton":"Kanton Genf","domain":"bardonnex.ch","mx":["mai2.acg-geneve.ch","mail.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6606":{"name":"Bellevue","canton":"Kanton Genf","domain":"mairie-bellevue.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6607":{"name":"Bernex","canton":"Kanton Genf","domain":"bernex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:newsletter.infomaniak.com include:spf.infomaniak.com ip4:192.168.253.253 ip4:94.126.20.214 -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6608":{"name":"Carouge (GE)","canton":"Kanton Genf","domain":"carouge.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch ip4:185.169.94.92 ip4:83.166.142.206 include:spf.infomaniak.ch include:spf.mandrillapp.com ip4:185.177.62.32 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6609":{"name":"Cartigny","canton":"Kanton Genf","domain":"cartigny.ch","mx":["mail.acg-geneve.ch","mail.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:newsletter.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6610":{"name":"Céligny","canton":"Kanton Genf","domain":"celigny.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6611":{"name":"Chancy","canton":"Kanton Genf","domain":"chancy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6612":{"name":"Chêne-Bougeries","canton":"Kanton Genf","domain":"chene-bougeries.ch","mx":["mail.acg-geneve.ch","mail.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch include:_spf.ville-ge.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6613":{"name":"Chêne-Bourg","canton":"Kanton Genf","domain":"chene-bourg.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:newsletter.infomaniak.com include:spf.infomaniak.ch a:iomedia-smtp.infomaniak.ch ip4:83.166.138.97 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6614":{"name":"Choulex","canton":"Kanton Genf","domain":"choulex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.acg-geneve.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6615":{"name":"Collex-Bossy","canton":"Kanton Genf","domain":"collex-bossy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6616":{"name":"Collonge-Bellerive","canton":"Kanton Genf","domain":"collonge-bellerive.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch a:webext02.i-web.ch ip4:185.54.6.105 -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6617":{"name":"Cologny","canton":"Kanton Genf","domain":"cologny.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com ip4:195.70.27.65 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6618":{"name":"Confignon","canton":"Kanton Genf","domain":"confignon.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6619":{"name":"Corsier (GE)","canton":"Kanton Genf","domain":"corsier.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext01.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6620":{"name":"Dardagny","canton":"Kanton Genf","domain":"dardagny.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:www.dardagny.ch include:spf.infomaniak.com a:newsletter.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6621":{"name":"Genève","canton":"Kanton Genf","domain":"geneve.ch","mx":["geneve-ch.mail.protection.outlook.com"],"spf":"v=spf1 mx ip4:148.139.0.2 ip4:148.139.0.31 ip4:148.139.1.2 ip4:148.139.1.31 ip4:148.139.2.2 ip4:148.139.3.2 ip4:149.96.13.2 include:spf.protection.outlook.com include:spf.mandrillapp.com ip4:149.96.5.209 include:spf1.geneve.ch ~all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX geneve-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.geneve.ch CNAME → selector1-geneve-ch._domainkey.lavilledegeneve.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.geneve.ch CNAME → selector2-geneve-ch._domainkey.lavilledegeneve.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6622":{"name":"Genthod","canton":"Kanton Genf","domain":"genthod.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6623":{"name":"Le Grand-Saconnex","canton":"Kanton Genf","domain":"grand-saconnex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch a:www.grand-saconnex.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6624":{"name":"Gy","canton":"Kanton Genf","domain":"gy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6625":{"name":"Hermance","canton":"Kanton Genf","domain":"hermance.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext04.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6626":{"name":"Jussy","canton":"Kanton Genf","domain":"jussy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext03.i-web.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6627":{"name":"Laconnex","canton":"Kanton Genf","domain":"laconnex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6628":{"name":"Lancy","canton":"Kanton Genf","domain":"lancy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch include:spf.infomaniak.ch ip4:94.103.99.57 ip4:168.245.102.203 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6629":{"name":"Meinier","canton":"Kanton Genf","domain":"meinier.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6630":{"name":"Meyrin","canton":"Kanton Genf","domain":"meyrin.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:_spf.ville-ge.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com ip4:217.169.130.20 ip4:83.166.138.97 ip4:83.166.149.222 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6631":{"name":"Onex","canton":"Kanton Genf","domain":"onex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:www.onex.ch a:iomedia-smtp.infomaniak.ch a:spf.infomaniak.ch a:spf.mailpro.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6632":{"name":"Perly-Certoux","canton":"Kanton Genf","domain":"perly-certoux.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6633":{"name":"Plan-les-Ouates","canton":"Kanton Genf","domain":"plan-les-ouates.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:newsletter.infomaniak.com ip4:83.166.138.97 ip4:83.166.143.44 include:_spf.ville-ge.ch include:spf.mandrillapp.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6634":{"name":"Pregny-Chambésy","canton":"Kanton Genf","domain":"pregny-chambesy.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:webext02.i-web.ch include:_spf.ville-ge.ch -all","provider":"independent","category":"swiss-based","classification_confidence":96.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6635":{"name":"Presinge","canton":"Kanton Genf","domain":"presinge.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:www.presinge.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6636":{"name":"Puplinge","canton":"Kanton Genf","domain":"puplinge.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com a:iomedia-smtp.infomaniak.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6637":{"name":"Russin","canton":"Kanton Genf","domain":"russin.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6638":{"name":"Satigny","canton":"Kanton Genf","domain":"satigny.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6639":{"name":"Soral","canton":"Kanton Genf","domain":"soral.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6640":{"name":"Thônex","canton":"Kanton Genf","domain":"thonex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch include:servers.mcsv.net a:newsletter.infomaniak.com ip4:83.166.138.97 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6641":{"name":"Troinex","canton":"Kanton Genf","domain":"troinex.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:www.troinex.ch include:spf.infomaniak.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6642":{"name":"Vandoeuvres","canton":"Kanton Genf","domain":"vandoeuvres.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.mailjet.com include:spf.wellhosted.ch include:spf.acg-geneve.ch -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6643":{"name":"Vernier","canton":"Kanton Genf","domain":"vernier.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com a:www.vernier.ch a:preprod.vernier.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6644":{"name":"Versoix","canton":"Kanton Genf","domain":"versoix.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch a:iomedia-smtp.infomaniak.ch include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6645":{"name":"Veyrier","canton":"Kanton Genf","domain":"veyrier.ch","mx":["mail.acg-geneve.ch","mail2.acg-geneve.ch"],"spf":"v=spf1 include:spf.acg-geneve.ch include:spf.infomaniak.ch a:newsletter.infomaniak.com -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Federated"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6702":{"name":"Boécourt","canton":"Kanton Jura","domain":"boecourt.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 include:spf.mandrillapp.com -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6703":{"name":"Bourrignon","canton":"Kanton Jura","domain":"bourrignon.ch","mx":["mail.bourrignon.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6704":{"name":"Châtillon (JU)","canton":"Kanton Jura","domain":"chatillon.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6706":{"name":"Courchapoix","canton":"Kanton Jura","domain":"courchapoix.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.protection.outlook.com include:spf.mandrillapp.com -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.courchapoix.ch CNAME → selector1-courchapoix-ch._domainkey.comcourchapoix.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.courchapoix.ch CNAME → selector2-courchapoix-ch._domainkey.comcourchapoix.onmicrosoft.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6708":{"name":"Courrendlin","canton":"Kanton Jura","domain":"courrendlin.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ?all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6709":{"name":"Courroux","canton":"Kanton Jura","domain":"courroux.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6710":{"name":"Courtételle","canton":"Kanton Jura","domain":"courtetelle.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6711":{"name":"Delémont","canton":"Kanton Jura","domain":"delemont.ch","mx":["d313142.a.ess.de.barracudanetworks.com","d313142.b.ess.de.barracudanetworks.com"],"spf":"v=spf1 mx ip4:46.140.108.219 ip4:62.2.93.17 ip4:62.2.93.13 ip4:62.2.93.4 include:servers.mcsv.net include:spf.ess.de.barracudanetworks.com include:spf.mandrillapp.com -all","provider":"independent","category":"swiss-based","classification_confidence":98.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"asn","detail":"ASN 16509 matches aws"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}],"gateway":"barracuda"},"6712":{"name":"Develier","canton":"Kanton Jura","domain":"develier.ch","mx":["develier-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX develier-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.develier.ch CNAME → selector1-develier-ch._domainkey.develier.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.develier.ch CNAME → selector2-develier-ch._domainkey.develier.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6713":{"name":"Ederswiler","canton":"Kanton Jura","domain":"ederswiler.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:_spf.blk.ymc.swiss ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6715":{"name":"Mervelier","canton":"Kanton Jura","domain":"mervelier.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6716":{"name":"Mettembert","canton":"Kanton Jura","domain":"mettembert.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6718":{"name":"Movelier","canton":"Kanton Jura","domain":"movelier.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6719":{"name":"Pleigne","canton":"Kanton Jura","domain":"pleigne.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch include:spf.mandrillapp.com ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6721":{"name":"Rossemaison","canton":"Kanton Jura","domain":"rossemaison.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 a mx ip4:51.68.11.207 include:spf.infomaniak.ch ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6722":{"name":"Saulcy","canton":"Kanton Jura","domain":"saulcy.ch","mx":["saulcy-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX saulcy-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.saulcy.ch CNAME → selector1-saulcy-ch._domainkey.communesaulcy.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.saulcy.ch CNAME → selector2-saulcy-ch._domainkey.communesaulcy.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6724":{"name":"Soyhières","canton":"Kanton Jura","domain":"soyhieres.ch","mx":["mailfilter.evok.ch"],"spf":"v=spf1 a mx include:evok.ch ip4:212.71.120.144/28 include:spf.mandrillapp.com -all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6729":{"name":"Haute-Sorne","canton":"Kanton Jura","domain":"haute-sorne.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:212.71.120.144/28 ip4:185.98.28.38 include:spf.mandrillapp.com -all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6730":{"name":"Val Terbi","canton":"Kanton Jura","domain":"val-terbi.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6741":{"name":"Le Bémont (JU)","canton":"Kanton Jura","domain":"lebemont.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6742":{"name":"Les Bois","canton":"Kanton Jura","domain":"lesbois.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.109 ip4:212.71.120.144/28 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6743":{"name":"Les Breuleux","canton":"Kanton Jura","domain":"breuleux.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 ip4:212.71.120.144/28 ~all","provider":"independent","category":"swiss-based","classification_confidence":92.0,"classification_signals":[{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6745":{"name":"Les Enfers","canton":"Kanton Jura","domain":"lesenfers.ch","mx":["mail.lesenfers.ch"],"spf":"v=spf1 include:_spf.kreativmedia.ch ip4:212.71.120.144/28 +mx +a -all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6748":{"name":"Les Genevez (JU)","canton":"Kanton Jura","domain":"lesgenevez.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6750":{"name":"Lajoux (JU)","canton":"Kanton Jura","domain":"lajoux.ch","mx":["lajoux-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX lajoux-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6751":{"name":"Montfaucon","canton":"Kanton Jura","domain":"montfaucon.ch","mx":["backup.montfaucon.ch","mail.montfaucon.ch"],"spf":"v=spf1 ip4:5.182.248.186 include:spf.infomaniak.ch include:tizoo.com ip4:5.182.248.144 +a +mx +ip4:212.147.66.228 a:mail.montfaucon.ch a:mtfn.montfaucon.ch a:beesolutions.ch ~all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 3303 is Swiss ISP: Swisscom"}]},"6753":{"name":"Muriaux","canton":"Kanton Jura","domain":"muriaux.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6754":{"name":"Le Noirmont","canton":"Kanton Jura","domain":"noirmont.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.109 ip4:212.71.120.144/28 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6757":{"name":"Saignelégier","canton":"Kanton Jura","domain":"saignelegier.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.105 ip4:212.71.120.144/28 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6758":{"name":"Saint-Brais","canton":"Kanton Jura","domain":"saint-brais.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6759":{"name":"Soubey","canton":"Kanton Jura","domain":"soubey.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6771":{"name":"Alle","canton":"Kanton Jura","domain":"alle.ch","mx":["alle-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX alle-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.alle.ch CNAME → selector1-alle-ch._domainkey.alleju.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.alle.ch CNAME → selector2-alle-ch._domainkey.alleju.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6774":{"name":"Boncourt","canton":"Kanton Jura","domain":"boncourt.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a include:spf.infomaniak.ch ip4:46.140.242.148 ip4:46.140.242.150 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"txt_verification","detail":"TXT verification matches google"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"6778":{"name":"Bure","canton":"Kanton Jura","domain":"bure.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.mandrillapp.com ?all","provider":"independent","category":"swiss-based","classification_confidence":94.0,"classification_signals":[{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"AWS SES domain verification found"}]},"6781":{"name":"Coeuve","canton":"Kanton Jura","domain":"coeuve.ch","mx":["coeuve-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX coeuve-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.coeuve.ch CNAME → selector1-coeuve-ch._domainkey.coeuve.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.coeuve.ch CNAME → selector2-coeuve-ch._domainkey.coeuve.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"}]},"6782":{"name":"Cornol","canton":"Kanton Jura","domain":"cornol.ch","mx":["cornol-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:_spf.i-web.ch ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX cornol-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.cornol.ch CNAME → selector1-cornol-ch._domainkey.cornol.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.cornol.ch CNAME → selector2-cornol-ch._domainkey.cornol.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6783":{"name":"Courchavon","canton":"Kanton Jura","domain":"courchavon.ch","mx":["courchavon-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX courchavon-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.courchavon.ch CNAME → selector1-courchavon-ch._domainkey.courchavon.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.courchavon.ch CNAME → selector2-courchavon-ch._domainkey.courchavon.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6784":{"name":"Courgenay","canton":"Kanton Jura","domain":"courgenay.ch","mx":["courgenay-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:_spf.i-web.ch include:spf.protection.outlook.com ip4:212.71.120.144/28 -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX courgenay-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6785":{"name":"Courtedoux","canton":"Kanton Jura","domain":"courtedoux.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch ?all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6789":{"name":"Fahy","canton":"Kanton Jura","domain":"fahy.ch","mx":["fahy-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX fahy-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.fahy.ch CNAME → selector1-fahy-ch._domainkey.communefahy.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.fahy.ch CNAME → selector2-fahy-ch._domainkey.communefahy.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6790":{"name":"Fontenais","canton":"Kanton Jura","domain":"fontenais.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 include:spf.infomaniak.ch ip4:212.71.120.144/28 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"}]},"6792":{"name":"Grandfontaine","canton":"Kanton Jura","domain":"grandfontaine.ch","mx":["grandfontaine-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX grandfontaine-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.grandfontaine.ch CNAME → selector1-grandfontaine-ch._domainkey.gfontaine.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.grandfontaine.ch CNAME → selector2-grandfontaine-ch._domainkey.gfontaine.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6800":{"name":"Porrentruy","canton":"Kanton Jura","domain":"porrentruy.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a include:spf.infomaniak.ch ip4:46.140.242.148 ip4:46.140.242.150 -all","provider":"infomaniak","category":"swiss-based","classification_confidence":50.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]},"6806":{"name":"Vendlincourt","canton":"Kanton Jura","domain":"vendlincourt.ch","mx":["vendlincourt-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX vendlincourt-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.vendlincourt.ch CNAME → selector1-vendlincourt-ch._domainkey.vendlincourt.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.vendlincourt.ch CNAME → selector2-vendlincourt-ch._domainkey.vendlincourt.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6807":{"name":"Basse-Allaine","canton":"Kanton Jura","domain":"basse-allaine.ch","mx":["basseallaine-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX basseallaine-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.basse-allaine.ch CNAME → selector1-basseallaine-ch01c._domainkey.communedebasseallaine.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.basse-allaine.ch CNAME → selector2-basseallaine-ch01c._domainkey.communedebasseallaine.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6808":{"name":"Clos du Doubs","canton":"Kanton Jura","domain":"closdudoubs.ch","mx":["mta-gw.infomaniak.ch"],"spf":"v=spf1 include:spf.infomaniak.ch -all","provider":"infomaniak","category":"swiss-based","classification_confidence":90.0,"classification_signals":[{"kind":"mx","detail":"MX mta-gw.infomaniak.ch matches infomaniak"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"}]},"6809":{"name":"Haute-Ajoie","canton":"Kanton Jura","domain":"hauteajoie.ch","mx":["mx1.azinformatique.ch","mx2.azinformatique.ch","mx3.azinformatique.ch","mx4.azinformatique.ch"],"spf":"v=spf1 mx a ip4:185.98.28.97 ~all","provider":"independent","category":"swiss-based","classification_confidence":90.0,"classification_signals":[]},"6810":{"name":"La Baroche","canton":"Kanton Jura","domain":"labaroche.ch","mx":["labaroche-ch.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX labaroche-ch.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.labaroche.ch CNAME → selector1-labaroche-ch._domainkey.labaroche.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.labaroche.ch CNAME → selector2-labaroche-ch._domainkey.labaroche.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6811":{"name":"Damphreux-Lugnez","canton":"Kanton Jura","domain":"damphreux-lugnez.ch","mx":["damphreuxlugnez-ch02c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com include:spf.infomaniak.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX damphreuxlugnez-ch02c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.infomaniak.ch matches infomaniak"},{"kind":"dkim","detail":"DKIM selector1._domainkey.damphreux-lugnez.ch CNAME → selector1-damphreuxlugnez-ch02c._domainkey.damphreux.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.damphreux-lugnez.ch CNAME → selector2-damphreuxlugnez-ch02c._domainkey.damphreux.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches google"}]},"6812":{"name":"Basse-Vendline","canton":"Kanton Jura","domain":"basse-vendline.ch","mx":["bassevendline-ch01c.mail.protection.outlook.com"],"spf":"v=spf1 include:spf.protection.outlook.com -all","provider":"microsoft","category":"us-cloud","classification_confidence":100.0,"classification_signals":[{"kind":"mx","detail":"MX bassevendline-ch01c.mail.protection.outlook.com matches ms365"},{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"dkim","detail":"DKIM selector1._domainkey.basse-vendline.ch CNAME → selector1-bassevendline-ch01c._domainkey.bassevendline.onmicrosoft.com"},{"kind":"dkim","detail":"DKIM selector2._domainkey.basse-vendline.ch CNAME → selector2-bassevendline-ch01c._domainkey.bassevendline.onmicrosoft.com"},{"kind":"autodiscover","detail":"autodiscover CNAME → autodiscover.outlook.com"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"asn","detail":"ASN 8075 matches ms365"},{"kind":"txt_verification","detail":"TXT verification matches ms365"}]},"6831":{"name":"Moutier","canton":"Kanton Jura","domain":"moutier.ch","mx":["mail.moutier.ch"],"spf":"v=spf1 +a +mx +ip4:62.202.57.224/28 ip4:62.2.96.80/28 ip4:80.74.149.162/32 ip4:80.74.149.163/32 include:spf.protection.outlook.com include:spf.mandrillapp.com include:spf1.ne.ch -all","provider":"microsoft","category":"us-cloud","classification_confidence":82.0,"classification_signals":[{"kind":"spf","detail":"SPF include:spf.protection.outlook.com matches ms365"},{"kind":"tenant","detail":"MS365 tenant detected: Managed"},{"kind":"asn","detail":"ASN 3303 is Swiss ISP: Swisscom"},{"kind":"asn","detail":"ASN 6730 is Swiss ISP: Sunrise UPC"},{"kind":"txt_verification","detail":"TXT verification matches ms365"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"txt_verification","detail":"AWS SES domain verification found"},{"kind":"spf_ip","detail":"SPF ip4/a ASN 6730 is Swiss ISP: Sunrise UPC"}]}}}
\ No newline at end of file
diff --git a/datenschutz.html b/datenschutz.html
index 6686c5d..700ed60 100644
--- a/datenschutz.html
+++ b/datenschutz.html
@@ -5,53 +5,16 @@
Datenschutzerklärung — MXmap
-
+
+
+
Datenschutzerklärung
@@ -61,12 +24,12 @@ 1. Allgemeines
2. Hosting
Diese Website wird über GitHub Pages (GitHub Inc., USA) bereitgestellt. Beim Aufruf der Website wird Ihre IP-Adresse an die Server von GitHub übermittelt. Dies ist technisch notwendig, um die Website auszuliefern. Weitere Informationen finden Sie in der Datenschutzerklärung von GitHub . Die Übermittlung in die USA erfolgt gestützt auf Art. 17 des Bundesgesetzes über den Datenschutz (nDSG).
+ Die Auslieferung der Website erfolgt über das Content-Delivery-Network von Cloudflare (Cloudflare Inc., USA). Dabei wird Ihre IP-Adresse an Cloudflare-Server übermittelt, um die Website performant und sicher auszuliefern. Weitere Informationen finden Sie in der Datenschutzerklärung von Cloudflare . Die Übermittlung in die USA erfolgt gestützt auf Art. 17 nDSG.
3. Externe Ressourcen (CDNs)
Zur Darstellung der Karte werden externe Ressourcen von Drittanbietern geladen. Dabei wird Ihre IP-Adresse an die jeweiligen Server übermittelt:
- unpkg.com — Leaflet-Kartenbibliothek
- cdn.jsdelivr.net — Schweizer Gemeindegrenzen (TopoJSON)
+ unpkg.com — Leaflet-Kartenbibliothek und Schweizer Gemeindegrenzen (TopoJSON)
basemaps.cartocdn.com — Kartenkacheln (CARTO)
diff --git a/impressum.html b/impressum.html
index 64d84f7..2a15ec9 100644
--- a/impressum.html
+++ b/impressum.html
@@ -5,50 +5,16 @@
Impressum — MXmap
-
+
+
+
Impressum
@@ -68,7 +34,7 @@ Verantwortlich für den Inhalt
David Huser
Haftungsausschluss
- Die Daten auf dieser Website basieren auf öffentlichen DNS-Einträgen (MX- und SPF-Records). DNS-Einträge zeigen das Mail-Routing und autorisierte Absender an, nicht zwingend den tatsächlichen Speicherort der Daten. Es wird keine Gewähr für die Richtigkeit, Vollständigkeit oder Aktualität der bereitgestellten Informationen übernommen.
+ Die Daten auf dieser Website basieren auf öffentlichen DNS-Einträgen sowie öffentlich-zugänglichen Microsoft API Endpoints. DNS-Einträge zeigen das Mail-Routing und autorisierte Absender an, nicht zwingend den tatsächlichen Speicherort der Daten. Es wird keine Gewähr für die Richtigkeit, Vollständigkeit oder Aktualität der bereitgestellten Informationen übernommen.
Urheberrecht
Der Quellcode dieses Projekts steht unter der MIT-Lizenz und ist auf GitHub verfügbar.
diff --git a/index.html b/index.html
index e319454..11404f7 100644
--- a/index.html
+++ b/index.html
@@ -4,13 +4,11 @@
-
-
@@ -33,115 +31,23 @@
+
+
-
+
+
@@ -151,7 +57,7 @@ Email Providers of Swiss Municipalities
What is this?
-
A map of all ~2,100 Swiss municipalities showing which provider handles their official email — grouped by jurisdiction — based on public DNS records.
+
A map of all ~2,100 Swiss municipalities showing which provider handles their official email — grouped by jurisdiction — based on public DNS records and other public network signals.
Context
@@ -159,7 +65,7 @@ Context
How does it work?
-
Each municipality's official domain is checked via public DNS records (MX + SPF) and classified by provider type.
+
Each municipality's official domain is checked via 11 signals from DNS records, SMTP banners, ASN lookups, and a public Microsoft API endpoint, then classified by provider type with confidence scoring.
Disclaimer: DNS records indicate mail routing and authorized senders, not necessarily where data is stored.
@@ -176,33 +82,61 @@
Open source & open data
-