Initial Commit
31
README.md
@ -1 +1,30 @@
|
||||
# search.0t.rocks
|
||||
# Zero Trust Search Engine
|
||||
|
||||
This repository contains all the code nessecary to create your own version of https://search.0t.rocks.
|
||||
|
||||
|
||||
### Quickstart
|
||||
To get your search engine running quickly on a single Linux host:
|
||||
1. Install Docker with Docker Compose
|
||||
2. Run `docker compose build; docker compose up`
|
||||
3. Run `bash start.sh`
|
||||
4. Visit `http://your-ip:3000`
|
||||
|
||||
### Converting Data
|
||||
This is the hard part and completely up to you. You need to convert data into a standard format before it can be imported. See `sample.json` for the example data.
|
||||
|
||||
### Importing Data
|
||||
Data imports are done using the SimplePostTool included with Solr. You can download a copy of the **binary release** [here](https://solr.apache.org/downloads.html), and import data with the following command after extracting Solr:
|
||||
`bin/post -c BigData -p 8983 -host <your host> path/to/your/file`
|
||||
|
||||
Docs are available here: https://solr.apache.org/guide/solr/latest/indexing-guide/post-tool.html
|
||||
|
||||
### Making Changes
|
||||
If you make changes to code in the "dataapp" directory, you can re-build your app by re-running step 1 of Quickstart.
|
||||
|
||||
---
|
||||
|
||||
#### Considerations / Warnings
|
||||
- Solr is very complex. If you intend on extending on the existing schema or indexing large quantities (billions) of documents, you will want to learn more about how it works.
|
||||
- Keep backups, things will go wrong if you deviate the standard path.
|
||||
- Don't be evil.
|
||||
|
10
dataapp/Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM node:18-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
RUN npm install
|
||||
|
||||
CMD ["npx", "ts-node", "index.ts"]
|
||||
|
||||
EXPOSE 3000
|
130
dataapp/exports/doExport.py
Normal file
@ -0,0 +1,130 @@
|
||||
import sys
|
||||
import json
|
||||
import base64
|
||||
import requests
|
||||
import random
|
||||
import os
|
||||
from mega import Mega
|
||||
|
||||
mega = Mega()
|
||||
|
||||
|
||||
m = mega.login('email', 'password')
|
||||
payload = json.loads(base64.b64decode(sys.argv[1]))
|
||||
|
||||
try:
|
||||
|
||||
servers = ["http://solr1:8983/solr/BigData/select"]
|
||||
|
||||
# If export count is a string convert to int
|
||||
if isinstance(payload['exportCount'], str):
|
||||
payload['exportCount'] = int(payload['exportCount'])
|
||||
|
||||
print(f"Exporting {payload['exportCount']} records")
|
||||
|
||||
if payload['exportCount'] < 1000:
|
||||
# Get random server
|
||||
server = random.choice(servers)
|
||||
|
||||
print(f"Exporting {payload['exportCount']} from {server}: {payload['query']}")
|
||||
|
||||
# Query the server for the data (payload.query)
|
||||
r = requests.get(server, params={
|
||||
'q': payload['query'],
|
||||
'rows': payload['exportCount'],
|
||||
'wt': 'csv'
|
||||
})
|
||||
|
||||
print(r.text)
|
||||
|
||||
print(f"Exported {len(r.text)} bytes")
|
||||
|
||||
if len(r.text) == 0 or len(r.text) == 1:
|
||||
raise "bad length"
|
||||
|
||||
# Write to payload['jobid].csv
|
||||
with open('exports/'+payload['jobid'] + '.csv', 'w') as f:
|
||||
f.write(r.text)
|
||||
|
||||
print(f"Exported to {payload['jobid']}.csv")
|
||||
|
||||
payload['status'] = "success"
|
||||
|
||||
print(f"Uploading to mega.nz")
|
||||
|
||||
# replace 'myfile.txt' with your file
|
||||
file = m.upload('exports/'+payload['jobid'] + '.csv')
|
||||
|
||||
# Share the file so anyone with the link can view it
|
||||
print(f"Uploaded to mega.nz")
|
||||
|
||||
# Get the link
|
||||
link = m.get_upload_link(file)
|
||||
|
||||
print(f"Link: {link}")
|
||||
payload['status'] = "complete"
|
||||
payload['link'] = str(link)
|
||||
try:
|
||||
requests.post('http://127.0.0.1:3000/exports/callbacks/a-unique-id/exportCb', json=payload, timeout=5)
|
||||
# Timeout
|
||||
except:
|
||||
# Delete the file
|
||||
os.remove('exports/'+payload['jobid'] + '.csv')
|
||||
exit()
|
||||
|
||||
else:
|
||||
# Create a folder for the jobid
|
||||
os.mkdir('exports/'+payload['jobid'])
|
||||
|
||||
current = 0
|
||||
chunks = 1000
|
||||
|
||||
while current < payload['exportCount']:
|
||||
print(f"Exporting chunk {current}/{payload['exportCount']}")
|
||||
# Get random server
|
||||
server = random.choice(servers)
|
||||
|
||||
# Query the server for the data (payload.query)
|
||||
r = requests.get(server, params={
|
||||
'q': payload['query'],
|
||||
'rows': chunks,
|
||||
'start': current,
|
||||
'wt': 'csv'
|
||||
})
|
||||
|
||||
# Write to payload['jobid].csv
|
||||
with open('exports/'+payload['jobid'] + '/' + str(current) + '.csv', 'w') as f:
|
||||
f.write(r.text)
|
||||
|
||||
current += chunks
|
||||
|
||||
# Zip the folder
|
||||
os.system(f"zip -r exports/{payload['jobid']}.zip exports/{payload['jobid']}")
|
||||
print(f"Exported to {payload['jobid']}.zip")
|
||||
|
||||
# Upload to mega.nz
|
||||
file = m.upload('exports/'+payload['jobid'] + '.zip')
|
||||
|
||||
# Share the file so anyone with the link can view it
|
||||
print(f"Uploaded to mega.nz")
|
||||
|
||||
# Get the link
|
||||
link = m.get_upload_link(file)
|
||||
|
||||
print(f"Link: {link}")
|
||||
payload['status'] = "complete"
|
||||
payload['link'] = str(link)
|
||||
try:
|
||||
requests.post('http://127.0.0.1:3000/exports/callbacks/a-unique-id/exportCb', json=payload, timeout=5)
|
||||
# Timeout
|
||||
except:
|
||||
# Delete the files
|
||||
os.remove('exports/'+payload['jobid'] + '.zip')
|
||||
os.system(f"rm -rf exports/{payload['jobid']}")
|
||||
exit()
|
||||
except SystemExit:
|
||||
exit()
|
||||
except:
|
||||
print("Unexpected error:", sys.exc_info()[0])
|
||||
payload['status'] = "failed"
|
||||
requests.post('http://127.0.0.1:3000/exports/callbacks/a-unique-id/exportCb', json=payload)
|
1744
dataapp/index.ts
Normal file
6209
dataapp/package-lock.json
generated
Normal file
36
dataapp/package.json
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "dataapp",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "./node_modules/.bin/pm2 start index.ts",
|
||||
"dev": "ts-node index.ts"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@types/coinbase-commerce-node": "^1.0.6",
|
||||
"@types/express": "^4.17.15",
|
||||
"@types/ip": "^1.1.0",
|
||||
"@types/lodash": "^4.14.191",
|
||||
"@types/mustache": "^4.2.2",
|
||||
"@types/uuid": "^9.0.1",
|
||||
"axios": "^1.2.2",
|
||||
"body-parser": "^1.20.2",
|
||||
"coinbase-commerce-node": "^1.0.4",
|
||||
"express": "^4.18.2",
|
||||
"ip": "^1.1.8",
|
||||
"lodash": "^4.17.21",
|
||||
"mustache": "^4.2.0",
|
||||
"mustache.js": "^1.0.0",
|
||||
"node-fetch": "^3.3.1",
|
||||
"pm2": "^5.2.2",
|
||||
"requests": "^0.3.0",
|
||||
"simple-statistics": "^7.8.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.9.4",
|
||||
"uuid": "^9.0.0"
|
||||
}
|
||||
}
|
37
dataapp/static/canary.html
Normal file
@ -0,0 +1,37 @@
|
||||
<pre>
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
The current UTC timestamp is 1682868807. I confirm that:
|
||||
|
||||
All infrastructure is under my control (@miyakoyako on telegram).
|
||||
No subpoenas for user data (such as access logs) have been received.
|
||||
No subpoenas for user data (such as access logs) have been complied with.
|
||||
|
||||
|
||||
This canary originally had the following items:
|
||||
All infrastructure is under my control (@miyakoyako on telegram).
|
||||
No subpoenas for user data (such as access logs) have been received.
|
||||
No subpoenas for user data (such as access logs) have been complied with.
|
||||
|
||||
|
||||
==
|
||||
|
||||
My PGP key is available here: https://keys.openpgp.org/vks/v1/by-fingerprint/EC3D3DFBDFBA3085AE629EC072D2BB1C1BEB208C
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAEBCAAdFiEE7D09+9+6MIWuYp7ActK7HBvrIIwFAmROj2UACgkQctK7HBvr
|
||||
IIw1Mg//c/KjbLp28UXyyQr+3RC5hHRdv9SdM3Z12W7vtgX8yErRW8hvE7pqqaae
|
||||
4xQwFPkbnVksPrLmx1oZzeFyiShMgS4StgmvZ7MfDJ1qSfhzMuYXinEN/3jAJHPZ
|
||||
3Tzr7e/gPY2A8S5BzEO8KChZhpWmhNU8IqQyLeLjndI0wVrE5dd9DVAAZq590DXI
|
||||
Jlv5niReWc3Rkh6DzBPZNjiZY0qAWi2p9Cg6FbVm8xDAnm62AhcnpcvD6n/rpFqX
|
||||
cZOYw2ewdAYbqX1ZMFZsqI42YUPP1xhuJOegSlJhq8e2MVtybuMlaTt0hQb8ebNG
|
||||
Q0KI2lBCxbkmUOTFFRrCrcxruKAMJ4Z/J4vfTp/gReLI7xIRJJbdPvMOMITSrvnB
|
||||
xaU7P2kLQK7PIw7kMSYr3K9rtBsfL/M6ygdoA2fkjoKO8aPYVVXiT6Cye5BVGo31
|
||||
J/n42DH3wdADPDHkh1Y4MV8gApaiXRsuBcjJz6VF7/ULIeq6ljaIRqPH96cXDcbR
|
||||
3mO9IwVlosUboVTux4E3Q7Wek0YHKOdcx+LC0KtAEQMTRbGVBrcdclzlseTUsDtO
|
||||
AiVGW0mtA2c0N0TbFUMXvuvDEse/AJPdtt5DOhf48kMjin62Punc7bamhUPaFbk+
|
||||
HGPt3+UNPQq2HGq5hqFmvt6g0G6vQUhZXkiAtbei0zb0L5fg7U8=
|
||||
=UqFG
|
||||
-----END PGP SIGNATURE-----
|
||||
</pre>
|
165
dataapp/static/dear_peter.html
Normal file
@ -0,0 +1,165 @@
|
||||
<head>
|
||||
<title>Dear Peter Kleissner</title>
|
||||
<!-- SEO description tag -->
|
||||
<meta name="description" content="Tired of IntelX? Tired of getting scammed? So are we. Goodbyte IntelX, hello Illicit.">
|
||||
</head>
|
||||
|
||||
<pre>
|
||||
Dear Peter,
|
||||
|
||||
You have become the laughing stock of the intelligence community. Your claim to victory in pompompurin's arrest and subsequent embarrassment was one of the best things I've ever witnessed. You have shown to *EVERYONE* that you are a man-child, and not someone that can be taken seriously. I find the fact that you gather leaked data and sell it to the masses for thousands of dollars rather comical.
|
||||
|
||||
I continue to host this search engine just to spite you, and I will continue to do so as long as I am financially able to.
|
||||
|
||||
In case you are wondering, the initial investment cost me arround $1,000 USD, and ongoing costs are arround $50/month, nowhere near your outrageous pricing. This site was created by one person, not a team like you have.
|
||||
|
||||
Best Regards,
|
||||
Miyako
|
||||
|
||||
|
||||
--
|
||||
|
||||
Below I will post reports of you alledgedly scamming your users. If anyone would like to add their own reports, forward any applicable evidence to <a href="mailto:miyako@miyako.rocks">miyako@miyako.rocks</a></pre><br /><br />
|
||||
|
||||
<hr />
|
||||
|
||||
|
||||
Exhibit A: Bug reporter claims to not have recieved a promised reward for reporting a vulnerbility and leaked credentials.<br />
|
||||
|
||||
<a href="https://files.catbox.moe/mrregp.zip">Download .emls (with headers)</a>
|
||||
|
||||
<pre>From: Peter Kleissner <peter.kleissner@intelx.io>
|
||||
To: ccs@fbi.ac
|
||||
CC: Info <info@intelx.io>
|
||||
Sent time: 14 May, 2022 7:31:34 AM
|
||||
|
||||
Hi,
|
||||
|
||||
Just tried calling you - thanks for informing us! Crisis averted!
|
||||
|
||||
We have suspended the user in question for violation of our Terms of Service.
|
||||
|
||||
I'm curios to know how you found the domain breach.industries?
|
||||
|
||||
Regards and thanks again,
|
||||
|
||||
Peter
|
||||
|
||||
__________
|
||||
Peter Kleissner, Founder / CEO Intelligence X
|
||||
Kleissner Investments s.r.o.
|
||||
Na Strzi 1702/65, 140 00 Prague, Czech Republic
|
||||
|
||||
|
||||
-----Original Message-----
|
||||
From: ccs@fbi.ac <ccs@fbi.ac>
|
||||
Sent: Saturday, May 14, 2022 1:14 AM
|
||||
To: Info <info@intelx.io>
|
||||
Subject: Important
|
||||
|
||||
Hello, there was an intelx API key partially leaked along with an individual trying to use your API to create a website with the same functions.
|
||||
|
||||
Leaked : $api->setApiKey('dbf88656-f0a4-4b57-b89c-');
|
||||
Website: https://breach.industries/index.html
|
||||
|
||||
I can be contacted temporarily at +1 9294142882
|
||||
</pre>
|
||||
<hr />
|
||||
<pre>
|
||||
From: Info <info@intelx.io>
|
||||
To: ccs@fbi.ac
|
||||
CC: Info <info@intelx.io>
|
||||
Sent time: 16 May, 2022 8:24:55 AM
|
||||
|
||||
Thanks we fixed that.
|
||||
|
||||
Intelligence X Team
|
||||
|
||||
-----Original Message-----
|
||||
From: ccs@fbi.ac <ccs@fbi.ac>
|
||||
Sent: Sunday, May 15, 2022 3:18 AM
|
||||
To: Info <info@intelx.io>
|
||||
Subject: Error
|
||||
|
||||
https://z.zz.fo/lQ7tt.png <em>//Publisher's Note: this image showed an exploit allowing for millions of requests from an endpoint that was supposed to be ratelimited. </em>
|
||||
</pre>
|
||||
<hr />
|
||||
<pre>
|
||||
From: Peter Kleissner <peter.kleissner@intelx.io>
|
||||
To: ccs@fbi.ac
|
||||
Sent time: 16 May, 2022 8:27:34 AM
|
||||
> the same individual is going to try this method again and scrape all databases in order to create the site, rather than basing it off of an API key since we had some contact
|
||||
|
||||
Again thanks for the info. Can you please share more details? Which API endpoint is it, what is the method?
|
||||
|
||||
We are happy to provide you a free Professional account for reporting this.
|
||||
|
||||
Regards,
|
||||
|
||||
Peter
|
||||
|
||||
__________
|
||||
Peter Kleissner, Founder / CEO Intelligence X
|
||||
Kleissner Investments s.r.o.
|
||||
Na Strzi 1702/65, 140 00 Prague, Czech Republic
|
||||
|
||||
|
||||
-----Original Message-----
|
||||
From: ccs@fbi.ac <ccs@fbi.ac>
|
||||
Sent: Saturday, May 14, 2022 9:49 AM
|
||||
To: Info <info@intelx.io>
|
||||
Subject: [SPAM] Important
|
||||
|
||||
I came across this breach when I was looking to gain access to your API for free, since there were errors in the code, allowing me to gain partial access to the full version without paying. I also know the same individual is going to try this method again and scrape all databases in order to create the site, rather than basing it off of an API key since we had some contact.
|
||||
</pre>
|
||||
<hr />
|
||||
<pre>
|
||||
From: Info <info@intelx.io>
|
||||
To: ccs@fbi.ac
|
||||
CC: Info <info@intelx.io>
|
||||
Sent time: 16 May, 2022 10:25:38 AM
|
||||
|
||||
This has been fixed. If you find any other issues, kindly let us know!
|
||||
|
||||
Regards,
|
||||
|
||||
Intelligence X Team
|
||||
|
||||
-----Original Message-----
|
||||
From: Peter Kleissner
|
||||
Sent: Montag, 16. Mai 2022 11:45
|
||||
To: ccs@fbi.ac
|
||||
Subject: RE: [SPAM] Important
|
||||
|
||||
It's the preview endpoint isn’t it.
|
||||
|
||||
-----Original Message-----
|
||||
From: Peter Kleissner
|
||||
Sent: Montag, 16. Mai 2022 10:28
|
||||
To: ccs@fbi.ac
|
||||
Subject: RE: [SPAM] Important
|
||||
|
||||
> the same individual is going to try this method again and scrape all databases in order to create the site, rather than basing it off of an API key since we had some contact
|
||||
|
||||
Again thanks for the info. Can you please share more details? Which API endpoint is it, what is the method?
|
||||
|
||||
We are happy to provide you a free Professional account for reporting this.
|
||||
|
||||
Regards,
|
||||
|
||||
Peter
|
||||
|
||||
__________
|
||||
Peter Kleissner, Founder / CEO Intelligence X
|
||||
Kleissner Investments s.r.o.
|
||||
Na Strzi 1702/65, 140 00 Prague, Czech Republic
|
||||
|
||||
|
||||
-----Original Message-----
|
||||
From: ccs@fbi.ac <ccs@fbi.ac>
|
||||
Sent: Saturday, May 14, 2022 9:49 AM
|
||||
To: Info <info@intelx.io>
|
||||
Subject: [SPAM] Important
|
||||
|
||||
I came across this breach when I was looking to gain access to your API for free, since there were errors in the code, allowing me to gain partial access to the full version without paying. I also know the same individual is going to try this method again and scrape all databases in order to create the site, rather than basing it off of an API key since we had some contact.
|
||||
</pre>
|
30
dataapp/static/faq.html
Normal file
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>Illicit Search FAQ</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FAQ:</h1>
|
||||
<dl>
|
||||
<dt>Is this legal?</dt>
|
||||
<dd>Maybe. Depending on your region, it may be illegal to access this data. In the USA, it's not illegal to access leaked data.</dd><br />
|
||||
|
||||
<dt>I want my data removed!</dt>
|
||||
<dd>You always contact me via email: <a href="mailto:miyako@miyako.rocks">miyako@miyako.rocks</a> or Telegram: <a href="https://t.me/miyakoyako">@miyakoyako</a> with a <em>reasonable</em> request for free removal. Unreasonable requests (i.e. "Delete every gmail address!" or "My uncle is a very powerful person delete my data or I will sue you" (yes this actually happened)) will be ignored and/or met with mockery.</dd><br />
|
||||
|
||||
<dt>This password is hashed, will you crack it for me?</dt>
|
||||
<dd>No. There are many services that will crack passwords for you, free and paid.</dd><br />
|
||||
|
||||
<dt>This website is ugly!</dt>
|
||||
<dd>lol ya</dd><br />
|
||||
|
||||
<dt>Are my requests being logged?</dt>
|
||||
<dd>For all intents and purposes, Yes. It's impossible for any site to prove that user requests aren't being logged, and given that I'm using Cloudflare, I'm sure logs are being kept somewhere outside of my knowledge. That being said, I don't particularly care what you search.</dd><br />
|
||||
|
||||
<dt>Ok, but what data are you storing on me?</dt>
|
||||
<dd>Access logs + analytical data.</dd><br />
|
||||
|
||||
<dt>Why is this free?</dt>
|
||||
<dd>To spite <a href="/dear_peter">Peter Kleissner</a>. I make money from automated exports and donations.</dd>
|
||||
</dl>
|
||||
|
||||
</body>
|
BIN
dataapp/static/favicon.ico
Normal file
After Width: | Height: | Size: 223 KiB |
BIN
dataapp/static/images/icons/100.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
dataapp/static/images/icons/1024.png
Normal file
After Width: | Height: | Size: 654 KiB |
BIN
dataapp/static/images/icons/114.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
dataapp/static/images/icons/120.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dataapp/static/images/icons/128.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
dataapp/static/images/icons/144.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
dataapp/static/images/icons/152.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
dataapp/static/images/icons/16.png
Normal file
After Width: | Height: | Size: 793 B |
BIN
dataapp/static/images/icons/167.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
dataapp/static/images/icons/180.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
dataapp/static/images/icons/192.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
dataapp/static/images/icons/20.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
dataapp/static/images/icons/256.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
dataapp/static/images/icons/29.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
dataapp/static/images/icons/32.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
dataapp/static/images/icons/40.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
dataapp/static/images/icons/50.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
dataapp/static/images/icons/512.png
Normal file
After Width: | Height: | Size: 208 KiB |
BIN
dataapp/static/images/icons/57.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
dataapp/static/images/icons/58.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
dataapp/static/images/icons/60.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
dataapp/static/images/icons/64.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
dataapp/static/images/icons/72.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
dataapp/static/images/icons/76.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
dataapp/static/images/icons/80.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
dataapp/static/images/icons/87.png
Normal file
After Width: | Height: | Size: 11 KiB |
478
dataapp/static/map.html
Normal file
@ -0,0 +1,478 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<!-- Include the CesiumJS JavaScript and CSS files -->
|
||||
<script src="https://cesium.com/downloads/cesiumjs/releases/1.106/Build/Cesium/Cesium.js"></script>
|
||||
<link href="https://cesium.com/downloads/cesiumjs/releases/1.106/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
|
||||
<style>
|
||||
/* Fill full width */
|
||||
html,
|
||||
body,
|
||||
#cesiumContainer {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Display mapServerSelector over cesiumContainer (fixed to the top left) */
|
||||
#mapServerSelector {
|
||||
position: absolute;
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
/* Scrollable */
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.collapseable {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
<div id="cesiumContainer"></div>
|
||||
<!-- Div that will allow users what mapservers to select -->
|
||||
<div id="mapServerSelector">
|
||||
|
||||
<span>Usage: Click on any area within the USA to see who lives there. Select items below for additional data.</span>
|
||||
<br /><br />
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
let enabledMapServers = [];
|
||||
let selectedBaseLayer = 'earth';
|
||||
const baseLayers = ['osm', 'earth', 'bing']
|
||||
|
||||
let p3tTileset = null
|
||||
|
||||
const USStates = [
|
||||
'Alabama',
|
||||
'Alaska',
|
||||
'Arizona',
|
||||
'Arkansas',
|
||||
'California',
|
||||
'Colorado',
|
||||
'Connecticut',
|
||||
'Delaware',
|
||||
'District of Columbia',
|
||||
'Florida',
|
||||
'Georgia',
|
||||
'Hawaii',
|
||||
'Idaho',
|
||||
'Illinois',
|
||||
'Indiana',
|
||||
'Iowa',
|
||||
'Kansas',
|
||||
'Kentucky',
|
||||
'Louisiana',
|
||||
'Maine',
|
||||
'Maryland',
|
||||
'Massachusetts',
|
||||
'Michigan',
|
||||
'Minnesota',
|
||||
'Mississippi',
|
||||
'Missouri',
|
||||
'Montana',
|
||||
'Nebraska',
|
||||
'Nevada',
|
||||
'New Hampshire',
|
||||
'New Jersey',
|
||||
'New Mexico',
|
||||
'New York',
|
||||
'North Carolina',
|
||||
'North Dakota',
|
||||
'Ohio',
|
||||
'Oklahoma',
|
||||
'Oregon',
|
||||
'Pennsylvania',
|
||||
'Rhode Island',
|
||||
'South Carolina',
|
||||
'South Dakota',
|
||||
'Tennessee',
|
||||
'Texas',
|
||||
'Utah',
|
||||
'Vermont',
|
||||
'Virginia',
|
||||
'Washington',
|
||||
'West Virginia',
|
||||
'Wisconsin',
|
||||
'Wyoming'
|
||||
]
|
||||
|
||||
|
||||
const dataLayers = {
|
||||
'USA': {
|
||||
'Arizona': [
|
||||
{
|
||||
url: 'https://gis.mcassessor.maricopa.gov/arcgis/rest/services/Parcels/MapServer',
|
||||
layers: ['Maricopa - Parcels'],
|
||||
}
|
||||
],
|
||||
'Utah': [
|
||||
{
|
||||
url: 'https://maps.slcgov.com/gis/rest/services/publish/parcels/MapServer',
|
||||
layers: ['Salt Lake City - Parcels'],
|
||||
}
|
||||
],
|
||||
'Washington': [
|
||||
{
|
||||
url: 'https://maps.kirklandwa.gov/host/rest/services/Parcels/MapServer',
|
||||
layers: ['Kirkland - Parcels'],
|
||||
}
|
||||
],
|
||||
'Maryland': [
|
||||
{
|
||||
url: 'https://gis.calvertcountymd.gov/server/rest/services/Countywide/Parcels/MapServer',
|
||||
layers: ['Calvert County - Parcels'],
|
||||
}
|
||||
],
|
||||
'New Mexico': [
|
||||
{
|
||||
url: 'https://gis.donaanacounty.org/server/rest/services/Parcel/MapServer',
|
||||
layers: ['Dona Ana County - Parcels'],
|
||||
}
|
||||
],
|
||||
'California': [
|
||||
{
|
||||
url: 'https://maps.co.monterey.ca.us/server/rest/services/Land_Records/Parcels/MapServer',
|
||||
layers: ['Monterey - Parcels'],
|
||||
},
|
||||
{
|
||||
url: 'https://gis.slocounty.ca.gov/arcgis/rest/services/Public/parcels/MapServer',
|
||||
layers: ['San Louis Obispo - Data Parcels'],
|
||||
},
|
||||
{
|
||||
url: 'https://gissd.sandag.org/rdw/rest/services/Parcel/Parcels/MapServer',
|
||||
layers: ['San Diego Parcels (Labels)', 'San Diego Parcels'],
|
||||
},
|
||||
{
|
||||
url: 'https://maps.santabarbaraca.gov/arcgis/rest/services/Parcels/MapServer',
|
||||
layers: ['Santa Barbara - Parcels'],
|
||||
}
|
||||
],
|
||||
'Oregon': [
|
||||
{
|
||||
url: 'https://gis.co.douglas.or.us/server/rest/services/Parcel/Parcels/MapServer',
|
||||
layers: ['Douglas County - Parcels'],
|
||||
}
|
||||
],
|
||||
'Tennessee': [
|
||||
{
|
||||
url: 'https://gis.shelbycountytn.gov/public/rest/services/BaseMap/Parcel/MapServer',
|
||||
layers: ['Shelby County - Parcels'],
|
||||
}
|
||||
],
|
||||
'Florida': [
|
||||
{
|
||||
url: "https://gis.fdot.gov/arcgis/rest/services/Parcels/MapServer",
|
||||
layers: ["Parcel Search"],
|
||||
},
|
||||
{
|
||||
url: "https://maps.fiu.edu/arcgis/rest/services/Florida/FDOT/MapServer",
|
||||
// 1 - 31
|
||||
layers: ["Interchanges", "Intersections", "Railroad Crossings", "Rest & Welcome Centers", "Traffic Signal Locations", "Bridges", "Divided (?)", "Faccross (?)", "Functional Classification", "Median Width", "Median Type", "Number of Lanes", "Active on the State Highway System", "Pavement Conditions", "Access Control Type", "Road Status", "Surface Width", "", "", "", "Toll Roads", "Interstates", "US Highways", "National Highway System", "Federal Aid Highway System", "Strategic Intermodal System Roads", "State Roads", "County Roads", "Active Off the State Highway System", "Roads with Local Names", "Maximum Speed Limits", "Truck Volume"],
|
||||
},
|
||||
{
|
||||
url: "https://ca.dep.state.fl.us/arcgis/rest/services/Map_Direct/Program_Support/MapServer",
|
||||
// 0-50
|
||||
layers: ["", "", "", "Soil Survey", "", "Areas of Critical State Concern", "National Wetlands", "Military Bases", "Port Facilities", "CERP Project", "Ecoregions/Subregions", "Potential Natural Areas", "Woodstork Nesting Colonies", "Eagle Nests", "", "", "ERP Conservation Easements (Areas)", "ERP Conservation Easements (Points)", "Managed Entities", "Permit Applications", "Non DEP Wastewater Facilities Potentially Accepting Septage", "Non DEP Wastewater Facilities Potentially Accepting Septage", "DOH Dental Facilities", "DOH Septage Application Sites", "DOH Beach Sampling Locations", "DOH Beach Sampling Locations - 1 Mile Buffer", "", "", "", "", "National Estuarine Research Reserve", "Florida State Park Burn Goals (Current Year)", "Florida State Park Burn Goals (Previous Year)", "Florida State Parks - Last Burn Date", "Florida State Park Boundaries", "", "", "", "Florida Keys National Marine Sanctuary", "FWC Shoreline", "NOAA Mean Higher High Water", "NOAA Composite Shoreline", "Retained Waters List - Flowlines", "Retained Waters List - Waterbodies", "Retained Waters List - Areas", "Tribe 404 Public Notice", "Consolidated Retained Waters Guideline", "Historic Commerce Waters - Flowline", "Historic Commerce Waters - Waterbodies", "Federal Projects - Points", "Federal Projects - Areas"],
|
||||
}
|
||||
],
|
||||
'Georgia': [
|
||||
{
|
||||
url: 'https://dcgis.dekalbcountyga.gov/hosted/rest/services/Parcels/MapServer',
|
||||
layers: ['DeKalb County Parcels'],
|
||||
},
|
||||
{
|
||||
url: 'https://www.mgrcmaps.org/arcgis/rest/services/MonroeCounty/MonroeCountyParcels/MapServer',
|
||||
layers: ['', 'Monroe County Parcels']
|
||||
},
|
||||
{
|
||||
url: 'https://weba.claytoncountyga.gov:5443/server/rest/services/TaxAssessor/ParcelSales/MapServer',
|
||||
layers: ['Clayton County Parcels'],
|
||||
},
|
||||
{
|
||||
url: 'https://rnhp.dot.ga.gov/hosting/rest/services/ExcessParcelsExternal/MapServer',
|
||||
layers: ['Excess Parcels'],
|
||||
},
|
||||
{
|
||||
url: 'https://rnhp.dot.ga.gov/hosting/rest/services/web_trafficcameras/MapServer',
|
||||
layers: ['Traffic Cameras'],
|
||||
},
|
||||
{
|
||||
url: 'https://rnhp.dot.ga.gov/hosting/rest/services/ARCWEBSVCMAP/MapServer',
|
||||
layers: ['AADT', 'Interstates', 'US-Highways', 'State Routes', 'Statewide Roads', 'Milepost Route', 'Milepoint Route', 'Transportation Management Area', 'County Boundaries', 'Cities', 'Congressional District', 'House Districts', 'Senate Districts', 'GDOT Maintenance Areas', 'GDOT Districts', 'Metro Planning Organizations'],
|
||||
}
|
||||
],
|
||||
'Michigan': [
|
||||
{
|
||||
'url': 'https://maps.lansingmi.gov/arcgis/rest/services/Police/Camera/MapServer',
|
||||
'layers': ['Police Cameras']
|
||||
}
|
||||
],
|
||||
'Kansas': [
|
||||
{
|
||||
url: 'https://gis2.lawrenceks.org/ArcGIS/rest/services/PublicWorks/TrafficCameras/MapServer',
|
||||
layers: ['Traffic Cameras']
|
||||
}
|
||||
],
|
||||
'Rhode Island': [
|
||||
{
|
||||
url: 'https://vueworks.dot.ri.gov/arcgis/rest/services/VW_ITSAssets105/MapServer',
|
||||
layers: ['Wrong Way Driver', 'Electronic Message Sign', 'Cameras']
|
||||
}
|
||||
],
|
||||
'Alaska': [
|
||||
{
|
||||
url: 'https://maps.commerce.alaska.gov/server/rest/services/Services/CDO_PublicSafety/MapServer',
|
||||
layers: ['Crime']
|
||||
}
|
||||
],
|
||||
'North Carolina': [
|
||||
{
|
||||
url: 'https://services.nconemap.gov/secure/rest/services/NC1Map_Environment/FeatureServer',
|
||||
layers: ['NC1Map Environment']
|
||||
},
|
||||
{
|
||||
url: 'https://gis.charlottenc.gov/arcgis/rest/services/ODP/CMPD_Homicide/MapServer',
|
||||
layers: ['Charlotte - Homicide']
|
||||
},
|
||||
{
|
||||
url: 'https://gis.charlottenc.gov/arcgis/rest/services/ODP/CMPD_Calls_for_Service/MapServer',
|
||||
layers: ['Charlotte - Calls for Service']
|
||||
},
|
||||
{
|
||||
url: 'https://gis.charlottenc.gov/arcgis/rest/services/ODP/City_Space_ODP_Data/MapServer',
|
||||
layers: ['Charlotte - AptIndex Apartments', 'Charlotte - Vulnerbility to Displacement by NPA']
|
||||
},
|
||||
{
|
||||
url: 'https://gis.charlottenc.gov/arcgis/rest/services/ODP/Parcel_Zoning_Lookup/MapServer',
|
||||
layers: ['Charlotte - Parcel Zoning Lookup']
|
||||
}
|
||||
],
|
||||
'Indiana': [
|
||||
{
|
||||
url: 'http://maps.evansvillegis.com/arcgis_server/rest/services/PROPERTY/PARCELS/MapServer',
|
||||
layers: ['Vanderburgh County Parcels']
|
||||
}
|
||||
],
|
||||
'Virginia': [
|
||||
{
|
||||
url: 'https://maps.nnva.gov/gis/rest/services/Operational/Parcel/MapServer',
|
||||
layers: ['Newport News - Parcels']
|
||||
}
|
||||
],
|
||||
'Wisconsin': [
|
||||
{
|
||||
url: 'https://gisweb.fdlco.wi.gov/server/rest/services/Parcels_AllSiteAddr_ViewExport/MapServer',
|
||||
layers: ['Address Numbers', 'Labels', 'Block_Numbers_Labels', 'CSM_Numbers_Labels', 'Dimensions_Labels', 'Lot_Numbers_Labels', 'Parcel_Numbers_Labels', 'Fond du Lac County - Parcels'],
|
||||
}
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
function addImageryProviders(viewer) {
|
||||
// Add to the mapServerSelector div
|
||||
const mapServerSelector = document.getElementById('mapServerSelector');
|
||||
|
||||
// Create a collapseable for each country
|
||||
Object.keys(dataLayers).forEach((key) => {
|
||||
// Create a collapseable for the country
|
||||
const countryCollapseable = document.createElement('div');
|
||||
countryCollapseable.className = 'collapseable';
|
||||
countryCollapseable.innerHTML = key;
|
||||
countryCollapseable.id = key;
|
||||
mapServerSelector.appendChild(countryCollapseable);
|
||||
|
||||
// Create a collapseable for each state within the country
|
||||
Object.keys(dataLayers[key]).forEach((state) => {
|
||||
const stateCollapseable = document.createElement('div');
|
||||
stateCollapseable.className = 'collapseable';
|
||||
stateCollapseable.innerHTML = ' ' + state;
|
||||
stateCollapseable.id = state;
|
||||
countryCollapseable.appendChild(stateCollapseable);
|
||||
|
||||
// Create a checkbox for each layer within the state
|
||||
dataLayers[key][state].forEach((stateMapServer) => {
|
||||
// For each layer
|
||||
stateMapServer.layers.forEach((layer, layerIdx) => {
|
||||
// If the name is empty skip it
|
||||
if (layer === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Add break
|
||||
stateCollapseable.appendChild(document.createElement('br'));
|
||||
const checkbox = document.createElement('input');
|
||||
checkbox.type = 'checkbox';
|
||||
checkbox.id = layer;
|
||||
checkbox.name = layer;
|
||||
checkbox.value = layer;
|
||||
checkbox.checked = false;
|
||||
|
||||
// Add event handler for when changed
|
||||
checkbox.addEventListener('change', (event) => {
|
||||
if (event.target.checked) {
|
||||
console.log(`Adding imagery provider: ${stateMapServer.url} - ${layer}`);
|
||||
// Add the imagery provider to the list of enabled map servers
|
||||
enabledMapServers.push({
|
||||
url: stateMapServer.url,
|
||||
layer: layerIdx,
|
||||
layerDesc: layer,
|
||||
});
|
||||
} else {
|
||||
console.log(`Removing imagery provider: ${stateMapServer.url} - ${layer}`);
|
||||
// Find the imagery provider and remove it
|
||||
enabledMapServers.splice(enabledMapServers.findIndex((mapServer) => {
|
||||
return mapServer.url === stateMapServer.url && mapServer.layer === layer;
|
||||
}), 1);
|
||||
}
|
||||
|
||||
// Remove all primitives
|
||||
viewer.scene.primitives.removeAll();
|
||||
|
||||
// Remove all imagery providers except for Google Earth
|
||||
viewer.imageryLayers.removeAll(true);
|
||||
|
||||
// Re-add google earth
|
||||
const googleEarthImageryProvider = new Cesium.UrlTemplateImageryProvider({
|
||||
url: 'https://khms0.google.com/kh/v=946?x={x}&y={y}&z={z}',
|
||||
tilingScheme: new Cesium.WebMercatorTilingScheme(),
|
||||
maximumLevel: 23,
|
||||
});
|
||||
|
||||
viewer.imageryLayers.addImageryProvider(googleEarthImageryProvider);
|
||||
|
||||
// Add all enabled imagery providers
|
||||
enabledMapServers.forEach((mapServer) => {
|
||||
const imageryProvider = new Cesium.ArcGisMapServerImageryProvider({
|
||||
url: mapServer.url,
|
||||
layers: mapServer.layer,
|
||||
});
|
||||
|
||||
|
||||
viewer.imageryLayers.addImageryProvider(imageryProvider);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// Add 2x emsp before the checkbox
|
||||
stateCollapseable.appendChild(document.createTextNode('\u2003\u2003'));
|
||||
|
||||
stateCollapseable.appendChild(checkbox);
|
||||
|
||||
// Add 2x emsp before the checkbox
|
||||
|
||||
const label = document.createElement('label');
|
||||
label.htmlFor = layer;
|
||||
label.appendChild(document.createTextNode(layer));
|
||||
stateCollapseable.appendChild(label);
|
||||
|
||||
// Add the imagery provider to the viewer
|
||||
// const imageryProvider = new Cesium.ArcGisMapServerImageryProvider({
|
||||
// url: stateMapServer.url,
|
||||
// layers: layer,
|
||||
// });
|
||||
// viewer.imageryLayers.addImageryProvider(imageryProvider);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
// Initialize the Cesium Viewer in the HTML element with the `cesiumContainer` ID.
|
||||
|
||||
const viewer = new Cesium.Viewer('cesiumContainer', {
|
||||
timeline: false,
|
||||
animation: false,
|
||||
});
|
||||
|
||||
var Cesium3DTileFeature = Cesium.Cesium3DTileFeature;
|
||||
|
||||
const addP3T = async function () {
|
||||
try {
|
||||
p3tTileset = await Cesium.createGooglePhotorealistic3DTileset();
|
||||
viewer.scene.primitives.add(p3tTileset);
|
||||
|
||||
// Remove the tileset
|
||||
// viewer.scene.primitives.remove(p3tTileset);
|
||||
} catch (error) {
|
||||
console.log(`Failed to load tileset: ${error}`);
|
||||
}
|
||||
}
|
||||
|
||||
addP3T()
|
||||
|
||||
// Remove all imagery providers except for Google Earth
|
||||
viewer.imageryLayers.removeAll(true);
|
||||
|
||||
// Add google earth's tile layer
|
||||
// const googleEarthImageryProvider = new Cesium.UrlTemplateImageryProvider({
|
||||
// url: 'https://khms0.google.com/kh/v=946?x={x}&y={y}&z={z}',
|
||||
// tilingScheme: new Cesium.WebMercatorTilingScheme(),
|
||||
// maximumLevel: 23,
|
||||
// });
|
||||
|
||||
// viewer.imageryLayers.addImageryProvider(googleEarthImageryProvider);
|
||||
|
||||
addImageryProviders(viewer);
|
||||
|
||||
|
||||
// Listen for when a user clicks on an area
|
||||
var handler = new Cesium.ScreenSpaceEventHandler(viewer.scene.canvas);
|
||||
|
||||
handler.setInputAction(function (click) {
|
||||
// Get the lat/long of click area
|
||||
var cartesian = viewer.camera.pickEllipsoid(click.position, viewer.scene.globe.ellipsoid);
|
||||
var cartographic = Cesium.Cartographic.fromCartesian(cartesian);
|
||||
|
||||
let lat = Cesium.Math.toDegrees(cartographic.latitude);
|
||||
let long = Cesium.Math.toDegrees(cartographic.longitude);
|
||||
|
||||
// Query the API for the clicked area
|
||||
fetch(`/spatial?latLong=${lat},${long}&d=0.1`)
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
// For each result, create a dot at their lat/long
|
||||
data.records.forEach(record => {
|
||||
let lat = record.latLong.split(',')[0];
|
||||
let long = record.latLong.split(',')[1];
|
||||
|
||||
// Plot the dot above the ground by 20m
|
||||
let dot = viewer.entities.add({
|
||||
position: Cesium.Cartesian3.fromDegrees(long, lat, 20),
|
||||
point: {
|
||||
pixelSize: 10,
|
||||
color: Cesium.Color.RED,
|
||||
outlineColor: Cesium.Color.WHITE,
|
||||
outlineWidth: 2,
|
||||
heightReference: Cesium.HeightReference.CLAMP_TO_GROUND
|
||||
},
|
||||
// Attach the record to the dot
|
||||
description: Object.entries(record).map(([key, value]) => `<p><b>${key}</b>: ${value}</p>`).join('')
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
}, Cesium.ScreenSpaceEventType.LEFT_CLICK);
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
153
dataapp/static/peter_files/RE Error.eml
Normal file
@ -0,0 +1,153 @@
|
||||
Return-Path: <info@intelx.io>
|
||||
Delivered-To: ccs@fbi.ac
|
||||
Received: from box.courvix.com ([127.0.0.1])
|
||||
by box.courvix.com with LMTP id 6OxHBkoKgmLYaAAARpRHQQ
|
||||
for <ccs@fbi.ac>; Mon, 16 May 2022 09:24:42 +0100
|
||||
X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on box.courvix.com
|
||||
X-Spam-Level:
|
||||
X-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,
|
||||
DKIM_VALID,DKIM_VALID_AU,FORGED_SPF_HELO,RCVD_IN_DNSWL_NONE,
|
||||
RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,T_SCC_BODY_TEXT_LINE autolearn=no
|
||||
autolearn_force=no version=3.4.2
|
||||
X-Spam-Report:
|
||||
* -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2)
|
||||
* [40.107.21.116 listed in wl.mailspike.net]
|
||||
* -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at
|
||||
* https://www.dnswl.org/, no trust
|
||||
* [40.107.21.116 listed in list.dnswl.org]
|
||||
* -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1%
|
||||
* [score: 0.0000]
|
||||
* -0.0 SPF_HELO_PASS SPF: HELO matches SPF record
|
||||
* -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature
|
||||
* 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily
|
||||
* valid
|
||||
* -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from
|
||||
* author's domain
|
||||
* 1.0 FORGED_SPF_HELO No description available.
|
||||
* -0.0 T_SCC_BODY_TEXT_LINE No description available.
|
||||
X-Spam-Score: -1.0
|
||||
Received: from EUR05-VI1-obe.outbound.protection.outlook.com (mail-vi1eur05on2116.outbound.protection.outlook.com [40.107.21.116])
|
||||
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
|
||||
(No client certificate requested)
|
||||
by box.courvix.com (Postfix) with ESMTPS id A5A9441A969
|
||||
for <ccs@fbi.ac>; Mon, 16 May 2022 09:24:41 +0100 (BST)
|
||||
Authentication-Results: box.courvix.com; dmarc=pass (p=reject dis=none) header.from=intelx.io
|
||||
Authentication-Results: box.courvix.com;
|
||||
dkim=pass (2048-bit key; unprotected) header.d=intelx.io header.i=@intelx.io header.b="iaaCmZer";
|
||||
dkim-atps=neutral
|
||||
ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none;
|
||||
b=cm4LKj4S8LnVgt1myna2XxlGOIYxL2DEhLrFC8ZqhUvttYlhhJKScXvVdJ5pyBlzTfsSDG/dzlfJFa6uLA95OHDXalof/ahtI2aYbp1ylS1gLmSJXT6Tpt43aTltyY1/oKKbPHElFPg7tXC8qHZ1vBEqXL9BHpa7b+0jL6f5v3k1JKKsQqKe6qwXFzYc8xEex2wG6mxWNa3RvMk8QUb869G3QrQ9wpwoVr9Mouhfs3U6rgJja9BfET8YXp492yF2/6ha4/QBkvUokeuhIjTCS2mo0Ya1Ph2152MADCdmgHK8TZLYSeU0tNqLMr7tDHXWP8K+EgqI40ovZIJuWMFyaQ==
|
||||
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com;
|
||||
s=arcselector9901;
|
||||
h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1;
|
||||
bh=HUdeMt/31QPFBCMlUfQfkL/UF0ZJpU4om1Ofvi9QyTk=;
|
||||
b=EBhLGRPbu7YD6Mx32ebXRTez0vK0CvL09VwHsm+YgwpqA4Jv9UAs2dd+3Z9zejfBSH0RuEq8pRuZbRJBaB1T9Jya79LOubob6OoraIEVV2BYZ7DhJniGucromcrGU1CnClYDBDxCGoDWBNwTxKPRCNl7mEpHEsuc9BPztuLLBlaQmr08AMRWbMp5cpBr+9w82/K6xmQm+n5a1hR1sjR2pXAwd73EqVRFAduc29U5Xq9f6Z1iN7ma4l9ulDw3RFmi6wvVPutHQLi2lais0SKzeHYeKTd+50KMM4+qTJG8OKbudHnwKFxej+mKHd3TjQ3DhWVkCIH31LW0WSNySDLDZA==
|
||||
ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=pass
|
||||
smtp.mailfrom=intelx.io; dmarc=pass action=none header.from=intelx.io;
|
||||
dkim=pass header.d=intelx.io; arc=none
|
||||
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=intelx.io;
|
||||
s=selector1;
|
||||
h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck;
|
||||
bh=HUdeMt/31QPFBCMlUfQfkL/UF0ZJpU4om1Ofvi9QyTk=;
|
||||
b=iaaCmZerUM4oHCKMzCX1M3t5rt9z2neDmyTuzf2qrlYHz0Hbfowz5tkl8VTf0Tn9Y4K8Xb8i9V7nMnbMFY9xmr3oTEHG7jIU0rL0XudAZvzyGExvA9fbZbWyZ8zcntaDpskjtbjP+ReV7/onFpD6Tss9REndWNFAARx6hCWOiYGDpJCPIk8YsSU2NMTo2sRjYLfTJzsJEVuf2oA5/OADqroXWn4wuH3hg2NxXV6pzHslZmofycH4u6XI9Ztea4EeMsFBXUMd5SuwVpAYTXWD5bulmbeUOrys2old+d2r313E1A0065+Fg+6+SMMRNrbxYztWq5Z9ABc+PJZAZG9Zzw==
|
||||
Received: from VE1PR08MB5680.eurprd08.prod.outlook.com (2603:10a6:800:1a6::21)
|
||||
by DB9PR08MB7065.eurprd08.prod.outlook.com (2603:10a6:10:2bd::11) with
|
||||
Microsoft SMTP Server (version=TLS1_2,
|
||||
cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.5250.13; Mon, 16 May
|
||||
2022 08:24:55 +0000
|
||||
Received: from VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
([fe80::fd36:ebd2:5ddf:2b11]) by VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
([fe80::fd36:ebd2:5ddf:2b11%9]) with mapi id 15.20.5250.018; Mon, 16 May 2022
|
||||
08:24:55 +0000
|
||||
From: Info <info@intelx.io>
|
||||
To: "ccs@fbi.ac" <ccs@fbi.ac>
|
||||
CC: Info <info@intelx.io>
|
||||
Subject: RE: Error
|
||||
Thread-Topic: Error
|
||||
Thread-Index: AQHYZ/myEhCZOyW6dEGYqMGJkzvacq0g8iJwgAA6lmA=
|
||||
Date: Mon, 16 May 2022 08:24:55 +0000
|
||||
Message-ID:
|
||||
<VE1PR08MB5680D03FEB963D819208ADEDFACF9@VE1PR08MB5680.eurprd08.prod.outlook.com>
|
||||
References: <7d1b7fc9b10e98b1ed862bfad2116620@fbi.ac>
|
||||
<AM0PR08MB3267056A64B39DA195D0F21FF5CF9@AM0PR08MB3267.eurprd08.prod.outlook.com>
|
||||
In-Reply-To:
|
||||
<AM0PR08MB3267056A64B39DA195D0F21FF5CF9@AM0PR08MB3267.eurprd08.prod.outlook.com>
|
||||
Accept-Language: en-US
|
||||
Content-Language: en-US
|
||||
X-MS-Has-Attach:
|
||||
X-MS-TNEF-Correlator:
|
||||
authentication-results: dkim=none (message not signed)
|
||||
header.d=none;dmarc=none action=none header.from=intelx.io;
|
||||
x-ms-exchange-messagesentrepresentingtype: 1
|
||||
x-ms-publictraffictype: Email
|
||||
x-ms-office365-filtering-correlation-id: af4ac309-a42a-4b70-233e-08da37158ec4
|
||||
x-ms-traffictypediagnostic: DB9PR08MB7065:EE_
|
||||
x-microsoft-antispam-prvs:
|
||||
<DB9PR08MB70656E8AF6E47AC6511242F4DECF9@DB9PR08MB7065.eurprd08.prod.outlook.com>
|
||||
x-ms-exchange-senderadcheck: 1
|
||||
x-ms-exchange-antispam-relay: 0
|
||||
x-microsoft-antispam: BCL:0;
|
||||
x-microsoft-antispam-message-info:
|
||||
vSdclDkyE7t6SmrZurIebC8YuKaZYc2I5iyioFUVhzRmDMPmsyntVIstTbxo5bUKv8fR1bKcS9BPE4O7NvkfFa2etcVuBhBPY2R/kgUOccUbmRSYKtn+aWz/db1NlcyrQvY+loe2By4Aov/UZMXM1cxwmZznZZ4mGlMGu5e/466vqn0A7W0GJ5tz2iL6b8LZCAoueIuylFsyXmn5lMy9u/B6uedwlRuBR49d9KCZEpjFK6x2f8lhU34VkHbqoEIvO0Kihw3bky5Q3dBGM8sUhAaBhDTYHkciPDvIKFFeadaPPaA/0XEG99k8uiVDnWUFr+dfc3uTA/tl7Xg8IaSCJ6JtxK70ZlthHyfKj59Q4kLlS4KvOvaqMMvOVNJ6Lh0pi4eUciznwbW/RfQGT72+I1tOG6b+4OjzMT2w5snjxdZcTVuHBT2sS+Y9OmnK5k5VOZBcrVvQKo8ppUb/AUOFVrBgLGYCgfGZ5Z2wmc2jpRUKEUmulr3zuIy0GKtDU08L4NgTPT5MSHs+SZuGzMbARSphP4DEPbqW33ylNJfZvA4Cn21/Q7wPgsIjmT47JC66tpB2hLH4fhHPJg5wBGfMpbzMldNK6DE6MKleWWHunnmFuTtHfQ0dsFQRlco+eg/RURKjMEcEaFAgjXXReiQn6hBhZQittq1cJf4+FqBrneZ27xODUJ16oX2Y6lWUqJQCzHq2GqdUfF9fyYq101QFanqWaAymP3fksb+YpSb2P7ZE97+FZV7wZ1vxrEYY62+bOnMGE2g2Xr2TNIO8AJx4JA==
|
||||
x-forefront-antispam-report:
|
||||
CIP:255.255.255.255;CTRY:;LANG:en;SCL:1;SRV:;IPV:NLI;SFV:NSPM;H:VE1PR08MB5680.eurprd08.prod.outlook.com;PTR:;CAT:NONE;SFS:(13230001)(39830400003)(376002)(366004)(136003)(396003)(346002)(6506007)(3480700007)(71200400001)(186003)(316002)(2906002)(508600001)(6916009)(558084003)(26005)(9686003)(966005)(53546011)(55016003)(41300700001)(38070700005)(7696005)(122000001)(66476007)(64756008)(76116006)(66946007)(66446008)(8676002)(4326008)(66556008)(33656002)(8936002)(5660300002)(38100700002)(83380400001)(107886003)(7116003)(86362001)(52536014);DIR:OUT;SFP:1102;
|
||||
x-ms-exchange-antispam-messagedata-chunkcount: 1
|
||||
x-ms-exchange-antispam-messagedata-0:
|
||||
=?utf-8?B?OG9KcFZ1WnQvSWRDRlZ4cTZzQTZBMW9oVlF3SE9nUXFFaUl4U3JaN0dqRkYy?=
|
||||
=?utf-8?B?TVpDc0l6T2t4L0VWRHAzT3lwQUZidEZFOFYrMjVQc3dINlRaSU5iQXJQb01X?=
|
||||
=?utf-8?B?WUpqT2VraFZLbllNYUxSTXZyK3FqM200eUtnTFFrOFVxSSt2N3JRZUkweGdy?=
|
||||
=?utf-8?B?d20zSkVld2tObDB0TXFSbFZudUVIVDZXcGtWUjhNTUFOQng0LzZla01ZdHdK?=
|
||||
=?utf-8?B?RG9iazZqZXM1SlcxMmZIRDlNR01kMXNnRnVldUxXOUUrTERSRHdVb0FUKzA3?=
|
||||
=?utf-8?B?VVAydGlQNDFMMGhyQk44T0RUTmNFYzJZbE1IRlJvL09ObzgyUndBN013UFh0?=
|
||||
=?utf-8?B?TXJvS3BFQTVFb1hjZ2RGNVpDY1c1bXdFeCtrL1l4UGFncVhsL3czQjEwaHJs?=
|
||||
=?utf-8?B?eS9ndFdnM0tEVUdKbjQ4YWJnQ2RjcWZTeTluVkNuN05UcUdhWTBjNithd3ZV?=
|
||||
=?utf-8?B?WFB2K3dSM1NDY3VPc0d4Zk1MeGR0V2JGTS9ZVzVmQlYwd1kwSkxaN2d4dEFy?=
|
||||
=?utf-8?B?c0t2YmpkdC9xZ3A0WmYwOTlvTzRYS1IxMi9ZQWV1VlE3UE9FOWdpbGxVWkpI?=
|
||||
=?utf-8?B?TkZTUENjNXYxUzJneDd3NXpXcHpoK0xQZ013ay9KTy9IQVJvcDFoVWQ0YUd3?=
|
||||
=?utf-8?B?OFRzZ0dDcHV5S1pKWjNSZFk4Nll5aGF2OVJwN3dRZldIZVBFcmJRUWxwNmhx?=
|
||||
=?utf-8?B?Mmt6Q1RRV3lpdDk3WE03bVlPN2xwMmlRc2loN1VWREo1VEpveEZycWFjRFl3?=
|
||||
=?utf-8?B?a2VIME5ZNVRiNGVCaTNCT0dqdEZFcmdwb1E1bnhTLzlNcWxhU0FkZDZsU2c4?=
|
||||
=?utf-8?B?QXBPSkp2SWxuNkduSzNkS1M3QjlUSWJia3FkWmFLZkhobTl3RTZFazc3a2NY?=
|
||||
=?utf-8?B?RkVtbHdweG9jd2VvS3o1WmtsaHlkeG5BVHZWZFAxNTg4Z2VuV0pkTkgxVUNO?=
|
||||
=?utf-8?B?dlRSSkZDcmF3WlV1TUpSckJPNFBaK0pLUnlCZUh6QTdPQWZCdXBReGxjZkxV?=
|
||||
=?utf-8?B?UHBSUlBVWmJYeGwwcVJ0V1RhVEgvU1o2eUpKektMdTJRZkFWaFk5K000RzV2?=
|
||||
=?utf-8?B?T3k0aS9IbHA2cFJjeFpDZytRaDZZN0U4YmV0VGUyU3FWN1lnVktkRXR5bjQ3?=
|
||||
=?utf-8?B?UEwrTkRicFJVMGtjUHZPbS9henBENnFQQ0UxdmxVVjJhaTNHRVJaTG5IUHNp?=
|
||||
=?utf-8?B?dEMvT2U0VjJDUWhwb1RPMzVVU3ZqVFY0NWpuUE9UVmFxNDF4UlIrN2w0ZzJ5?=
|
||||
=?utf-8?B?OVRTSVM3TmVsUHRpdFVIU3RiY1U5SDlVMzVQN2s0ejc4blkzRjNtN1hRbEo3?=
|
||||
=?utf-8?B?K1Q0aFQyRENDbUJVU0xwOWp3eVNlekZaMEJaOWRqaStibVFJT3VaSDNIU2xZ?=
|
||||
=?utf-8?B?aVhXMFQ2eGNDTGlZU1JrYXBRUHdsbjZRYmpHMHlhTHkrblhMT0ZMRUhYSnMv?=
|
||||
=?utf-8?B?aXQrN3Ntb2h1ek5VazNkRUVFcTlrMEJtZkpaQkJMY0JUWGZ6dU5RZ1VqNC9j?=
|
||||
=?utf-8?B?aEQveTRvVjVyV2JHNXFoT28rZmw4bEYwSmMvRXRWVVFDeFEwWFN5NXhrYlI4?=
|
||||
=?utf-8?B?dkt3MURlZHRQdGhsNm9vSmZXRUxFbnl1cU5pdWo0WngrYXJiWnl1OVpudlFW?=
|
||||
=?utf-8?B?aDR6MlFWUFlMek1UdlArLzhuaGtxcGRqaDZlbnV2Z1NhS1JndlBIYllwNFhQ?=
|
||||
=?utf-8?B?MmFReDNvWVpYWTFiUVFqOHhBYjk1V2ZZMWd3N3NkNEZzYkllNnJuTmxMdXE2?=
|
||||
=?utf-8?B?cDNsMUNya2FWcW5sK3M0SjNOS0dvWFJ1bDhTTjQycVFWc2FNTGtTc0ZOV1Fn?=
|
||||
=?utf-8?B?OGE1NWpmcTJQL1V4YmdPSWZwNlJ0MGlhZHRHUkcra291VlF2RWZNSXJxV1po?=
|
||||
=?utf-8?B?NFd3U2JwcmY0emdieCtkZGtRUlNHWk55aUhFc2FHajFqYzY2M3MyQkZ5NzA1?=
|
||||
=?utf-8?B?K1NtbktlTXM3S2QyelRoTFFDblF6VDFycWsvdDl2UDAwc2d4YW1UUWZFRTMy?=
|
||||
=?utf-8?B?YnpMcmRTRlRBcXEzVHV0b2hJTjJ3bWZEaGFLc0huYW5jOTF5ZzJ2bFN5Q2t4?=
|
||||
=?utf-8?B?N29jRGhLMzFhZ1Y1cEo4bWFDVEpLNG9UQ3ZPQS9jcStaV2llcDNoNmpZVUwz?=
|
||||
=?utf-8?B?VWtudndjSzY0dkFhMVhuSTRYZnYzdHpLdEh1WThDcE9hRldiZnRTOW5QNE40?=
|
||||
=?utf-8?B?bi9hV2Z6OThHcnNVWVVhUnp3eHR6MlNMOGlicHh3KzFpTHRDcXlDY210Y1J6?=
|
||||
=?utf-8?B?VVJ3UWlKMnV4OGlLYnhyRnVTWEpzMDFxVUNJS0NLVkwzR2dsczd4MHJpVTNi?=
|
||||
=?utf-8?Q?qvGQ3gXdaCioTkYaxJ?=
|
||||
Content-Type: text/plain; charset="utf-8"
|
||||
Content-Transfer-Encoding: base64
|
||||
MIME-Version: 1.0
|
||||
X-OriginatorOrg: intelx.io
|
||||
X-MS-Exchange-CrossTenant-AuthAs: Internal
|
||||
X-MS-Exchange-CrossTenant-AuthSource: VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
X-MS-Exchange-CrossTenant-Network-Message-Id: af4ac309-a42a-4b70-233e-08da37158ec4
|
||||
X-MS-Exchange-CrossTenant-originalarrivaltime: 16 May 2022 08:24:55.5249
|
||||
(UTC)
|
||||
X-MS-Exchange-CrossTenant-fromentityheader: Hosted
|
||||
X-MS-Exchange-CrossTenant-id: 91a34496-034c-4de6-8f88-6d4995c569c2
|
||||
X-MS-Exchange-CrossTenant-mailboxtype: HOSTED
|
||||
X-MS-Exchange-CrossTenant-userprincipalname: l94JDPHb+vRj5IEygngNG5xfkcG196k+OeTUxCEIz1Z3DrVc4cob+TasulRKALm+yxZHZzvvuICXqvhb2fCa6V51tnOOws1VYe2p0nXjUMY=
|
||||
X-MS-Exchange-Transport-CrossTenantHeadersStamped: DB9PR08MB7065
|
||||
|
||||
VGhhbmtzIHdlIGZpeGVkIHRoYXQuDQoNCkludGVsbGlnZW5jZSBYIFRlYW0NCg0KLS0tLS1Pcmln
|
||||
aW5hbCBNZXNzYWdlLS0tLS0NCkZyb206IGNjc0BmYmkuYWMgPGNjc0BmYmkuYWM+IA0KU2VudDog
|
||||
U3VuZGF5LCBNYXkgMTUsIDIwMjIgMzoxOCBBTQ0KVG86IEluZm8gPGluZm9AaW50ZWx4LmlvPg0K
|
||||
U3ViamVjdDogRXJyb3INCg0KaHR0cHM6Ly96Lnp6LmZvL2xRN3R0LnBuZw0K
|
165
dataapp/static/peter_files/RE Important.eml
Normal file
@ -0,0 +1,165 @@
|
||||
Return-Path: <peter.kleissner@intelx.io>
|
||||
Delivered-To: ccs@fbi.ac
|
||||
Received: from box.courvix.com ([127.0.0.1])
|
||||
by box.courvix.com with LMTP id yNAfLstaf2K8BgAARpRHQQ
|
||||
for <ccs@fbi.ac>; Sat, 14 May 2022 08:31:23 +0100
|
||||
X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on box.courvix.com
|
||||
X-Spam-Level:
|
||||
X-Spam-Status: No, score=0.4 required=5.0 tests=BAYES_05,DKIM_SIGNED,
|
||||
DKIM_VALID,DKIM_VALID_AU,FORGED_SPF_HELO,RCVD_IN_DNSWL_NONE,
|
||||
RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,T_SCC_BODY_TEXT_LINE autolearn=no
|
||||
autolearn_force=no version=3.4.2
|
||||
X-Spam-Report:
|
||||
* -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2)
|
||||
* [40.107.1.101 listed in wl.mailspike.net]
|
||||
* -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at
|
||||
* https://www.dnswl.org/, no trust
|
||||
* [40.107.1.101 listed in list.dnswl.org]
|
||||
* -0.5 BAYES_05 BODY: Bayes spam probability is 1 to 5%
|
||||
* [score: 0.0493]
|
||||
* -0.0 SPF_HELO_PASS SPF: HELO matches SPF record
|
||||
* 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily
|
||||
* valid
|
||||
* -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from
|
||||
* author's domain
|
||||
* -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature
|
||||
* 1.0 FORGED_SPF_HELO No description available.
|
||||
* -0.0 T_SCC_BODY_TEXT_LINE No description available.
|
||||
X-Spam-Score: 0.4
|
||||
Received: from EUR02-HE1-obe.outbound.protection.outlook.com (mail-eopbgr10101.outbound.protection.outlook.com [40.107.1.101])
|
||||
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
|
||||
(No client certificate requested)
|
||||
by box.courvix.com (Postfix) with ESMTPS id 46AFD41A2C6
|
||||
for <ccs@fbi.ac>; Sat, 14 May 2022 08:31:23 +0100 (BST)
|
||||
Authentication-Results: box.courvix.com; dmarc=pass (p=reject dis=none) header.from=intelx.io
|
||||
Authentication-Results: box.courvix.com;
|
||||
dkim=pass (2048-bit key; unprotected) header.d=intelx.io header.i=@intelx.io header.b="EgG6E5fr";
|
||||
dkim-atps=neutral
|
||||
ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none;
|
||||
b=GSsFVUxBXirewc6F6Z9NR5fBTcDdp6oBlizqlMUeXOK/o9FPPdxYUzfGoA1z3YtD/SPkuh8Y/kEauzb4UoGsKdVgvnvtDYQUdGKQm2/HmSGQ3fxECzHgrVkqYnQWJZiNvqJakV7zPJWE9SeOmucP+QQF027kW5h33s3Rl/2lNE8bCMV3dYpcoEEW57l7d3xBn96XCiKacG2Q+fsJTTHtWHurhPvfPLa91yPQaPNhJNNOkkNG2xfV68a1rE/iHpabC7zxJkWizNkom9lDqs1CO0YoWB+V7Xl0kOGq2nsPjhiPPl8aKxDZ7l6Npp0gT8klU3nJboAiNMua2I5ikjqfYw==
|
||||
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com;
|
||||
s=arcselector9901;
|
||||
h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1;
|
||||
bh=eyNhdVI5Pf3SD5rXpcVcbljPykFNVH1qaet+ogeZDnE=;
|
||||
b=QGIQSzbBwClXIYplNuBWsLbar5a7IUEXaaqermgYO7Jqbj/r3O245RSfnobEpkhQb6UYsDQWl84Xewx5QoPLqsEsdUw87mFesRzXMCEiPuw27wHbs/Kr3JNdGsu1sfyZXlFuEra/RTeMX4IUilprbr6sNBIkk08EGigOKBaBz9GBw9snR6yHxmARq6ou6Ru7CogVy+yIcK4HsCJ84JFhRbPkE4llzl3bhIf/qOUCMCNas6AzT6tf/YRAs6SYu2bJlBDzHqkkU0IPaO9xd3MnfqvT6PCpNcl1vboArnfz5yDqPl3fxs63ncKSIEDKbml0ZxTls7n6rPvFjC9iK5ep/Q==
|
||||
ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=pass
|
||||
smtp.mailfrom=intelx.io; dmarc=pass action=none header.from=intelx.io;
|
||||
dkim=pass header.d=intelx.io; arc=none
|
||||
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=intelx.io;
|
||||
s=selector1;
|
||||
h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck;
|
||||
bh=eyNhdVI5Pf3SD5rXpcVcbljPykFNVH1qaet+ogeZDnE=;
|
||||
b=EgG6E5fr6hjsCIewJcL9mVJTyt+wsUn/+Qs/hgGdS09UJ5eJqsVhBPiyFnk2F4ewy/q7pparsZ5YgpDle2+pl0YvXKfHWghXM6aUUGXl0jbyWZSFQ9YP5VqshGdHHDSt3nh0Fwqmt7cqVTCvR2rjrgFTiQ7sBCmpvRSuNgbWpXmmbtsF3GqvFUm+6/nECCqcUmvI98EqY9Z4/YnwJGwQN5PnuqZ0MjmHLHZ1D5YRNLtZje8kTdOjsIYV28tDR5+uPbwc5y9QVa9mfX84Htmm/NA+uqFfvQkOxwEoqFWvAmYf2N/Me2hIhHAerlw5dZKlz0k8z/paJn/Qzs5rSHj7Mg==
|
||||
Received: from VE1PR08MB5680.eurprd08.prod.outlook.com (2603:10a6:800:1a6::21)
|
||||
by AS4PR08MB8046.eurprd08.prod.outlook.com (2603:10a6:20b:586::22) with
|
||||
Microsoft SMTP Server (version=TLS1_2,
|
||||
cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.5250.14; Sat, 14 May
|
||||
2022 07:31:34 +0000
|
||||
Received: from VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
([fe80::fd36:ebd2:5ddf:2b11]) by VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
([fe80::fd36:ebd2:5ddf:2b11%9]) with mapi id 15.20.5250.018; Sat, 14 May 2022
|
||||
07:31:34 +0000
|
||||
From: Peter Kleissner <peter.kleissner@intelx.io>
|
||||
To: "ccs@fbi.ac" <ccs@fbi.ac>
|
||||
CC: Info <info@intelx.io>
|
||||
Subject: RE: Important
|
||||
Thread-Topic: Important
|
||||
Thread-Index: AQHYZx8vNE4XfBR+n0moT8zhJSToiq0d4JxwgAAY+hA=
|
||||
Date: Sat, 14 May 2022 07:31:34 +0000
|
||||
Message-ID:
|
||||
<VE1PR08MB5680950CDD5D47C304B94DC9FACD9@VE1PR08MB5680.eurprd08.prod.outlook.com>
|
||||
References: <189f5069785b9eb481e5d9986c450d89@fbi.ac>
|
||||
<AM0PR08MB326764F9AEB22CE2832EAC43F5CD9@AM0PR08MB3267.eurprd08.prod.outlook.com>
|
||||
In-Reply-To:
|
||||
<AM0PR08MB326764F9AEB22CE2832EAC43F5CD9@AM0PR08MB3267.eurprd08.prod.outlook.com>
|
||||
Accept-Language: en-US
|
||||
Content-Language: en-US
|
||||
X-MS-Has-Attach:
|
||||
X-MS-TNEF-Correlator:
|
||||
authentication-results: dkim=none (message not signed)
|
||||
header.d=none;dmarc=none action=none header.from=intelx.io;
|
||||
x-ms-publictraffictype: Email
|
||||
x-ms-office365-filtering-correlation-id: d3cc4b8d-e4b6-409b-9ab8-08da357bc5e1
|
||||
x-ms-traffictypediagnostic: AS4PR08MB8046:EE_
|
||||
x-microsoft-antispam-prvs:
|
||||
<AS4PR08MB804691F0E3AC7EADCA96DF07FACD9@AS4PR08MB8046.eurprd08.prod.outlook.com>
|
||||
x-ms-exchange-senderadcheck: 1
|
||||
x-ms-exchange-antispam-relay: 0
|
||||
x-microsoft-antispam: BCL:0;
|
||||
x-microsoft-antispam-message-info:
|
||||
GLg8WyZWDRfNZr2lsFNfJbgQnP5n8vWM2d6JU6caG+JhCHgaOVI+37M0gaMJpVQLGLIpNDwu9H4Cw9WDKKdiF+q2I+qVIYpSx+FDqSsVzjipyCQQmkB/8KuZey2Bx/c3J3NirAanTYZSSOiAqBa0rgqhWB28zBdhipotIXbkdea2QxMyAMOFT335ouuOhJxid7hUQh/kc1fCeJJrEDitKcG4FA6Zv9nuQHjPhRcqKqh+FL4B/5w6+QDDNsGvN70OosxqlEu9bIkp8JtxTB8JEh9x4tq+DOOJe4usRZmqXrzK0oU4VDjOViVhQimWHEuZv7WVNAyf/WT7+mpn4M7PfbmjX6TZ/Hg6SDeG4v9YE4enK1mqGeFwCVNAGIxOSnulau11Vi8WndPZQ3UtMrrZKeqqH1yoKH3SsVRSVwz0FJY5x0aN4/ef7AH3BG4qFK5Q/LsqlzbO9+3uqj3ye46L6ZcBVtDliPf7K/gH3HMlgIcIuOGJTMCdgFu0Hd3r1WKnBvGAOdGkWPvkh19rh9GeWPxbqW6MyZh5DLeje4IH/MrVbd6zI4QpOoBnLiEG263Ab5a0kiPYncZtrJxOhSusMcvg0fLm2wAojYXE/onFmQNh7yf8ks9W/xSai+2+P+4Uju2ok5imicKqFixgflmt7TBrLHVkatFMk05UlJx4dUOBxhjLm4mlgxyKytdUPPJlUuIyf13FpQT5Pdu8UWA7LT6FBhAAijYKyoTgT4QOLwEIaSCSbw7grH8zzXzog75N
|
||||
x-forefront-antispam-report:
|
||||
CIP:255.255.255.255;CTRY:;LANG:en;SCL:1;SRV:;IPV:NLI;SFV:NSPM;H:VE1PR08MB5680.eurprd08.prod.outlook.com;PTR:;CAT:NONE;SFS:(13230001)(366004)(396003)(136003)(39830400003)(376002)(346002)(316002)(4744005)(38100700002)(38070700005)(53546011)(107886003)(41300700001)(9686003)(6916009)(33656002)(7696005)(76116006)(3480700007)(966005)(508600001)(2906002)(83080400003)(83380400001)(55016003)(186003)(44832011)(5660300002)(66476007)(86362001)(66446008)(64756008)(8936002)(122000001)(6506007)(52536014)(8676002)(7116003)(71200400001)(4326008)(66556008)(66946007);DIR:OUT;SFP:1102;
|
||||
x-ms-exchange-antispam-messagedata-chunkcount: 2
|
||||
x-ms-exchange-antispam-messagedata-0:
|
||||
=?utf-8?B?K1RWd3I2RHhZNXJHQ3NmRGtnMElTUC9Pa0FXQy9xQ0lEOFNEUjVVQldHWTRR?=
|
||||
=?utf-8?B?OHRNdkRiRHB4eDIzNHA1U0RqQ0Nud29RdlBrcUI0ZFZ2Z2NRcmVJaVVaTEVa?=
|
||||
=?utf-8?B?bDFtOGRCV2VqZ1dsd3Y1YVlBV280L1hMcTZvY28xcklwWWlWZFJEaGNiMWpO?=
|
||||
=?utf-8?B?amtUaXpXa204cVp3WWtmV296a3VsbmJFa0Y5YzdUcjdLa2xwcEUzQUU5NWdO?=
|
||||
=?utf-8?B?VWRoMk5Fc2sycWYyc2RCV21rRlI4YTU5dmJIekl3c29HZnVjVnBzR09GazZu?=
|
||||
=?utf-8?B?bVo1K3p4ZmM4YTgvWmJlT243YnBzZDB3NW5rTlExYWdpYnFlamlBNTFmT3Rr?=
|
||||
=?utf-8?B?KzMyL080MWlxczZVWkNWNmFDR054QmtwVUhGUFFjQkRWeDlyc0w3Skc4K2ZB?=
|
||||
=?utf-8?B?dXZyT1BYZ0pxR29TUE9nRVFGaVRRdmRDZFZIZ1RqMjBGSStxanF5a0tvZ0g5?=
|
||||
=?utf-8?B?OTNWRUN4UjNGdFE5K0FQdjk1TkU4L285ZFVSS2VMR0c1Y3lRVzRjdU1mTDJI?=
|
||||
=?utf-8?B?anBlTEV0SGNIRmRFalFOMnFVTXNYUVpzdmZPNkluZnJMK1JjN0YvUUsyTWVa?=
|
||||
=?utf-8?B?UyttY3F4VHNXVGRUY0trR3NkUXhXNkhmcTNEMW9KUVdYb2Nsdm95clQyLzMr?=
|
||||
=?utf-8?B?QjF4VmNWcXZGNDhuV3hNbTRQdXRaOTlZUmloYVNQdHRhMllQVTlZWGhJWTE4?=
|
||||
=?utf-8?B?N0hvRDdEeko3aWZOblArb1dXQjdQMzUzQ0I5clJhS1NoYXdxVno2UzJnNFFi?=
|
||||
=?utf-8?B?azR0b1N2cnNpYThKWjdJNkpDM2VNRzR3N3hsMnBQa1RWb0NMYWJkY2xRSjM3?=
|
||||
=?utf-8?B?K0pRcmphNWFDSnZieFplN2FpaGloSktFdVRsL1JGNnNhajR4ZEYxRndndlEw?=
|
||||
=?utf-8?B?bkZQOG1oeE8zVjdDbDE4dS91TjRXamp1SjZuTVEvMHRpL1lwaFZOOHBydGpG?=
|
||||
=?utf-8?B?cHF0TThYZFlrWWpJYmJQRDdVNExJM2tYRnk1U0NnN3pyRjdtVUZhazkrOWY4?=
|
||||
=?utf-8?B?UWYwNmVRdlBNZ1NsbjBubE9ZSDZkYWdGOTRNVk4wMStRZVRmczhGdWdwK0x3?=
|
||||
=?utf-8?B?UTZCcHRmeElCcTh6R1RKRnEyMWZkQ0hoNG9LWWp2YndvRU12ZWpEVFNBd1lo?=
|
||||
=?utf-8?B?WElvN3FldmJVcHlDWnZPeHVoTm9jTHp1WkgrbWd1WXF2RGhJM0dWNktjTXRS?=
|
||||
=?utf-8?B?VlA3bnFJL1huTjYyanA5QXpuSVMzcE9nZjh0dnhzZ1ArcFN0TVhXNlJNZjBk?=
|
||||
=?utf-8?B?K01BYkFpTnQrUmVLVGdvTzdUSGVaNkVuWTU2b2l5NDZpMm1QakJqb0FTbVM3?=
|
||||
=?utf-8?B?aXp4LzllczFLbm9TY0RJV2xsNkRBWTlhUGZMS2Q5V0dlZHQzelllbk9ZZnVw?=
|
||||
=?utf-8?B?RFlsNnpwRkVMMVdpN1J0Rm1MbUtDUXJkOEdUbE00Y0tiWndHRFc5UWd5bXBG?=
|
||||
=?utf-8?B?TU1LaVNWaEhlQlJ2cEVFWDNkZW5aS1ErMWRGMDRjWENmbEIvbEY0MzIzQWl3?=
|
||||
=?utf-8?B?V1dxd1VUQVI5WFUvTVdaamVQOWViWU00emR6YXhhQXpITm1nVGVsRmp5ZmpP?=
|
||||
=?utf-8?B?SEFQSUxueW1RN0ZudmYyKzMvcDdDTyszMkY5anNoYUlkR1ZBcmxERE5BZ2th?=
|
||||
=?utf-8?B?N1R2Q25nQmVPRGQ2eVNrUlhtSEpFU0p4Sm05ZmRCOXN1dHUrVzBOd3hUVnhi?=
|
||||
=?utf-8?B?bUNOMXljVFkvcWNEelIyY2ZsWE02TFNPdjdIcEhQKzB6TmRBc1k4Z1dVSmlC?=
|
||||
=?utf-8?B?K245a1NjOVRIUjlCVC8vMDM1a3FrWjJrRWRuc1hhVUpzSHpqbm5XMW5RRjh5?=
|
||||
=?utf-8?B?R08xenp6TU5xcmV1MVo0WlBBWWZTbUdMRXZldGowMElpNVQ1cHZHY0xUR1JW?=
|
||||
=?utf-8?B?NEg5c2ltYXFNU1AyM2l6RE1iY3ZXRi81bDVWMGx4QTRZa2lJeDBLNkU4c3dC?=
|
||||
=?utf-8?B?MzN6Z1NIT3RuKzhhamovVS9ocTNQb0gzNEc5WlRVT0NCNEdMaWRWSEZCU2ZT?=
|
||||
=?utf-8?B?eGFHYkI1TzZieVA0Ykt0RFgvWU9mTXZjWlQvNlg1S1NzWDZybWdPa1FTeDd6?=
|
||||
=?utf-8?B?empvQ2xLbzhydE1zb3hMUSt6SzZLQzVFbm1Ec3c0RWt0dnA4SjErU0dnay9W?=
|
||||
=?utf-8?B?alh0dE9LUUVMTks4YnlKSklIUFhUVVpNRksycW1PZjdzblBxdTlsU2JyZGtS?=
|
||||
=?utf-8?B?MDc2bjJJODExTUtZblZOcmFCL25oczUvendMU1FDZlM1N0hHdy9vK2RINDJn?=
|
||||
=?utf-8?B?NHc2S3JOaXZLNWNjZmFoWVhGckZlSENzb0xKejNEbWVkRG4zeFVaVE42OVhv?=
|
||||
=?utf-8?B?NG1ZbU5VOTlEZkRnbCtVcGk5cUVjaXAvaHl1QnRRcXpjTGVGV1RVTHhUYTZz?=
|
||||
=?utf-8?Q?WEoGD1Z5JdN/9yWgYyUjoc3nOJ9dzz0u2OpHrfnGuOtI7?=
|
||||
x-ms-exchange-antispam-messagedata-1: HhFmtNOh67pBQyidQ6tEoXZr3jgxl07ogi0=
|
||||
Content-Type: text/plain; charset="utf-8"
|
||||
Content-Transfer-Encoding: base64
|
||||
MIME-Version: 1.0
|
||||
X-OriginatorOrg: intelx.io
|
||||
X-MS-Exchange-CrossTenant-AuthAs: Internal
|
||||
X-MS-Exchange-CrossTenant-AuthSource: VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
X-MS-Exchange-CrossTenant-Network-Message-Id: d3cc4b8d-e4b6-409b-9ab8-08da357bc5e1
|
||||
X-MS-Exchange-CrossTenant-originalarrivaltime: 14 May 2022 07:31:34.3180
|
||||
(UTC)
|
||||
X-MS-Exchange-CrossTenant-fromentityheader: Hosted
|
||||
X-MS-Exchange-CrossTenant-id: 91a34496-034c-4de6-8f88-6d4995c569c2
|
||||
X-MS-Exchange-CrossTenant-mailboxtype: HOSTED
|
||||
X-MS-Exchange-CrossTenant-userprincipalname: 0h0L6iBEHEHONMUV0K1zyZW+Jm/vGtPjTf3lfDueViYnAhe3lMqXS73GSmFIdXkv8VZa1vPDOCWj0KT9mI38+95oK+sjyT+RgbCl0GAYJJY=
|
||||
X-MS-Exchange-Transport-CrossTenantHeadersStamped: AS4PR08MB8046
|
||||
|
||||
SGksDQoNCkp1c3QgdHJpZWQgY2FsbGluZyB5b3UgLSB0aGFua3MgZm9yIGluZm9ybWluZyB1cyEg
|
||||
Q3Jpc2lzIGF2ZXJ0ZWQhDQoNCldlIGhhdmUgc3VzcGVuZGVkIHRoZSB1c2VyIGluIHF1ZXN0aW9u
|
||||
IGZvciB2aW9sYXRpb24gb2Ygb3VyIFRlcm1zIG9mIFNlcnZpY2UuDQoNCkknbSBjdXJpb3MgdG8g
|
||||
a25vdyBob3cgeW91IGZvdW5kIHRoZSBkb21haW4gYnJlYWNoLmluZHVzdHJpZXM/DQoNClJlZ2Fy
|
||||
ZHMgYW5kIHRoYW5rcyBhZ2FpbiwNCg0KUGV0ZXINCg0KX19fX19fX19fXw0KUGV0ZXIgS2xlaXNz
|
||||
bmVyLCBGb3VuZGVyIC8gQ0VPIEludGVsbGlnZW5jZSBYDQpLbGVpc3NuZXIgSW52ZXN0bWVudHMg
|
||||
cy5yLm8uDQpOYSBTdHJ6aSAxNzAyLzY1LCAxNDAgMDAgUHJhZ3VlLCBDemVjaCBSZXB1YmxpYw0K
|
||||
DQoNCi0tLS0tT3JpZ2luYWwgTWVzc2FnZS0tLS0tDQpGcm9tOiBjY3NAZmJpLmFjIDxjY3NAZmJp
|
||||
LmFjPiANClNlbnQ6IFNhdHVyZGF5LCBNYXkgMTQsIDIwMjIgMToxNCBBTQ0KVG86IEluZm8gPGlu
|
||||
Zm9AaW50ZWx4LmlvPg0KU3ViamVjdDogSW1wb3J0YW50DQoNCkhlbGxvLCB0aGVyZSB3YXMgYW4g
|
||||
aW50ZWx4IEFQSSBrZXkgcGFydGlhbGx5IGxlYWtlZCBhbG9uZyB3aXRoIGFuIGluZGl2aWR1YWwg
|
||||
dHJ5aW5nIHRvIHVzZSB5b3VyIEFQSSB0byBjcmVhdGUgYSB3ZWJzaXRlIHdpdGggdGhlIHNhbWUg
|
||||
ZnVuY3Rpb25zLg0KDQpMZWFrZWQgOiAkYXBpLT5zZXRBcGlLZXkoJ2RiZjg4NjU2LWYwYTQtNGI1
|
||||
Ny1iODljLScpOw0KV2Vic2l0ZTogaHR0cHM6Ly9icmVhY2guaW5kdXN0cmllcy9pbmRleC5odG1s
|
||||
DQoNCkkgY2FuIGJlIGNvbnRhY3RlZCB0ZW1wb3JhcmlseSBhdCArMSA5Mjk0MTQyODgyDQo=
|
166
dataapp/static/peter_files/RE [SPAM] Important.eml
Normal file
@ -0,0 +1,166 @@
|
||||
Return-Path: <peter.kleissner@intelx.io>
|
||||
Delivered-To: ccs@fbi.ac
|
||||
Received: from box.courvix.com ([127.0.0.1])
|
||||
by box.courvix.com with LMTP id CJcIHOkKgmIveQAARpRHQQ
|
||||
for <ccs@fbi.ac>; Mon, 16 May 2022 09:27:21 +0100
|
||||
X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on box.courvix.com
|
||||
X-Spam-Level:
|
||||
X-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,
|
||||
DKIM_VALID,DKIM_VALID_AU,FORGED_SPF_HELO,RCVD_IN_DNSWL_NONE,
|
||||
RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,T_SCC_BODY_TEXT_LINE autolearn=no
|
||||
autolearn_force=no version=3.4.2
|
||||
X-Spam-Report:
|
||||
* -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1%
|
||||
* [score: 0.0000]
|
||||
* -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2)
|
||||
* [40.107.5.136 listed in wl.mailspike.net]
|
||||
* -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at
|
||||
* https://www.dnswl.org/, no trust
|
||||
* [40.107.5.136 listed in list.dnswl.org]
|
||||
* -0.0 SPF_HELO_PASS SPF: HELO matches SPF record
|
||||
* -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature
|
||||
* 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily
|
||||
* valid
|
||||
* -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from
|
||||
* author's domain
|
||||
* 1.0 FORGED_SPF_HELO No description available.
|
||||
* -0.0 T_SCC_BODY_TEXT_LINE No description available.
|
||||
X-Spam-Score: -1.0
|
||||
Received: from EUR03-VE1-obe.outbound.protection.outlook.com (mail-eopbgr50136.outbound.protection.outlook.com [40.107.5.136])
|
||||
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
|
||||
(No client certificate requested)
|
||||
by box.courvix.com (Postfix) with ESMTPS id 436BE41A973
|
||||
for <ccs@fbi.ac>; Mon, 16 May 2022 09:27:20 +0100 (BST)
|
||||
Authentication-Results: box.courvix.com; dmarc=pass (p=reject dis=none) header.from=intelx.io
|
||||
Authentication-Results: box.courvix.com;
|
||||
dkim=pass (2048-bit key; unprotected) header.d=intelx.io header.i=@intelx.io header.b="fhA5xCmE";
|
||||
dkim-atps=neutral
|
||||
ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none;
|
||||
b=oS7QaCQUdr0XbxnGsToZl/5uLFVL1e4L8fzQscBMPumZ6//oOuZL/tGGaK9CBv9Nm0aZymFUwWYdZt5wDQnkeftjd2p7C0J4YCaDaVvqcdlXXpDFO1v9AzsNyIpCvUED0xShREkVQ5dVyJxLJMjC2kYj4w3Eo8oaLJMuWXZUnaSj7Tw0Bbhp9twvOFoqRwhawJc6iP416Wx09hrbfi6lr3Hf3MMi7sSRGoVou3r2Lc2d+9UrKNtAUggUWp/VWmTK4XbT/w+JZ4aHK7e1/qhMEBKSBDAoOB7zkCtnACVM1d/mbGUamTAnyQOmAHANts7TN2MO33S+wBwQFygPdV33WQ==
|
||||
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com;
|
||||
s=arcselector9901;
|
||||
h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1;
|
||||
bh=JKTxp9QZCwY0cN2Tu0el56b7uUEFXO8ox6fnvq6MMNs=;
|
||||
b=PqlESORYMAiqBLZcmgfZSPSCVZoGd2G1PAL3r8Ufdt2kpI9vppFYsI3veKCEbU0MLaEMS2I8bV4jqdxByuP8E8fM65xRjF+/HODqeg2/kZbO14PPnfLNppH4+5xFOsCQAMDaY+pT6NO2NihFIlmDMFqJSxFsMSZ/AKV+flgP8jujfM8rLEMLrwdFPEJlJNwS+CMwrROOU1MtvDj7TisVxQK409A9hvFEDYRNc+YaeYWc0R2dP1zTWaefx0+bz2h/dEiQjwp51GNr9588HgkistjtgydkM4KeJNcu7uMPVjG2zRVzAC7Ez5zxXHSU9sQSQll5ri8exLYc2tZIonnjaA==
|
||||
ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=pass
|
||||
smtp.mailfrom=intelx.io; dmarc=pass action=none header.from=intelx.io;
|
||||
dkim=pass header.d=intelx.io; arc=none
|
||||
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=intelx.io;
|
||||
s=selector1;
|
||||
h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck;
|
||||
bh=JKTxp9QZCwY0cN2Tu0el56b7uUEFXO8ox6fnvq6MMNs=;
|
||||
b=fhA5xCmE1uGnbU4C20PesczmS4zo3+hwm5TmhZADsNUZUaOsmUjhA88DdH2LsZPQl7FYWiRoFOVqvHQHZSnrppWKwlxu8ba7J2uUAI+HmislwITchS5c/HohRHiFtlZYDsvCcTNKAbGFQZ4bU41VMAEGV6nnMebUsd4zbSAMMI3g3dz1ldqoa2fQo3lh8odoBTBtq/pDq1gbXMDY2z3AycfbGAbUGqoEvsH+rf8wqiWsScG1/Q4xbXlutlIisMMHgLTK2emkghJLKQYloiTsUDNL/D4NPLnLTFau/87/T1WQ3Iy5wHOuClH6a0t9cchXcjkSdhfJTJnSyA2n72jBzQ==
|
||||
Received: from VE1PR08MB5680.eurprd08.prod.outlook.com (2603:10a6:800:1a6::21)
|
||||
by GV2PR08MB7929.eurprd08.prod.outlook.com (2603:10a6:150:ac::19) with
|
||||
Microsoft SMTP Server (version=TLS1_2,
|
||||
cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.5250.18; Mon, 16 May
|
||||
2022 08:27:35 +0000
|
||||
Received: from VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
([fe80::fd36:ebd2:5ddf:2b11]) by VE1PR08MB5680.eurprd08.prod.outlook.com
|
||||
([fe80::fd36:ebd2:5ddf:2b11%9]) with mapi id 15.20.5250.018; Mon, 16 May 2022
|
||||
08:27:34 +0000
|
||||
From: Peter Kleissner <peter.kleissner@intelx.io>
|
||||
To: "ccs@fbi.ac" <ccs@fbi.ac>
|
||||
Subject: RE: [SPAM] Important
|
||||
Thread-Topic: [SPAM] Important
|
||||
Thread-Index: AQHYZ2cWIc6oMX3I0Em3RipwW5f6H60g8y1AgAA7J2A=
|
||||
Date: Mon, 16 May 2022 08:27:34 +0000
|
||||
Message-ID:
|
||||
<VE1PR08MB56800F2EE4DB72BCD2A9C3DBFACF9@VE1PR08MB5680.eurprd08.prod.outlook.com>
|
||||
References: <bb33f84b40b41d0f9961dd9cf0911360@fbi.ac>
|
||||
<AM0PR08MB326783A61CB2A411B46C8656F5CF9@AM0PR08MB3267.eurprd08.prod.outlook.com>
|
||||
In-Reply-To:
|
||||
<AM0PR08MB326783A61CB2A411B46C8656F5CF9@AM0PR08MB3267.eurprd08.prod.outlook.com>
|
||||
Accept-Language: en-US
|
||||
Content-Language: en-US
|
||||
X-MS-Has-Attach:
|
||||
X-MS-TNEF-Correlator:
|
||||
authentication-results: dkim=none (message not signed)
|
||||
header.d=none;dmarc=none action=none header.from=intelx.io;
|
||||
x-ms-publictraffictype: Email
|
||||
x-ms-office365-filtering-correlation-id: 60941519-e995-4d9e-072c-08da3715ed80
|
||||
x-ms-traffictypediagnostic: GV2PR08MB7929:EE_
|
||||
x-microsoft-antispam-prvs:
|
||||
<GV2PR08MB7929472E7C9DF8F4ADF80FBDFACF9@GV2PR08MB7929.eurprd08.prod.outlook.com>
|
||||
x-ms-exchange-senderadcheck: 1
|
||||
x-ms-exchange-antispam-relay: 0
|
||||
x-microsoft-antispam: BCL:0;
|
||||
x-microsoft-antispam-message-info:
|
||||
qrbvwFX8gMkc6YTtPwFc760W7Mk4j69uCkqL06p25cR409787x+Lr3oJRiBgmb2jLL7bEGS+n9XQ29CsHDn5G2zL4XtsLaIXPpjrD+Rua7PkH7AWvvCOXRIausOQEjspc9ljxY07biavdqIS9H6wsJbWPL8PTFrnPQ70C0DOUTclB900leoqwFhqK/D925BBHTAQoymDCWkpPbEpOG4sdYWr6+pxAyDIGO26akLJ4LcfxCuQy9inGHfWE43z+51leP7hE/qOYioTz8EiIL3zu5nACYMfQGOsNI6OUMA65fzxuDSwAkjvvKpkIno/QBHOcJJM/zEa0BBRnNe4DhaumzLcl9WKM1t0GBFeEzrBizqM06tf1c9zjeTv0ZWddr2MHDKPe2CH52zhKzgLuzKGpWDx2JScS1xZEIAeGqVeHL9Rafgq1upal0riLwTX7gZRU0DcKjSWgDjq9KWJ4OaX1+I3YsUXMUmykaDp49gq5N1LhnCnbEdPHXnk6cEHVpgUz/lWUSz5oAFeWiQSoko3zh0N/n9/Qr8r6rPWrom/rpw5Ia9V6omMA542jHq+PNZGfqklJ5D3BlNBZLzZFl1IXLgXbQSqkycKG0SO/kYPCL0broALil4hBXR/43iUID+uOt7s5oE1G8ZPjl7yDt+bXWj6xu6qQB0VasFpKvqUN0OjId04UU1Hh10gADggvCvosbPqz7IdNghsl1AW2J8eam1kGx/+RFT0kimKhnB/IQU=
|
||||
x-forefront-antispam-report:
|
||||
CIP:255.255.255.255;CTRY:;LANG:en;SCL:1;SRV:;IPV:NLI;SFV:NSPM;H:VE1PR08MB5680.eurprd08.prod.outlook.com;PTR:;CAT:NONE;SFS:(13230001)(376002)(346002)(136003)(39830400003)(396003)(366004)(8676002)(64756008)(38100700002)(5660300002)(44832011)(66446008)(38070700005)(52536014)(2906002)(4744005)(33656002)(186003)(41300700001)(66476007)(76116006)(66946007)(66556008)(6916009)(71200400001)(53546011)(6506007)(508600001)(316002)(86362001)(7696005)(83380400001)(122000001)(8936002)(9686003)(26005)(55016003)(217643003);DIR:OUT;SFP:1102;
|
||||
x-ms-exchange-antispam-messagedata-chunkcount: 1
|
||||
x-ms-exchange-antispam-messagedata-0:
|
||||
=?utf-8?B?Y3pBd2x5cDhFK1NLUFpVRHlROXI5QnprUld0QWFEdXI1SHVlTFFwMVlabHA0?=
|
||||
=?utf-8?B?dmFDazVwWFRUUjU3S1B0M3pmd2h6ZW5TeUNHZmlOemZvWDNEUlY4Qk9pSmdK?=
|
||||
=?utf-8?B?SmN5Z09xc1RLOEE0cE5DU1ErNyt4T1V3dmpZcE1ILzdBdlVHZmNreVhxRXBM?=
|
||||
=?utf-8?B?dCs5Q1VpNTZtYk83WDdOMnBBSW5LdXQxUEdZd2pVUmJlQk1EbjJoQm5lZno2?=
|
||||
=?utf-8?B?WFJPSTkvRjVEQy9Cam43bk1WMk1wMVkrYnA5bzh5QXRKQ0hCb0JSNFlUdmha?=
|
||||
=?utf-8?B?MmIxb0RoZ2QxdlRETkl6UWpIenQ0TDVuQXhFenpsMExVVXVTQ3NKTGkwNjJP?=
|
||||
=?utf-8?B?WC8yanFFMDhwdjB5OHNUN1Rxdk5uVzJQWkQ5QWRtYVdRRmhEVVlucHhTNE9I?=
|
||||
=?utf-8?B?aHRWdjUyanlkL2lUbnFWS2xCY3k5YkxxTkFuSk9JUEZlZ2swMkdzd01leWJQ?=
|
||||
=?utf-8?B?bkhVRGZqSmFOUnJpNmZpT3J5Wjlua0F6SFVJdDZ4WkQyL0xmRXU4endycVJu?=
|
||||
=?utf-8?B?czNuN2xHRmhVRjdhUHpCNzlBQ2xPbU1JVUFvUGpaVldNR1FIb2NKbWZlQkdS?=
|
||||
=?utf-8?B?ZkQ1bXFGdUQ2NlI1bEpZeHU0TStweEY3REwzWWd3amxjeWl4NkdnV0RRUnUx?=
|
||||
=?utf-8?B?c0dxQVdGL1JkS0VzM2FuZDlDSVViR1l2L1F1bkZ0VFVVZXZQWFdEYU5DSUkw?=
|
||||
=?utf-8?B?WWI1T3k2bkNsL1p5R2MwWXJPdjBoc3N5U2RycWhUWGNvSHo4SGRTTlFLWFY1?=
|
||||
=?utf-8?B?TUMwRHNtVGVGTUpRRkZaN1JlLzBaZXI2UER3K3lxODRzMlNzOXY4RmN6U2NF?=
|
||||
=?utf-8?B?WmhIR2Y0aXpxUGNmK0Fhb3VkTElGNy9CcTdubGZmSytidzdEK1QvK0c2TFFY?=
|
||||
=?utf-8?B?LzR6SWZaMnlNSjZualBYY3BuNnhBNEZ4WTNjR3FrdzBHWTI3UEtZQ2R0WjdY?=
|
||||
=?utf-8?B?R2x6dVI5dnI2cEpKOFpsSkwrK2tBbm9kQVR1bGhCWGNaYmxuWmV2K0hucW1Y?=
|
||||
=?utf-8?B?aGpMaUVJMmpHOWhDZGpBRndFdEt5blZOUS9pTU1ZNmhhSjNqNE8vTHRQSW1j?=
|
||||
=?utf-8?B?VkpIUUVqZ094eUZ6RmNMb1U2dDd2TFBJZTE1T3BnUXVqVVpFTGRvZ3liMnBq?=
|
||||
=?utf-8?B?enV4NFpIWWgwcUtVdkI3bHUrVmM0enNqMXdPNmFVSUEzMllIVUZVQit5UWlt?=
|
||||
=?utf-8?B?RVdkdUlKcEhtek4vTktqa29BVzNNWDBhU2dUQkpWMVpaellQMW5oMUZtUnFu?=
|
||||
=?utf-8?B?WnFRSWdpNERCYUVaWmVINXJySzJheVovS04xVWlWRHJoTmNRN0cwdkhrREpi?=
|
||||
=?utf-8?B?K1l2dDdqYlRPa2hPNmJwTFJXbGdnR0dEU2oyenJIUlZ5Yit0Z2w3OXhlUFU3?=
|
||||