From dd67017b19c7ce85e6fee9b7f722a80b3159d315 Mon Sep 17 00:00:00 2001 From: Dale Snowdon Date: Tue, 18 Apr 2023 01:10:20 +0100 Subject: [PATCH 1/3] Add dev containers. --- .devcontainer/Dockerfile | 14 +++++ .devcontainer/devcontainer.json | 26 ++++++++++ .devcontainer/docker-compose.yml | 24 +++++++++ .vscode/launch.json | 17 ++++++ API/api.py | 2 +- API/dbconnection.py | 2 +- Dockerfile | 16 ------ celery_app.py | 3 +- requirements.txt | 89 ++++---------------------------- utils/db.py | 4 +- 10 files changed, 97 insertions(+), 100 deletions(-) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json create mode 100644 .devcontainer/docker-compose.yml create mode 100644 .vscode/launch.json delete mode 100644 Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..945b0c2 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,14 @@ +FROM mcr.microsoft.com/devcontainers/python:0-3.11 + +ENV app /app + +RUN mkdir $app +WORKDIR $app +COPY requirements.txt $app + +RUN pip install -r requirements.txt && rm requirements.txt +WORKDIR $app/API/ + +EXPOSE 8094 +CMD ["tail -f /app/logs/scan.log"] + diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b0749f1 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,26 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "dockerComposeFile": "docker-compose.yml", + "service": "devcontainer", + + // "workspaceMount": "source=${localWorkspaceFolder},target=/app,type=bind", + "workspaceFolder": "/app" + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "pip3 install --user -r requirements.txt", + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml new file mode 100644 index 0000000..fc742de --- /dev/null +++ b/.devcontainer/docker-compose.yml @@ -0,0 +1,24 @@ +version: '3.8' + +services: + devcontainer: + build: + context: "../" + dockerfile: "./.devcontainer/Dockerfile" + volumes: + - ../:/app + command: sleep infinity + depends_on: [ "mongo" ] + + mongo: + image: mongo + restart: unless-stopped + healthcheck: + test: [ "CMD", "bash", "-c", "echo 'db.runCommand(\"ping\").ok' | mongosh --quiet" ] + interval: 10s + timeout: 5s + retries: 4 + start_period: 1s + + rabbit: + image: rabbitmq:3 \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..44a089e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "cwd": "${workspaceFolder}/API/", + "program": "${workspaceFolder}/API/api.py", + "console": "integratedTerminal", + "justMyCode": true + } + ] +} \ No newline at end of file diff --git a/API/api.py b/API/api.py index a167f96..1cf3c3c 100644 --- a/API/api.py +++ b/API/api.py @@ -115,7 +115,7 @@ def start_scan(): # Success msg = {"status" : scanid} try: - db.scanids.insert({"scanid" : scanid, "name" : name, "url" : url}) + db.scanids.insert_one({"scanid" : scanid, "name" : name, "url" : url}) except: print("Failed to update DB") else: diff --git a/API/dbconnection.py b/API/dbconnection.py index 6d9ecad..16dd619 100644 --- a/API/dbconnection.py +++ b/API/dbconnection.py @@ -8,7 +8,7 @@ def db_connect(): maxSevSelDelay = 1 try: - mongo_host = 'localhost' + mongo_host = 'mongo' mongo_port = 27017 if 'MONGO_PORT_27017_TCP_ADDR' in os.environ : diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d267c4c..0000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM python:2-alpine - -ENV app /app - -RUN mkdir $app -WORKDIR $app -COPY . $app - -RUN pip install -r requirements.txt - -WORKDIR API/ - -EXPOSE 8094 -ENTRYPOINT ["python", "./api.py"] -CMD ["tail -f /app/logs/scan.log"] - diff --git a/celery_app.py b/celery_app.py index eca0d8e..e7d2fd6 100644 --- a/celery_app.py +++ b/celery_app.py @@ -5,12 +5,13 @@ import os sys.path.append(os.getcwd()) -app = Celery('celery_app', broker='amqp://guest@localhost//') +app = Celery('celery_app', broker='amqp://guest@rabbit//') # app.conf.task_serializer = 'pickle' # app.conf.result_serializer = 'pickle' # app.conf.accept_content = ['application/json', 'application/x-python-serialize'] app.autodiscover_tasks(['astra.modules_scan']) app.conf.task_eager_propagates = True +print("hello") # dbupdate = Database_update() diff --git a/requirements.txt b/requirements.txt index 2107f88..c0cdca7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,79 +1,10 @@ -amqp==5.1.1 -APScheduler==3.9.1.post1 -billiard==3.6.4.0 -celery==5.2.7 -certifi -chardet==3.0.4 -charset-normalizer==2.1.1 -click==8.1.3 -click-didyoumean==0.3.0 -click-plugins==1.1.1 -click-repl==0.2.0 -Flask==2.2.2 -idna==2.8 -importlib-metadata==5.0.0 -itsdangerous==2.1.2 -Jinja2==3.0.3 -kombu==5.2.4 -MarkupSafe==2.1.1 -prompt-toolkit==3.0.33 -PyJWT==2.6.0 -pymongo==3.13.0 -pytz==2022.6 -pytz-deprecation-shim==0.1.0.post0 -requests==2.28.1 -six==1.16.0 -sqlmap==1.6.10 -tzdata==2022.7 -tzlocal==4.2 -urllib3==1.24.3 -vine==5.0.0 -wcwidth==0.2.5 -Werkzeug==2.2.2 -zipp==3.10.0 -requests -logger -pymongo -ConfigParser -pyjwt -flask -sqlmapamqp==5.1.1 -APScheduler==3.9.1.post1 -billiard==3.6.4.0 -celery==5.2.7 -certifi -chardet==3.0.4 -charset-normalizer==2.1.1 -click==8.1.3 -click-didyoumean==0.3.0 -click-plugins==1.1.1 -click-repl==0.2.0 -Flask==2.2.2 -idna==2.8 -importlib-metadata==5.0.0 -itsdangerous==2.1.2 -Jinja2==3.0.3 -kombu==5.2.4 -MarkupSafe==2.1.1 -prompt-toolkit==3.0.33 -PyJWT==2.6.0 -pymongo==3.13.0 -pytz==2022.6 -pytz-deprecation-shim==0.1.0.post0 -requests==2.28.1 -six==1.16.0 -sqlmap==1.6.10 -tzdata==2022.7 -tzlocal==4.2 -urllib3==1.24.3 -vine==5.0.0 -wcwidth==0.2.5 -Werkzeug==2.2.2 -zipp==3.10.0 -Flask==2.2.2 -Jinja2==3.0.3 -PyJWT==2.6.0 -pymongo==3.13.0 -requests==2.28.1 -sqlmap==1.7 -apscheduler + requests + logger + pymongo==3.13.0 + ConfigParser + pyjwt + flask + sqlmap + celery + reportlab + APScheduler \ No newline at end of file diff --git a/utils/db.py b/utils/db.py index f9c4a7e..39a2196 100644 --- a/utils/db.py +++ b/utils/db.py @@ -5,7 +5,7 @@ class Database_update: def __init__(self): # Mongo DB connection - mongo_host = 'localhost' + mongo_host = 'mongo' mongo_port = 27017 maxSevSelDelay = 1 @@ -28,7 +28,7 @@ def fetch_records(self): def insert_record(self,data): try: - self.db.vulnerabilities.insert(data) + self.db.vulnerabilities.insert_one(data) except Exception as e: raise e From acfaf19748573c4d929b2ec3e92580e4c8f75e8d Mon Sep 17 00:00:00 2001 From: Dale Snowdon Date: Tue, 18 Apr 2023 01:22:48 +0100 Subject: [PATCH 2/3] Add woker to vscode launch. --- .gitignore | 1 + .vscode/launch.json | 8 +- celery_app.py | 1 - logs/scan.log | 4101 ------------------------------------------- 4 files changed, 8 insertions(+), 4103 deletions(-) delete mode 100644 logs/scan.log diff --git a/.gitignore b/.gitignore index a1369cb..13a69d7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ .idea/ venv/ +/logs/scan.log diff --git a/.vscode/launch.json b/.vscode/launch.json index 44a089e..9de6516 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,13 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: Current File", + "command": "celery -A celery_app worker --loglevel=INFO", + "name": "Start worker", + "request": "launch", + "type": "node-terminal" + }, + { + "name": "Start python api", "type": "python", "request": "launch", "cwd": "${workspaceFolder}/API/", diff --git a/celery_app.py b/celery_app.py index e7d2fd6..fcd39db 100644 --- a/celery_app.py +++ b/celery_app.py @@ -11,7 +11,6 @@ # app.conf.accept_content = ['application/json', 'application/x-python-serialize'] app.autodiscover_tasks(['astra.modules_scan']) app.conf.task_eager_propagates = True -print("hello") # dbupdate = Database_update() diff --git a/logs/scan.log b/logs/scan.log deleted file mode 100644 index bccfcdd..0000000 --- a/logs/scan.log +++ /dev/null @@ -1,4101 +0,0 @@ -127.0.0.1 - - [13/Dec/2022 20:58:05] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.9:8094 -Press CTRL+C to quit -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:09] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 20:58:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:58:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 20:59:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:00:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:01:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:10] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.9:8094 -Press CTRL+C to quit -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:17] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:22] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:22] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:02:22] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:02:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:47] "GET /scan/scanids/ HTTP/1.1" 200 - -Exception on /favicon.ico [GET] -Traceback (most recent call last): - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/kinshuk.dua/Downloads/astra3/API/api.py", line 202, in view_dashboard - return render_template('{}'.format(page)) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/templating.py", line 146, in render_template - template = app.jinja_env.get_or_select_template(template_name_or_list) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/jinja2/environment.py", line 1068, in get_or_select_template - return self.get_template(template_name_or_list, parent, globals) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/jinja2/environment.py", line 997, in get_template - return self._load_template(name, globals) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/jinja2/environment.py", line 958, in _load_template - template = self.loader.load(self, name, self.make_globals(globals)) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/jinja2/loaders.py", line 125, in load - source, filename, uptodate = self.get_source(environment, name) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/templating.py", line 62, in get_source - return self._get_source_fast(environment, template) - File "/Users/kinshuk.dua/miniconda3/envs/astra3/lib/python3.9/site-packages/flask/templating.py", line 98, in _get_source_fast - raise TemplateNotFound(template) -jinja2.exceptions.TemplateNotFound: favicon.ico -127.0.0.1 - - [13/Dec/2022 21:02:49] "GET /favicon.ico HTTP/1.1" 500 - -127.0.0.1 - - [13/Dec/2022 21:02:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:02:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:03:07] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:03:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:03:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:04:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:05:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:06:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:22] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.9:8094 -Press CTRL+C to quit -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:26] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:27] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:34] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:39] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:07:41] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:55] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:07:55] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:55] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:55] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:07:55] "GET /alerts/dd8af5495272a6db6998cfa4361b7207 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:03] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:03] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:03] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:03] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:03] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:05] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:25] "POST /scan/postman/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:32] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:32] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:32] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:32] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:32] "GET /alerts/dd8af5495272a6db6998cfa4361b7207 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /alerts/dd8af5495272a6db6998cfa4361b7207 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /alerts/dd8af5495272a6db6998cfa4361b7207 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/astra.png HTTP/1.1" 304 - -Auth header is Authorization -Auth header is Authorization -127.0.0.1 - - [13/Dec/2022 21:08:34] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Dec/2022 21:08:36] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:36] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:36] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:36] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:36] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:37] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:37] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:37] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:37] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:37] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:37] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:08:59] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:14] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:14] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:14] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:14] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:14] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:14] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:09:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:09:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:10:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:23] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:27] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:27] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:27] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:27] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Dec/2022 21:11:27] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:11:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:12:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:13:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:13:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:13:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:13:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:13:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:15:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:15:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:15:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:16:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:16:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:16:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:17:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:17:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:17:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:18:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:18:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:18:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:19:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:19:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:19:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:20:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:20:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:20:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:21:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:21:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:21:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:22:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:22:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:22:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:23:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:23:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:23:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:24:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:24:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:24:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:24:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:24:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:24:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 21:59:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:17:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:25:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:25:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:25:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:25:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:26:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:26:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:26:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:26:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:26:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:27:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:27:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:27:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:28:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:28:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:28:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:29:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:30:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:31:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:31:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:31:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:31:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:31:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:31:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:32:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:32:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:32:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:33:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:33:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:33:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:34:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:34:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:34:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:35:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:35:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:35:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:36:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:37:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:38:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:38:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:38:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:38:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:39:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:39:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:39:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:39:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:39:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:39:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:40:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:40:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:40:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:41:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:41:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:41:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:42:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:42:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:42:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:43:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:43:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:43:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:44:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:44:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:44:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:45:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:45:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:45:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:46:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:46:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:46:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:47:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:47:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:47:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:48:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:50:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:50:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:50:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:50:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:51:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:51:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:51:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:51:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:51:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:51:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:52:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:52:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:52:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:53:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:53:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:53:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:54:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:54:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:54:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:55:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:55:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:55:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:56:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 22:56:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Dec/2022 23:30:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 00:34:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 01:23:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 02:29:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 03:34:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 04:21:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 05:24:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 06:29:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 07:38:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 08:46:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:23:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:23:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:23:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:23:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:23:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:24:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:24:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:33:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Dec/2022 09:33:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:01:23] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:01:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:24] "GET /static/astra.png HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:01:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:01:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:02:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:03:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:04:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:04:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:04:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:04:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:04:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:05:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:06:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:07:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:18] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:18] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:18] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:18] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:18] "GET /alerts/30e061af02d0d675ca6f085fd6618663 HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:30] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:30] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:30] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:30] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:32] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:32] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:32] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:32] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:32] "GET /alerts/285b4f56490e9515f818cc828f89bb87 HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:44] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:44] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:44] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:44] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:44] "GET /alerts/8ed26ed0970681de1b4f00d528fc74bb HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:08:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:08:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:11] "POST /scan/postman/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:09:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:23] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:10:23] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:10:23] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:10:23] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:10:23] "GET /alerts/5a2959562cc4709ee61fd96ac2283d91 HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:33] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:11:33] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:33] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:33] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:11:33] "GET /alerts/5a2959562cc4709ee61fd96ac2283d91 HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [04/Jan/2023 17:13:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:13:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:14:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:15:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:16:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:17:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:18:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:18:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:18:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:18:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:18:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:19:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:20:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:21:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:22:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:23:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:24:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:25:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:26:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:27:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:28:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:28:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:28:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:29:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:30:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:31:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:32:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:33:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:34:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:34:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:34:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:35:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:36:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:36:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:36:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:36:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:36:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:51:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 17:51:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 18:07:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 18:24:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 18:41:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 18:57:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 19:14:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 19:32:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 19:49:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 20:07:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 20:22:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 20:22:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 20:38:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 20:54:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:10:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:27:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:44:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:45:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:45:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:45:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 21:45:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 22:03:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 22:04:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 22:36:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 22:37:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 22:54:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 23:10:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 23:25:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 23:42:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [04/Jan/2023 23:57:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 00:15:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 00:31:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 00:47:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 01:03:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 01:19:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 01:36:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 01:53:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 02:11:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 02:29:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 02:44:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 02:44:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 03:00:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 05:09:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 08:10:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 11:51:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 15:00:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 18:06:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 19:30:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 20:15:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 21:05:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 21:55:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [05/Jan/2023 22:40:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 00:25:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 03:11:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 05:20:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 06:25:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 07:05:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 07:55:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 08:40:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 09:20:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 11:15:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 14:32:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 15:30:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 16:20:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 17:15:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 18:00:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 18:55:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 19:40:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 20:30:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 21:20:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 21:45:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 22:05:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 22:30:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 23:10:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [06/Jan/2023 23:45:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 00:15:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 01:00:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 01:50:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 02:30:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 03:15:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 03:45:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 04:20:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 05:20:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 09:31:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 11:15:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 14:38:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 17:10:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 19:33:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [07/Jan/2023 22:19:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [08/Jan/2023 00:08:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [10/Jan/2023 12:29:57] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.2:8094 -Press CTRL+C to quit -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:01] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:12:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:13:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:14:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:15:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:16:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:37] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:17:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:18:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:19:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:20:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:21:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:22:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:23:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:24:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:25:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:26:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /scan.html HTTP/1.1" 308 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:29] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:30] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:30] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:27:30] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:27:30] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:27:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:43] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:27:43] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:27:43] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:27:43] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:27:43] "GET /alerts/a1520a7b6e9641224d027b8adc5cc14f HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.2:8094 -Press CTRL+C to quit -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:34:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:34:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:29] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:35:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:28] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:36:28] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:36:28] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:36:28] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:36:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:37:12] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Jan/2023 13:37:12] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:37:12] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:37:12] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Jan/2023 13:37:12] "GET /alerts/7ac74c74f4d91021788f28b53ecfe9aa HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:37] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 17:59:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:00:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:28] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:46] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:01:46] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:01:46] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:01:46] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:01:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:02:04] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:02:04] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:02:04] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:02:04] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:02:04] "GET /alerts/54632d88eed5b9c7e46c5126b80c029d HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:02:09] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:02:09] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:02:09] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:02:09] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:02:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:03:18] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:03:18] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:03:18] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:03:18] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:03:18] "GET /alerts/54632d88eed5b9c7e46c5126b80c029d HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:03:22] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:03:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:03:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:03:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:03:22] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /scan.html HTTP/1.1" 308 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:09:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:09:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:27] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:53] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:10:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:10:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:34] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:34] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:11:34] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:11:34] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:11:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:41] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:41] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:11:41] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:11:41] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:11:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:41] "GET /alerts/b10159ee51a258375016971523b3f820 HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:11:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:12:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:13:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:14:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:15:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:16:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:17:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:18:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:19:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:20:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:20:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:20:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:20:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:20:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:20:27] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 18:21:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:21:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:21:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:21:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:22:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:23:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:24:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:25:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:26:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:27:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:28:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:29:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:30:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:31:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:32:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:33:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:34:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:35:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:36:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:41] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:41] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:37:41] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:37:41] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:37:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:42] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:42] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:37:42] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:37:42] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:37:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:37:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:00] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:38:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:39:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:40:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:26] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:26] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:41:26] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:41:26] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:41:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:31] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:31] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:41:31] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:41:31] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 18:41:32] "GET /alerts/2a16e906e60deefcdb3db6a42fbd7cef HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:41:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:42:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:43:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:44:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:45:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:46:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:47:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:48:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:49:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:50:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:51:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:52:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:53:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:54:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:55:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:56:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:57:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:58:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 18:59:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:00:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:01:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:02:01] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 19:11:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:11:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:11:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:11:55] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:10] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:10] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:12:10] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:12:10] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:12:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:12:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:13:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:14:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:15:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:16:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:17:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:25] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:25] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:18:25] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:18:25] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:18:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:30] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:31] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:18:31] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:18:31] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:18:31] "GET /alerts/20937a16677cd8817e0d45850414eef3 HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:18:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:10] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:15] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:20] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:40] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:50] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:19:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:20:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:21:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:22:51] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 19:24:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:22] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:29] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:30] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:30] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:30] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:24:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:30] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:24:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:25:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:26:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:27:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:14] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:14] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:28:14] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:28:14] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:28:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:17] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:17] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:28:17] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:28:17] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:28:17] "GET /alerts/25a78a4a08b24693c98cc0f262e7f1b0 HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:28:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:29:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:30:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:30:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:30:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:30:16] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 19:31:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:29] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:30] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:31:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:32:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:33:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:16] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:34] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:34] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:34] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:34] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:34:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:34] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:37] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:38] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:34:38] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:34:38] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:34:38] "GET /alerts/fdee9586f47d031f06c2517a970d1e22 HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:38] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:34:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:35:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:36:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:37:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:37:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:37:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:37:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:37:22] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 19:37:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:37:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:08] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:38:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:39:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:40:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:07] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:07] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:41:07] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:41:07] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:41:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:12] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:12] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:41:12] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:41:12] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:41:13] "GET /alerts/27245e034c8a50b5783a2208ea55d101 HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:41:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:42:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:43:52] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 19:50:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:50:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:50:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:50:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:03] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:51:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:52:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:55] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:55] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:55] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:55] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:53:55] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:55] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:56] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:56] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:53:56] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:53:56] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:53:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:53:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:00] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:00] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:54:00] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:54:00] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:54:00] "GET /alerts/33b9e47ce821c6318d00db6ad18f53bf HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:54:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:55:58] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 19:59:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 19:59:31] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:36] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:41] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 19:59:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:10] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:18] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:18] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:00:18] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:00:18] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:00:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:00:57] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 20:07:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:23] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:39] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:39] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:07:39] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:07:39] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:07:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:58] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:07:58] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:07:58] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:07:58] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:07:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:12] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:12] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:08:12] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:08:12] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:08:12] "GET /alerts/babf72eb47bc42ee9fd8b16a24f272d7 HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:18] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:18] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:08:18] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:08:18] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:08:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:08:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:09:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:10:53] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 20:11:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:33] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 20:11:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:49] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:51] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:11:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:05] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:05] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:12:05] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:12:05] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:12:05] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:06] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:06] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:12:06] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:12:06] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:12:06] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:12:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:13:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:14:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:03] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:08] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:15:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:16:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:17:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:24] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:34] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:18:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:19] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 20:19:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:19:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:08] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:21] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:21] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:20:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:20:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [21/Jan/2023 20:20:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:20:32] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [21/Jan/2023 20:21:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:20] "POST /scan/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:22:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:27] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:42] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [21/Jan/2023 20:23:52] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.3:8094 -Press CTRL+C to quit -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:07] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:12] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:12] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:12] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:12] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:32] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:27:32] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:32] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:32] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:27:32] "GET /alerts/a1520a7b6e9641224d027b8adc5cc14f HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:28:11] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:28:11] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:28:11] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:28:11] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 19:28:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 19:32:46] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 20:23:44] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 20:23:45] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 20:23:45] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 20:23:45] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [22/Jan/2023 20:23:45] "GET /alerts/e564850f9eb4283e49f4542ff4616b67 HTTP/1.1" 200 - -127.0.0.1 - - [22/Jan/2023 20:23:45] "GET /static/astra.png HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.146.196:8094 -Press CTRL+C to quit -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:13] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:14] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:18] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:23] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:28] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:07:28] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:07:28] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:07:28] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:08:28] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:08:28] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:28] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:28] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:08:29] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:08:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:08:39] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 14:08:39] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:39] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:39] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 14:08:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:07:04] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:07:04] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:07:04] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:07:04] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 15:07:04] "GET /alerts/7ac74c74f4d91021788f28b53ecfe9aa HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:07:04] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:55:42] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:55:42] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:55:42] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:55:42] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 15:55:42] "GET /alerts/b10159ee51a258375016971523b3f820 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 15:55:42] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:03:57] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:03:57] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:03:57] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:03:57] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:03:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:04:13] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:04:13] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:04:13] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:04:13] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:04:14] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:08:44] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:08:44] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:08:44] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:08:44] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:08:45] "GET /alerts/7ac74c74f4d91021788f28b53ecfe9aa HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:08:58] "GET /alerts/7ac74c74f4d91021788f28b53ecfe9aa HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:28:20] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:28:20] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:28:20] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:28:20] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:28:20] "GET /alerts/a1520a7b6e9641224d027b8adc5cc14f HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:28:29] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 16:28:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:28:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:28:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 16:28:29] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit -127.0.0.1 - - [13/Feb/2023 21:51:34] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:51:34] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:51:34] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:51:34] "GET /static/scan.js HTTP/1.1" 304 - -Exception on /alerts/20937a16677cd8817e0d45850414eef3 [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:51:34] "GET /alerts/20937a16677cd8817e0d45850414eef3 HTTP/1.1" 500 - -127.0.0.1 - - [13/Feb/2023 21:51:34] "GET /static/astra.png HTTP/1.1" 200 - -Exception on /alerts/20937a16677cd8817e0d45850414eef3 [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:51:55] "GET /alerts/20937a16677cd8817e0d45850414eef3 HTTP/1.1" 500 - -Exception on /favicon.ico [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 264, in view_dashboard - return render_template('{}'.format(page)) - File "/usr/local/lib/python3.10/site-packages/flask/templating.py", line 146, in render_template - template = app.jinja_env.get_or_select_template(template_name_or_list) - File "/usr/local/lib/python3.10/site-packages/jinja2/environment.py", line 1068, in get_or_select_template - return self.get_template(template_name_or_list, parent, globals) - File "/usr/local/lib/python3.10/site-packages/jinja2/environment.py", line 997, in get_template - return self._load_template(name, globals) - File "/usr/local/lib/python3.10/site-packages/jinja2/environment.py", line 958, in _load_template - template = self.loader.load(self, name, self.make_globals(globals)) - File "/usr/local/lib/python3.10/site-packages/jinja2/loaders.py", line 125, in load - source, filename, uptodate = self.get_source(environment, name) - File "/usr/local/lib/python3.10/site-packages/flask/templating.py", line 62, in get_source - return self._get_source_fast(environment, template) - File "/usr/local/lib/python3.10/site-packages/flask/templating.py", line 98, in _get_source_fast - raise TemplateNotFound(template) -jinja2.exceptions.TemplateNotFound: favicon.ico -127.0.0.1 - - [13/Feb/2023 21:51:55] "GET /favicon.ico HTTP/1.1" 500 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit -Exception on /alerts/20937a16677cd8817e0d45850414eef3 [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:54:02] "GET /alerts/20937a16677cd8817e0d45850414eef3 HTTP/1.1" 500 - -127.0.0.1 - - [13/Feb/2023 21:54:11] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:11] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:11] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:11] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:11] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:15] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:15] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:15] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:15] "GET /static/scan.js HTTP/1.1" 304 - -Exception on /alerts/7ac74c74f4d91021788f28b53ecfe9aa [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:54:15] "GET /alerts/7ac74c74f4d91021788f28b53ecfe9aa HTTP/1.1" 500 - -127.0.0.1 - - [13/Feb/2023 21:54:26] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:27] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:27] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:27] "GET /static/main.js HTTP/1.1" 304 - -Exception on /alerts/4ce67ffe341a9d48d2931f4794c0fb91 [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:54:27] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - -127.0.0.1 - - [13/Feb/2023 21:54:36] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:36] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:36] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:36] "GET /static/main.js HTTP/1.1" 304 - -Exception on /alerts/4ce67ffe341a9d48d2931f4794c0fb91 [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:54:36] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - -127.0.0.1 - - [13/Feb/2023 21:54:44] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:44] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:44] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:44] "GET /static/scan.js HTTP/1.1" 304 - -Exception on /alerts/4ce67ffe341a9d48d2931f4794c0fb91 [GET] -Traceback (most recent call last): - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 2525, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1822, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1820, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 1796, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 248, in return_alerts - fdata = format_data(i) - File "/Users/rajasekar.a/tools/ast3/API/api.py", line 214, in format_data - fdetails(["URL", data[i]]) -TypeError: 'list' object is not callable -127.0.0.1 - - [13/Feb/2023 21:54:44] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - -127.0.0.1 - - [13/Feb/2023 21:54:48] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:48] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:48] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:48] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:48] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:50] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 21:54:50] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:50] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:50] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 21:54:50] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:01:00] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:01:00] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:01:00] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:01:00] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:01:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:01:06] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:01:06] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:01:06] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:01:06] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:01:06] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:04:13] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:04:13] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:04:13] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:04:13] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:04:14] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:07:46] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:07:46] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:07:46] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:07:46] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:07:46] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:09:37] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:09:38] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:09:38] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:09:38] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:09:38] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 500 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:10:53] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:10:53] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:10:53] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:10:53] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:10:53] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:22] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:23] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /scan.html HTTP/1.1" 308 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:43] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:46] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:46] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:46] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:46] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:46] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:50] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:50] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:50] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:50] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:50] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:58] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:11:58] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:58] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:58] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:11:58] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:12:07] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:12:13] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:12:13] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:12:13] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:12:13] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:12:13] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:13:01] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:13:01] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:13:01] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:13:01] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:13:02] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:13:35] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:24:26] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:24:26] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:24:26] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:24:26] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:24:26] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:24:27] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:24:30] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:24:30] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:24:30] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:24:30] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:24:31] "GET /alerts/e564850f9eb4283e49f4542ff4616b67 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:24:44] "GET /alerts/e564850f9eb4283e49f4542ff4616b67 HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:26:49] "GET /alerts/e564850f9eb4283e49f4542ff4616b67 HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:27:41] "GET /alerts/e564850f9eb4283e49f4542ff4616b67 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:28:24] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:28:24] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:28:24] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:28:24] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:28:24] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 500 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:30:32] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:32] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:32] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:32] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:32] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:53] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:53] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:53] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:53] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:54] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:54] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:54] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:54] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /scan.html HTTP/1.1" 308 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:56] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:57] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:30:58] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:00] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:00] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:00] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:00] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:01] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:01] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:01] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:01] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:05] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:05] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:05] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:05] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:31:05] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:31:15] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:32:33] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:33] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:33] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:33] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:33] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:35] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:35] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:35] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:35] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:42] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /scan.html HTTP/1.1" 308 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:47] "GET /static/bootstrap.min.css.map HTTP/1.1" 404 - -127.0.0.1 - - [13/Feb/2023 22:32:52] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:32:57] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:33:00] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:33:00] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:00] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:00] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:00] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:33:01] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:33:01] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:01] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:01] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:33:22] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:33:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:33:22] "GET /alerts/2a16e906e60deefcdb3db6a42fbd7cef HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:34:30] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:34:30] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:34:30] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:34:30] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:34:30] "GET /alerts/2a16e906e60deefcdb3db6a42fbd7cef HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:39:36] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:39:36] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:39:36] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:39:36] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:39:37] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 500 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:41:00] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:41:00] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:41:00] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:41:00] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:41:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:41:05] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:41:05] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:41:05] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:41:05] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:41:06] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:41:18] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:43:36] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:43:36] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:36] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:36] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:43:39] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:43:39] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:39] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:39] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:39] "GET /alerts/b0122c2026618f373e23fe98777ae097 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:43:49] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:43:49] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:49] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:49] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:43:49] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:04] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:37] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:37] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:37] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:37] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:37] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:38] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:38] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:38] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:38] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:38] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:43] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:44:43] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:43] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:43] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:44:44] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://172.30.199.107:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [13/Feb/2023 22:45:44] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:45] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:45:47] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:45:47] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:47] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:47] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:47] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:45:52] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:45:52] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:52] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:52] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:45:52] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 404 - -127.0.0.1 - - [13/Feb/2023 22:46:10] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:10] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:10] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:10] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:10] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 404 - -127.0.0.1 - - [13/Feb/2023 22:46:13] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:13] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:13] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:13] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:13] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 404 - -127.0.0.1 - - [13/Feb/2023 22:46:17] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:17] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:17] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:17] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:19] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:19] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:19] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:19] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:20] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:20] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:20] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:20] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:21] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:31] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:46:31] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:31] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:31] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:46:31] "GET /alerts/b7afecae29189305d28d3cea80a637f1 HTTP/1.1" 404 - -127.0.0.1 - - [13/Feb/2023 22:47:01] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:47:01] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:01] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:01] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:47:07] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:47:07] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:07] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:07] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:07] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 404 - -127.0.0.1 - - [13/Feb/2023 22:47:27] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:47:34] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:47:35] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:35] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:35] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:47:35] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:48:59] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [13/Feb/2023 22:48:59] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:48:59] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:48:59] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [13/Feb/2023 22:48:59] "GET /alerts/20937a16677cd8817e0d45850414eef3 HTTP/1.1" 404 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.4:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:16] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:17] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:17] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:22] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:25] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:25] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:25] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:25] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:25] "GET /alerts/a1520a7b6e9641224d027b8adc5cc14f HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /scan.html HTTP/1.1" 308 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:28] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:29] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:37] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:55:37] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:37] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:37] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:55:37] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 09:56:25] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 09:56:25] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:56:25] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:56:25] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 09:56:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:03:01] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:02] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:03:07] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:03:12] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:03:16] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:03:16] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:16] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:16] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:03:16] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 10:17:32] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:17:32] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:17:32] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:17:32] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:17:32] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:17:35] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:17:35] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:17:35] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:17:35] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:17:35] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 10:23:01] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:23:01] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:23:01] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:23:01] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:23:01] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:23:11] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:23:11] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:23:11] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:23:11] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:23:12] "GET /alerts/7ac74c74f4d91021788f28b53ecfe9aa HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 10:24:55] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:24:55] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:24:55] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:24:55] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:24:55] "GET /alerts/fb4dcf50012a4e4c9f6e42377604f15c HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 10:25:03] "GET /alerts/fb4dcf50012a4e4c9f6e42377604f15c HTTP/1.1" 404 - -127.0.0.1 - - [14/Feb/2023 10:25:03] "GET /favicon.ico HTTP/1.1" 500 - -127.0.0.1 - - [14/Feb/2023 10:25:22] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 10:25:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:25:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:25:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 10:25:23] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 404 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.4:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [14/Feb/2023 10:27:08] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 11:11:30] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 11:16:14] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 11:16:14] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 11:16:14] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 11:16:14] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 11:16:14] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.4:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [14/Feb/2023 15:59:16] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 15:59:16] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 15:59:16] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 15:59:16] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 15:59:16] "GET /scan/scanids/ HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.4:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [14/Feb/2023 16:10:52] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 16:10:52] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 16:10:52] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 16:10:52] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 16:10:53] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 16:10:57] "GET /alerts/a1520a7b6e9641224d027b8adc5cc14f HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 16:11:20] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 16:11:20] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 16:11:20] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 16:11:20] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [14/Feb/2023 16:11:21] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [14/Feb/2023 16:11:29] "GET /alerts/184fe0e4db063c59baa15e40f54be614 HTTP/1.1" 200 - -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.7:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/bootstrap.min.css HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/bootstrap.min.js HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/main.css HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/main.js HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/jquery.min.js HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/bootstrap-table.min.css HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/bootstrap-table.min.js HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:25] "GET /static/astra.png HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:29] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:29] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:36:29] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:36:29] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:36:29] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:36] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:36] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:36:36] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:36:36] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:36:36] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:36:43] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - - * Detected change in '/Users/rajasekar.a/tools/ast3/API/api.py', reloading - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on all addresses (0.0.0.0) - * Running on http://127.0.0.1:8094 - * Running on http://192.168.1.7:8094 -Press CTRL+C to quit - * Restarting with stat - * Debugger is active! - * Debugger PIN: 141-760-292 -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET / HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/bootstrap.min.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/scan.js HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/bootstrap-table.min.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/bootstrap.min.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/bootstrap-table.min.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:38] "GET /static/jquery.min.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:38:39] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:38:44] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:38:49] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:38:54] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:38:59] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:04] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:09] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:14] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:19] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:22] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:22] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:39:22] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:39:22] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:39:22] "GET /scan/scanids/ HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:27] "GET /reports.html HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:27] "GET /static/main.css HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:39:27] "GET /static/scan.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:39:27] "GET /static/main.js HTTP/1.1" 304 - -127.0.0.1 - - [15/Feb/2023 11:39:27] "GET /alerts/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - -127.0.0.1 - - [15/Feb/2023 11:39:37] "GET /reports/4ce67ffe341a9d48d2931f4794c0fb91 HTTP/1.1" 200 - From 41a6abbcd071a30ae610ae3e5c3a2fde8695e2d5 Mon Sep 17 00:00:00 2001 From: Dale Snowdon Date: Tue, 18 Apr 2023 01:54:02 +0100 Subject: [PATCH 3/3] Update the readme. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index a030e0a..a5954ed 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,17 @@ $ docker build -t astra-cli . $ docker run --rm -it --link astra-mongo:mongo astra-cli ``` +## Vscode + +> Enable docker-compose v2 for --wait support on the docker compose up command, allowing waiting for health checks. + +Open the repository directory root in Visual Studio Code, click the prompt to open the container or issue the following command: + +``` +> Dev Containers: Rebuild container +``` + + ## Dependencies ```