commit 83dec7504e096e060abddeb92fa3b3d2b142490f Author: dsyoon Date: Wed Feb 25 19:10:13 2026 +0900 Initial commit after re-install diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4ecfa87 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.env +__pycache__/ +*.pyc +.DS_Store +.venv/ +venv/ +env/ +.pytest_cache/ diff --git a/PROMPT.txt b/PROMPT.txt new file mode 100644 index 0000000..fe00159 --- /dev/null +++ b/PROMPT.txt @@ -0,0 +1,40 @@ +뉴스 링크를 깔끔하게 관리하고 요약까지 보여주는 웹 서비스라니, '나중에 읽어야지' 하고 쌓아두기만 하는 우리 모두의 습관을 아주 우아하게 해결하려는 멋진 프로젝트입니다. + +단순히 URL만 저장된 DB에서 정보를 가져와 화면에 뿌려주려면, URL에서 제목과 요약(메타데이터)을 추출하는 '크롤링/파싱' 로직이 핵심입니다. + +DB 연결: ./env 파일에 저장된 환경 변수를 참조해서 연결해줘. (DB_HOST, DB_USER, DB_PASS 등 포함) + +DB 테이블: news_link 테이블에는 id, url, created_at 컬럼이 있어. + +핵심 기능: 사용자가 URL을 입력하면 해당 페이지의 메타데이터(Title, Description, Image)를 추출해서 보여줘야 해. + +먼저 프로젝트 기본 구조와 ./env 파일을 읽어 DB에 연결하는 설정 코드를 작성해줘." + +2. 백엔드: 데이터 추출 및 API 로직 프롬프트 +URL만 있는 상태에서 글의 앞부분(소개)을 가져오려면 Open Graph 데이터를 활용하는 것이 가장 효율적입니다. + +프롬프트: "백엔드에서 다음 API 엔드포인트를 만들어줘. + +GET /links: DB에서 모든 URL을 가져온 뒤, 각 URL의 웹사이트를 방문해 메타데이터(제목, 요약 설명, 대표 이미지)를 추출해서 JSON 형태로 반환해줘. (힌트: cheerio나 metascraper 같은 라이브러리 활용) + +POST /links: 사용자가 입력한 새로운 URL을 news_link 테이블에 저장해줘. + +특히 URL 크롤링 시 에러가 발생하면 기본 이미지와 '설명 없음' 메시지를 반환하도록 예외 처리를 꼼꼼하게 해줘." + +3. 프론트엔드: UI 및 인터페이스 프롬프트 +사용자가 보기 편한 카드 레이아웃과 추가 버튼을 만드는 단계입니다. + +프롬프트: "사용자에게 보여줄 프론트엔드 화면을 디자인해줘. + +전체 레이아웃: 깔끔한 카드 스타일의 리스트 뷰. 각 카드에는 뉴스 제목, 간략한 소개글(요약), 해당 사이트로 이동하는 링크가 포함돼야 해. + +추가 기능: 화면 오른쪽 하단에 '플로팅 버튼(+)'을 만들고, 클릭하면 URL을 입력할 수 있는 모달(Modal) 창이 뜨게 해줘. + +상태 관리: URL을 추가하면 페이지 새로고침 없이 리스트에 바로 반영되도록 해줘. + +현대적이고 심플한 UI를 위해 **[Tailwind CSS 혹은 Bootstrap]**을 사용해서 코드를 짜줘." + +💡 구현 시 참고할 팁 +성능 최적화: 매번 링크를 불러올 때마다 실시간으로 크롤링하면 속도가 매우 느려집니다. 처음 URL을 추가할 때 DB에 제목과 요약 내용을 함께 저장(save)하는 방식이 훨씬 쾌적합니다. + +Open Graph: 대부분의 뉴스나 블로그는 태그를 가지고 있습니다. 이 부분을 긁어오면 말씀하신 "앞부분 소개"를 가장 정확하게 가져올 수 있습니다. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..dcd3dc4 --- /dev/null +++ b/README.md @@ -0,0 +1,102 @@ +# News Link + +뉴스/아티클 URL을 저장하고, 제목/요약/대표 이미지를 추출해 카드 형태로 보여주는 Flask 웹앱입니다. + +## 구성 + +- `app.py`: Flask 서버, DB 연결, 메타데이터 추출, API +- `templates/index.html`: 초기 화면(SSR) + 모달 UI +- `static/app.js`: 무한 스크롤(30개 단위), URL 붙여넣기 파싱, 추가/갱신 +- `static/styles.css`: 스타일 +- `static/placeholder.svg`: 이미지 없을 때 표시용 + +## 요구사항 + +- Python 3.x +- PostgreSQL +- (권장) 미니콘다 환경: `ncue` + +## 설치 + +```bash +pip install -r requirements.txt +``` + +## 환경변수(.env) + +프로젝트 루트에 `.env` 파일을 만들고 아래 값을 설정하세요. (`.env`는 git에 커밋되지 않습니다) + +```dotenv +DB_HOST=... +DB_PORT=5432 +DB_NAME=... +DB_USER=... +DB_PASSWORD=... +TABLE=news_link +``` + +옵션(선택): + +```dotenv +PORT=8021 +DB_SCHEMA=public +DEFAULT_AUTHOR_ID=1 +DEFAULT_PAGE_SIZE=30 +MAX_PAGE_SIZE=60 +CACHE_TTL_SECONDS=3600 +FAILED_TTL_SECONDS=300 +``` + +## DB 스키마 + +`TABLE`(기본 `news_link`) 테이블에 아래 컬럼이 필요합니다. + +- `id` +- `url` +- `created_at` + +예시(참고): + +```sql +CREATE TABLE IF NOT EXISTS news_link ( + id SERIAL PRIMARY KEY, + url TEXT NOT NULL, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); +``` + +## 실행 + +```bash +python app.py +``` + +기본 접속 주소: + +- `http://localhost:8021` + +## API + +- `GET /links?limit=30&offset=0` + - 30개 단위로 링크를 가져옵니다(프론트 무한 스크롤). + - 응답: + - `items`: 링크 배열 + - `next_offset`: 다음 요청 offset + - `has_more`: 다음 페이지 존재 여부 +- `POST /links` + - body: `{ "url": "https://..." }` + - URL을 DB에 저장하고 메타데이터를 추출해 반환합니다. + +## 동작 메모 + +- 초기 화면은 DB에서 **첫 페이지(기본 30개)** 만 가져와 SSR로 즉시 렌더링합니다. +- 메타데이터 추출은 캐시를 사용합니다(성공/실패 TTL 각각 적용). + +## ncue.net 연동 (ref 전달) + +`ncue.net`의 `/go`에서 아래와 같이 전달되는 값을 받아 `author_id(text)`에 저장합니다. + +- 로그인 사용자: `ref_type=email&ref=` +- 비로그인 사용자: `ref_type=ip&ref=` + +이 값은 최초 진입 시 쿼리스트링으로 들어오며, 이후 요청에서도 유지되도록 서버가 쿠키로 저장합니다. diff --git a/app.py b/app.py new file mode 100644 index 0000000..83f5182 --- /dev/null +++ b/app.py @@ -0,0 +1,467 @@ +import os +import re +import time +from concurrent.futures import ThreadPoolExecutor +from datetime import datetime +from urllib.parse import urlparse + +import psycopg2 +import requests +from bs4 import BeautifulSoup +from dotenv import load_dotenv +from flask import Flask, jsonify, make_response, render_template, request, send_from_directory + +load_dotenv() + +app = Flask(__name__, static_folder="static", template_folder="templates") + + +DEFAULT_DESCRIPTION = "설명 없음" +DEFAULT_IMAGE = "/static/placeholder.svg" +CACHE_TTL_SECONDS = int(os.getenv("CACHE_TTL_SECONDS", "3600")) +FAILED_TTL_SECONDS = int(os.getenv("FAILED_TTL_SECONDS", "300")) +METADATA_CACHE = {} +TABLE_COLUMNS_CACHE = {} +PLACEHOLDER_DATA_URI = ( + "data:image/svg+xml;utf8," + "" + "" + "" + "" + "" + "No%20Image" + "" +) +DEFAULT_PAGE_SIZE = int(os.getenv("DEFAULT_PAGE_SIZE", "30")) +MAX_PAGE_SIZE = int(os.getenv("MAX_PAGE_SIZE", "60")) +DEFAULT_SCHEMA = os.getenv("DB_SCHEMA", "public") + + +def _safe_identifier(name: str) -> str: + if not name or not re.match(r"^[A-Za-z_][A-Za-z0-9_]*$", name): + raise ValueError(f"Invalid SQL identifier: {name!r}") + return name + + +def _table_ref(schema: str, table: str) -> str: + return f"{_safe_identifier(schema)}.{_safe_identifier(table)}" + + +def get_db_connection(): + return psycopg2.connect( + host=os.getenv("DB_HOST"), + port=os.getenv("DB_PORT"), + dbname=os.getenv("DB_NAME"), + user=os.getenv("DB_USER"), + password=os.getenv("DB_PASSWORD"), + ) + + +def normalize_url(raw_url: str) -> str: + if not raw_url: + return raw_url + parsed = urlparse(raw_url) + if parsed.scheme: + return raw_url + return f"https://{raw_url}" + + +def extract_meta(soup: BeautifulSoup, property_name: str, name: str): + tag = soup.find("meta", property=property_name) + if tag and tag.get("content"): + return tag.get("content").strip() + tag = soup.find("meta", attrs={"name": name}) + if tag and tag.get("content"): + return tag.get("content").strip() + return "" + + +def extract_fallback_description(soup: BeautifulSoup) -> str: + for paragraph in soup.find_all("p"): + text = paragraph.get_text(" ", strip=True) + if len(text) >= 40: + return text[:180] + return "" + + +def fetch_metadata(url: str): + fallback = { + "title": url, + "description": DEFAULT_DESCRIPTION, + "image": DEFAULT_IMAGE, + } + cached = METADATA_CACHE.get(url) + now = time.time() + if cached and cached["expires_at"] > now: + return cached["data"] + try: + response = requests.get( + url, + headers={ + "User-Agent": ( + "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) " + "AppleWebKit/537.36 (KHTML, like Gecko) " + "Chrome/121.0.0.0 Safari/537.36" + ) + }, + timeout=6, + ) + response.raise_for_status() + soup = BeautifulSoup(response.text, "html.parser") + resolved_url = response.url or url + + title = ( + extract_meta(soup, "og:title", "twitter:title") + or extract_meta(soup, "twitter:title", "title") + or (soup.title.string.strip() if soup.title and soup.title.string else "") + or resolved_url + ) + description = ( + extract_meta(soup, "og:description", "description") + or extract_meta(soup, "twitter:description", "description") + ) + if not description: + description = extract_fallback_description(soup) or DEFAULT_DESCRIPTION + image = ( + extract_meta(soup, "og:image", "twitter:image") + or extract_meta(soup, "twitter:image", "image") + or DEFAULT_IMAGE + ) + data = {"title": title, "description": description, "image": image} + METADATA_CACHE[url] = { + "data": data, + "expires_at": now + CACHE_TTL_SECONDS, + "ok": True, + } + return data + except Exception: + METADATA_CACHE[url] = { + "data": fallback, + "expires_at": now + FAILED_TTL_SECONDS, + "ok": False, + } + return fallback + + +def _clamp_int(value, default: int, minimum: int, maximum: int) -> int: + try: + parsed = int(value) + except Exception: + return default + return max(minimum, min(parsed, maximum)) + + +def get_table_columns(schema: str, table: str): + key = (schema, table) + cached = TABLE_COLUMNS_CACHE.get(key) + if cached is not None: + return cached + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute( + """ + SELECT column_name + FROM information_schema.columns + WHERE table_schema = %s AND table_name = %s + """, + (schema, table), + ) + cols = {row[0] for row in cur.fetchall()} + + TABLE_COLUMNS_CACHE[key] = cols + return cols + + +def get_table_columns_info(schema: str, table: str): + key = ("info", schema, table) + cached = TABLE_COLUMNS_CACHE.get(key) + if cached is not None: + return cached + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute( + """ + SELECT column_name, data_type, udt_name, is_nullable + FROM information_schema.columns + WHERE table_schema = %s AND table_name = %s + """, + (schema, table), + ) + info = { + row[0]: { + "data_type": row[1], + "udt_name": row[2], + "is_nullable": row[3], + } + for row in cur.fetchall() + } + + TABLE_COLUMNS_CACHE[key] = info + return info + + +def get_request_identity(req) -> tuple[str | None, str | None]: + """ + 가능한 경우 (email, ip)를 반환. + - 이메일: 프록시/SSO가 주입하는 헤더에서 추출 + - IP: X-Forwarded-For / X-Real-IP / remote_addr 순 + """ + # 0) ncue.net/go 연동: ref_type/ref 를 쿼리스트링 또는 쿠키로 전달받을 수 있음 + ref_type = (req.args.get("ref_type") or req.cookies.get("ref_type") or "").strip() + ref = (req.args.get("ref") or req.cookies.get("ref") or "").strip() + if ref_type in ("email", "ip") and ref: + if ref_type == "email": + return ref, None + return None, ref + + email_headers = [ + "X-User-Email", + "X-Forwarded-Email", + "X-Auth-Request-Email", + "X-Forwarded-User", + "Remote-User", + "X-Email", + ] + email = None + for h in email_headers: + v = (req.headers.get(h) or "").strip() + if v and "@" in v: + email = v + break + + xff = (req.headers.get("X-Forwarded-For") or "").strip() + if xff: + ip = xff.split(",")[0].strip() + else: + ip = (req.headers.get("X-Real-IP") or "").strip() or (req.remote_addr or "") + ip = ip.strip() or None + return email, ip + + +def _maybe_set_ref_cookies(resp): + ref_type = (request.args.get("ref_type") or "").strip() + ref = (request.args.get("ref") or "").strip() + if ref_type in ("email", "ip") and ref: + # JS 요청(/links)에서도 유지되도록 쿠키 저장 (SameSite=Lax) + max_age = 60 * 60 * 24 * 30 # 30일 + resp.set_cookie("ref_type", ref_type, max_age=max_age, samesite="Lax") + resp.set_cookie("ref", ref, max_age=max_age, samesite="Lax") + return resp + + +def fetch_links_page_from_db(limit: int, offset: int): + table = os.getenv("TABLE", "news_link") + schema = os.getenv("DB_SCHEMA", DEFAULT_SCHEMA) + table_ref = _table_ref(schema, table) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute( + f"SELECT id, url, created_at FROM {table_ref} ORDER BY created_at DESC OFFSET %s LIMIT %s", + (offset, limit), + ) + return cur.fetchall() + + +@app.get("/") +def index(): + links = [] + error_message = "" + try: + rows = fetch_links_page_from_db(DEFAULT_PAGE_SIZE, 0) + for link_id, url, created_at in rows: + links.append( + { + "id": link_id, + "url": url, + "created_at": created_at.isoformat() + if isinstance(created_at, datetime) + else str(created_at), + "title": "", + "description": "", + "image": "", + } + ) + except Exception as exc: + error_message = f"DB 조회 실패: {exc}" + resp = make_response( + render_template( + "index.html", + links=links, + error_message=error_message, + placeholder_data_uri=PLACEHOLDER_DATA_URI, + default_image=DEFAULT_IMAGE, + ) + ) + return _maybe_set_ref_cookies(resp) + + +@app.get("/favicon.ico") +def favicon(): + # ncue.net 등에서 /favicon.ico 로 직접 가져갈 수 있게 제공 + return send_from_directory( + app.static_folder, + "favicon.ico", + mimetype="image/x-icon", + max_age=60 * 60 * 24 * 7, + ) + + +@app.get("/links") +def get_links(): + limit = _clamp_int( + request.args.get("limit"), DEFAULT_PAGE_SIZE, minimum=1, maximum=MAX_PAGE_SIZE + ) + offset = _clamp_int(request.args.get("offset"), 0, minimum=0, maximum=10_000_000) + + try: + rows_plus_one = fetch_links_page_from_db(limit + 1, offset) + except Exception as exc: + return jsonify({"error": "DB 조회 실패", "detail": str(exc)}), 500 + + has_more = len(rows_plus_one) > limit + rows = rows_plus_one[:limit] + + urls = [url for _, url, _ in rows] + metas = [] + if urls: + with ThreadPoolExecutor(max_workers=min(8, len(urls))) as executor: + metas = list(executor.map(fetch_metadata, urls)) + + results = [] + for (link_id, url, created_at), meta in zip(rows, metas): + results.append( + { + "id": link_id, + "url": url, + "created_at": created_at.isoformat() + if isinstance(created_at, datetime) + else str(created_at), + **meta, + } + ) + return jsonify( + { + "items": results, + "limit": limit, + "offset": offset, + "next_offset": offset + len(results), + "has_more": has_more, + } + ) + + +@app.post("/links") +def add_link(): + data = request.get_json(silent=True) or {} + raw_url = (data.get("url") or "").strip() + if not raw_url: + return jsonify({"error": "URL을 입력해주세요."}), 400 + + url = normalize_url(raw_url) + table = os.getenv("TABLE", "news_link") + schema = os.getenv("DB_SCHEMA", DEFAULT_SCHEMA) + table_ref = _table_ref(schema, table) + try: + cols = get_table_columns(schema, table) + cols_info = get_table_columns_info(schema, table) + email, ip = get_request_identity(request) + identity = email or ip # 이메일 우선, 없으면 IP + + insert_cols = ["url"] + insert_vals_sql = ["%s"] + insert_params = [url] + + # 운영 DB 스키마 호환: created_at/updated_at, author_id 등이 NOT NULL일 수 있음 + if "created_at" in cols: + insert_cols.append("created_at") + insert_vals_sql.append("NOW()") + if "updated_at" in cols: + insert_cols.append("updated_at") + insert_vals_sql.append("NOW()") + + if "author_id" in cols: + author_col = cols_info.get("author_id", {}) + data_type = (author_col.get("data_type") or "").lower() + udt = (author_col.get("udt_name") or "").lower() + + # 1) author_id가 텍스트 계열이면: 이메일/아이피 문자열을 그대로 저장 + if data_type in ("text", "character varying", "character"): + insert_cols.append("author_id") + insert_vals_sql.append("%s") + insert_params.append(identity or "unknown") + + # 2) author_id가 숫자(정수/숫자)면: 문자열 저장 불가 + # → 기존 DEFAULT_AUTHOR_ID로 채우고, 가능한 경우 author_email/author_ip에 따로 저장(스키마 호환) + elif udt in ("int2", "int4", "int8") or data_type in ("smallint", "integer", "bigint", "numeric"): + raw_author_id = os.getenv("DEFAULT_AUTHOR_ID") + if raw_author_id is None or str(raw_author_id).strip() == "": + return ( + jsonify( + { + "error": "DB 저장 실패", + "detail": "author_id가 정수 NOT NULL입니다. .env에 DEFAULT_AUTHOR_ID(정수)를 설정하거나, author_id 타입을 text로 변경하세요.", + } + ), + 500, + ) + try: + author_id_int = int(raw_author_id) + except Exception: + return ( + jsonify( + { + "error": "DB 저장 실패", + "detail": f"DEFAULT_AUTHOR_ID는 정수여야 합니다: {raw_author_id!r}", + } + ), + 500, + ) + insert_cols.append("author_id") + insert_vals_sql.append("%s") + insert_params.append(author_id_int) + + if "author_email" in cols and email: + insert_cols.append("author_email") + insert_vals_sql.append("%s") + insert_params.append(email) + if "author_ip" in cols and ip: + insert_cols.append("author_ip") + insert_vals_sql.append("%s") + insert_params.append(ip) + + # 3) 기타 타입(uuid 등): 우선 문자열을 넣되 실패 시 detail로 노출 + else: + insert_cols.append("author_id") + insert_vals_sql.append("%s") + insert_params.append(identity or "unknown") + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute( + f"INSERT INTO {table_ref} ({', '.join(insert_cols)}) VALUES ({', '.join(insert_vals_sql)}) RETURNING id, created_at", + tuple(insert_params), + ) + link_id, created_at = cur.fetchone() + conn.commit() + except Exception as exc: + return jsonify({"error": "DB 저장 실패", "detail": str(exc)}), 500 + + meta = fetch_metadata(url) + return jsonify( + { + "id": link_id, + "url": url, + "created_at": created_at.isoformat() + if isinstance(created_at, datetime) + else str(created_at), + **meta, + } + ) + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=8021, debug=True) diff --git a/nohup.out b/nohup.out new file mode 100644 index 0000000..db9ef25 --- /dev/null +++ b/nohup.out @@ -0,0 +1,3784 @@ + * Serving Flask app 'app' + * Debug mode: on +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:8021 + * Running on http://183.111.227.204:8021 +Press CTRL+C to quit + * Restarting with stat + * Debugger is active! + * Debugger PIN: 991-415-584 +127.0.0.1 - - [07/Feb/2026 16:46:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:05] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:05] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:05] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 16:46:08] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:32] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:41] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:41] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:41] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:46:41] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 16:46:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:17] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:17] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:17] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:17] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:17] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 16:47:24] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:24] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:24] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:25] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:47:25] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 16:48:03] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:48:03] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:48:03] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:48:04] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:49:07] "HEAD / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 16:49:08] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:05:01] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:07:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:07:36] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:07:37] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:07:40] "GET /https:/share.google/UEiatsO0BcOvhih7r HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:42] "GET /https:/www.technologyreview.kr/대형언어모델llm이-가지고-있다는-파라미터란-무/ HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:43] "GET /https:/share.google/D31ozT6EnWxItcNfa HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:43] "GET /https:/share.google/6HzPbea4QD8eSKiGB HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:43] "GET /https:/share.google/4P74vkE62iqLOxyht HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:43] "GET /https:/share.google/2nxnbP5W7jMadCA2K HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:43] "GET /https:/share.google/mKjnXuTVnoU2OHDlv HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:43] "GET /https:/share.google/AExB8O9mOcadRTjnU HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/yBI7uxSQzguTwDTSZ HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/X5A9HPlxU4A79BkW0 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/h1doCpuvn497GLDhH HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/1h7QU3AGBfn0UvJYX HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/N4lot4azLWyzPInsS HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/fprUUZ2EjdHmK6po3 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/oEauLSAThaDTN5t0J HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/YTDuWAGzNLEXb5zNg HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/wwEbTj4VwuQZeDt6p HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/gPmHde1dnReD66F6Q HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/T4gzW2r296mtMwst8 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/1ArRJaP2jHFoYgrhU HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/table-m.cafe.daum.net/p/1062665598/517998097706608896 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/zr8cjRbdy6xa3KiWC HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/6vSBIPW7IUSs0EQei HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/hX7DSFIJnaCGlUmTP HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/OzFSYEoEnMuCVGHkV HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/EMFFGs8Bdiy6dSmIs HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/61JNwBsWWreqi1oI4 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/yTJlZzsBSuKqPwaVy HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:44] "GET /https:/share.google/OY3PEJwlA4PhYqOwl HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:07:45] "GET /https:/share.google/GP9AHXFc69h69iKd3 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:16:13] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:22:00] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:22:00] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:22:00] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:22:00] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:22:00] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:22:38] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:29:52] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:34:14] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:34:14] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:34:14] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:34:14] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:34:14] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:34:19] "GET /links?limit=30&offset=30 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:39:51] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:39:56] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:40:00] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/UEiatsO0BcOvhih7r HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/61JNwBsWWreqi1oI4 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/h1doCpuvn497GLDhH HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/N4lot4azLWyzPInsS HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/mKjnXuTVnoU2OHDlv HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/D31ozT6EnWxItcNfa HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/AExB8O9mOcadRTjnU HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:27] "GET /https:/share.google/fprUUZ2EjdHmK6po3 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/2nxnbP5W7jMadCA2K HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/www.technologyreview.kr/대형언어모델llm이-가지고-있다는-파라미터란-무/ HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/oEauLSAThaDTN5t0J HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/YTDuWAGzNLEXb5zNg HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/wwEbTj4VwuQZeDt6p HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/4P74vkE62iqLOxyht HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/6HzPbea4QD8eSKiGB HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/yBI7uxSQzguTwDTSZ HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/X5A9HPlxU4A79BkW0 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:28] "GET /https:/share.google/1h7QU3AGBfn0UvJYX HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/EMFFGs8Bdiy6dSmIs HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/T4gzW2r296mtMwst8 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/1ArRJaP2jHFoYgrhU HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/6vSBIPW7IUSs0EQei HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/OY3PEJwlA4PhYqOwl HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/hX7DSFIJnaCGlUmTP HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/OzFSYEoEnMuCVGHkV HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/yTJlZzsBSuKqPwaVy HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:40:29] "GET /https:/share.google/GP9AHXFc69h69iKd3 HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:47:15] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:47:15] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:47:18] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:47:21] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 17:57:07] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:57:07] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 17:57:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:09:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:09:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:19:49] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:19:49] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:19:49] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:19:50] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 18:19:53] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:19:58] "GET /links?limit=30&offset=30 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:20:02] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:20:02] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:20:02] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:20:03] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 18:20:03] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 18:20:07] "GET /links?limit=30&offset=30 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 19:09:57] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 19:17:26] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 19:17:27] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 19:20:17] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 19:51:30] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 20:40:07] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:40:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:40:15] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:40:31] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:40:37] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:43:39] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:44:50] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:51:14] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:51:18] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:51:25] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:51:32] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:51:33] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:58:45] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:58:49] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:59:29] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:59:30] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 20:59:48] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:05:42] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:05:59] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:05:59] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:06:09] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 21:06:09] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 21:06:09] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 21:06:09] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:06:12] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 21:09:38] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:09:42] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:09:55] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:11:42] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:13:16] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:16:54] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:16:55] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:16:56] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:16:56] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:16:56] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:32:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:33:07] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:33:07] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:33:08] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:33:08] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:33:08] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:34:10] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:34:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:34:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:34:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:37:42] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:37:43] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:37:43] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:38:22] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:41:05] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 21:41:06] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 22:10:53] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 22:10:58] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 22:10:59] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [07/Feb/2026 22:11:02] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 22:11:03] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [07/Feb/2026 22:11:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 01:59:37] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 02:29:02] "HEAD / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 02:29:16] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:38:06] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:38:07] "GET /info.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:07] "GET /php-info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:07] "GET /newinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:08] "GET /siteinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:08] "GET /info.php.1 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:08] "GET /admin/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:08] "GET /pageinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:08] "GET /info.php.back HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:09] "GET /phpbb/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:09] "GET /release_info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:09] "GET /test/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:09] "GET /info HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:10] "GET /info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:10] "GET /phpinfo.php3 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:10] "GET /phpinfo.php.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:10] "GET /info.php.save.1 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:11] "GET /info.php_ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:11] "GET /_info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:11] "GET /admin_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:11] "GET /dbinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:12] "GET /admin_info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:12] "GET /.aws/credentials HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:12] "GET /config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:12] "GET /phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:13] "GET /phpinfo.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:13] "GET /admin/admin_phpinfo.php4 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:13] "GET /pinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:13] "GET /.env.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:14] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:14] "GET /.env.backup HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:14] "GET /.env_sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:14] "GET /.env.old HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:15] "GET /.env.www HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:15] "GET /.docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:15] "GET /.env.dev HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:15] "GET /.env.example HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:16] "GET /.env_1 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:16] "GET /.env.stage HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:16] "GET /config.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:16] "GET /.pam_environment HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:17] "GET /.environment HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:17] "GET /.env.production HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:17] "GET /.env.production.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:17] "GET /env.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:18] "GET /.powenv HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:18] "GET /.rbenv-gemsets HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:18] "GET /.envs HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:18] "GET /.env.docker HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:19] "GET /.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:19] "GET /.env_bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:19] "GET /.env.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:19] "GET /.env.development.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:20] "GET /.env-example HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:20] "GET /.env.prod HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:20] "GET /.env.docker.dev HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:20] "GET /.env.test HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:21] "GET /env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:21] "GET /env.list HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:21] "GET /.ghc.environment HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:21] "GET /env.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:22] "GET /printenv HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:22] "GET /.hsenv HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:22] "GET /environment HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:22] "GET /env.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:23] "GET /envrc HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:23] "GET /.env.dev.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:23] "GET /environment.ts HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:23] "GET /.env_old HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:24] "GET /.zshenv HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:24] "GET /.env.development.sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:24] "GET /.rbenv-version HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:24] "GET /.env-sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:25] "GET /.env.prod.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:25] "GET /.env.travis HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:25] "GET /.env.test.sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:25] "GET /.env.2 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:26] "GET /.vscode/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:26] "GET /.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:26] "GET /.env.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:26] "GET /.env.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:26] "GET /printenv.tmp HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:27] "GET /.flaskenv HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:27] "GET /.env.test.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:27] "GET /.jenv-version HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:27] "GET /.envrc HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:28] "GET /.env.dist HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:28] "GET /.env.sample.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:28] "GET /.env1 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:28] "GET /.venv HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:29] "GET /env.prod.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:29] "GET /env.test.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:29] "GET /env.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:29] "GET /env.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:30] "GET /admin/config?cmd=cat%20/root/.aws/credentials HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:30] "GET /pms?module=logging&file_name=../../../../../../~/.aws/credentials&number_of_lines=10000 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:30] "GET /k8s/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:30] "GET /config/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:31] "GET /app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:31] "GET /api/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:31] "GET /backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:31] "GET /src/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:32] "GET /admin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:32] "GET /public/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:33] "GET /web/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:33] "GET /server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:33] "GET /client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:33] "GET /frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:34] "GET /.env.development HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:34] "GET /.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:34] "GET /.env.live HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:35] "GET /config.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:35] "GET /admin/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:35] "GET /api/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:35] "GET /config/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:36] "GET /app/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:36] "GET /backend/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:36] "GET /src/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:36] "GET /config/database.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:37] "GET /config/mail.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:37] "GET /config/app.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:37] "GET /config/services.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:38] "GET /wp-config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:38] "GET /configuration.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:38] "GET /.aws/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:38] "GET /config/aws.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:39] "GET /config/sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:39] "GET /config/mailgun.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:39] "GET /sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:39] "GET /aws.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:40] "GET /api_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:40] "GET /keys.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:40] "GET /secrets.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:41] "GET /config/secrets.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:41] "GET /private/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:41] "GET /backup/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:41] "GET /test/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:42] "GET /dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:42] "GET /staging/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:42] "GET /production/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:42] "GET /laravel/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:43] "GET /config/config.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:43] "GET /app/config.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:43] "GET /test/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:44] "GET /backup/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:44] "GET /private/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:44] "GET /settings.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:44] "GET /app/settings.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:45] "GET /config/settings.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:45] "GET /database.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:45] "GET /config/database.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:45] "GET /administrator/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:46] "GET /cms/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:46] "GET /portal/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:46] "GET /dashboard/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:47] "GET /crm/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:47] "GET /mail/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:47] "GET /mailer/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:47] "GET /deployment/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:48] "GET /docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:48] "GET /helm/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:48] "GET /terraform/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:48] "GET /ansible/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:49] "GET /config/mail.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:49] "GET /config/smtp.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:49] "GET /config/database.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:49] "GET /secrets/config.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:50] "GET /private/keys.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:50] "GET /.env_example HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:50] "GET /core/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:51] "GET /api HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:51] "GET /backend HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:51] "GET /local/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:51] "GET /application/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:52] "GET /phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:52] "GET /_profiler/phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:52] "GET /config/settings.ini HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:52] "GET /env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:53] "GET /new/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:53] "GET /new/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:53] "GET /new/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:54] "GET /new/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:54] "GET /_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:54] "GET /_profiler/phpinfo/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:54] "GET /_profiler/phpinfo/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:55] "GET /wp-config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:55] "GET /aws-secret.yaml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:55] "GET /awstats/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:55] "GET /conf/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:56] "GET /cron/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:56] "GET /www/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:56] "GET /docker/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:57] "GET /env.backup HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:57] "GET /xampp/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:57] "GET /lara/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:57] "GET /lara/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:58] "GET /laravel/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:58] "GET /js/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:58] "GET /laravel/core/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:58] "GET /nginx/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:59] "GET /site/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:59] "GET /xampp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:38:59] "GET /.docker/laravel/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:00] "GET /laravel/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:00] "GET /laravel/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:01] "GET /laravel/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:01] "GET /laravel/core/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:01] "GET /laravel/core/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:01] "GET /laravel/core/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:02] "GET /main/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:02] "GET /bootstrap/cache/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:02] "GET /storage/app/private/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:02] "GET /storage/logs/laravel.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:03] "GET /composer.lock HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:03] "GET /server.key HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:03] "GET /dump.sh HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:03] "GET /php5.ini HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:04] "GET /config.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:04] "GET /src/app.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:04] "GET /server-info HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:04] "GET /docker.sh HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:05] "GET /config.php.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:05] "GET /pi.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:05] "GET /wp-config.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:05] "GET /test.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:06] "GET /wp-config.php.backup HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:06] "GET /aws-credentials.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:06] "GET /api/info HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:06] "GET /config.ini HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:06] "GET /%C0 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:07] "GET /.aws/credentials.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:07] "GET /.aws/credentials/admin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:07] "GET /.azure-pipelines.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:08] "GET /.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:08] "GET /.bitbucket-pipelines.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:08] "GET /.bitbucket/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:08] "GET /.boto HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:08] "GET /.bzr/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:09] "GET /.c9/metadata/environment/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:09] "GET /.circleci/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:09] "GET /.circleci/config.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:09] "GET /.dockerignore HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:10] "GET /.env-db HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:10] "GET /.env.back HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:10] "GET /.env.bkp HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:10] "GET /.env.credentials HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:11] "GET /.env.email HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:11] "GET /.env.hidden HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:11] "GET /.env.hide HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:11] "GET /.env.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:12] "GET /.env.key HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:12] "GET /.env.mail HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:12] "GET /.env.smtp HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:12] "GET /.env.swp HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:13] "GET /.env.testing HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:13] "GET /.env.uat HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:13] "GET /.env_aws HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:13] "GET /.env_backup HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:14] "GET /.env_copy HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:14] "GET /.env_private HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:14] "GET /.env_secret HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:14] "GET /.env~ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:15] "GET /.git/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:15] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:15] "GET /.github/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:15] "GET /.github/workflows/*.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:16] "GET /.gitignore HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:16] "GET /.gitlab-ci.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:16] "GET /.gitlab-ci/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:16] "GET /.gitlab/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:17] "GET /.hg/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:17] "GET /.htaccess HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:17] "GET /.idea/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:17] "GET /.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:18] "GET /.next/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:18] "GET /.npmrc HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:18] "GET /.nuxt/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:18] "GET /.output/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:19] "GET /.phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:19] "GET /.production HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:19] "GET /.pypirc HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:19] "GET /.remote HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:20] "GET /.ssh/id_rsa HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:20] "GET /.ssh/id_rsa.pub HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:20] "GET /.svn/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:20] "GET /.travis.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:21] "GET /.vite/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:21] "GET /.vscode/settings.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:21] "GET /.well-known/openid-configuration HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:21] "GET /.well-known/security.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:22] "GET /07-accessing-data/begin/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:22] "GET /07-accessing-data/end/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:22] "GET /08-routing/begin/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:22] "GET /08-routing/end/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:23] "GET /09-managing-state/begin/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:23] "GET /09-managing-state/end/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:23] "GET /123.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:23] "GET /3-sequelize/final/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:46] "GET /31_structure_tests/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:46] "GET /?p=info HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:39:47] "GET /?p=php HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:39:48] "GET /?phpinfo HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:39:49] "GET /?phpinfo.php HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:39:50] "GET /?phpinfo=1 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:39:50] "GET /?q=info HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 03:39:51] "GET /__debug__ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:51] "GET /__debugbar HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:52] "GET /__tests__/test-become/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:52] "GET /_astro/[chunk-name].[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:52] "GET /_dev HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:52] "GET /_ignition/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:53] "GET /_next/static/chunks/945-34f67d7c0866cf61b970.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:53] "GET /_next/static/chunks/app/[...not-found]/page-63e952e68a371605.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:53] "GET /_next/static/chunks/app/error.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:53] "GET /_next/static/chunks/app/global-error.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:54] "GET /_next/static/chunks/app/layout-a908fe02173ed4b1.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:54] "GET /_next/static/chunks/framework-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:54] "GET /_next/static/chunks/main-app-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:54] "GET /_next/static/chunks/pages/_app-a9fba37d935ce3f3.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:55] "GET /_next/static/chunks/pages/_app-d1b5411bacd03f02.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:55] "GET /_next/static/chunks/pages/_app-d25b242610000153a081.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:55] "GET /_next/static/chunks/webpack-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:55] "GET /_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:56] "GET /a.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:56] "GET /acme-challenge/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:56] "GET /acme/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:56] "GET /acme_challenges/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:57] "GET /actions-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:57] "GET /actuator/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:57] "GET /admin-api/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:57] "GET /admin-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:58] "GET /admin-panel/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:58] "GET /admin.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:58] "GET /admin/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:58] "GET /admin/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:59] "GET /adminapp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:59] "GET /adminer.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:59] "GET /adminer/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:39:59] "GET /administrator/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:00] "GET /adminphp.php' HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:00] "GET /agora/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:00] "GET /alpha/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:00] "GET /anaconda/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:01] "GET /apache.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:01] "GET /apache/i.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:01] "GET /apache/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:01] "GET /apache/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:02] "GET /apache2.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:02] "GET /apc.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:02] "GET /api-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:02] "GET /api/.env.back HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:03] "GET /api/.env.example HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:03] "GET /api/.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:03] "GET /api/.env.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:03] "GET /api/debug HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:04] "GET /api/docs/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:04] "GET /api/env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:04] "GET /api/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:04] "GET /api/internal/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:05] "GET /api/keys HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:05] "GET /api/private/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:05] "GET /api/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:05] "GET /api/v1/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:06] "GET /api/v1/debug HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:06] "GET /api/v2/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:06] "GET /apis/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:06] "GET /app-7d66de919618d3830635.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:07] "GET /app-order-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:07] "GET /app.yaml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:07] "GET /app/.env.example HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:07] "GET /app/.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:08] "GET /app/.env.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:08] "GET /app/.env.back HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:08] "GET /app/client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:08] "GET /app/code/community/Nosto/Tagging/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:09] "GET /app/config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:09] "GET /app/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:09] "GET /app/config/dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:09] "GET /app/frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:10] "GET /app/info HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:10] "GET /app/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:10] "GET /app1-static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:10] "GET /app2-static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:11] "GET /app_dir/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:11] "GET /app_nginx_static_path/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:11] "GET /application/.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:11] "GET /application/.env.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:12] "GET /apps/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:12] "GET /apps/client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:12] "GET /Archipel/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:12] "GET /asdf.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:13] "GET /asset_img/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:13] "GET /assets/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:13] "GET /assets/index-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:13] "GET /assets/index-[hash].mjs HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:14] "GET /assets/index-GquDNGwd.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:14] "GET /assets/js/app.f8ec9fb3.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:14] "GET /assets/js/app.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:14] "GET /assets/vendor-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:15] "GET /Assignment3/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:15] "GET /Assignment4/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:15] "GET /audio/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:15] "GET /aws-secret.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:16] "GET /aws.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:16] "GET /aws/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:16] "GET /azure/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:17] "GET /babel-plugin-dotenv/test/fixtures/as-alias/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:17] "GET /babel-plugin-dotenv/test/fixtures/default/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:17] "GET /babel-plugin-dotenv/test/fixtures/dev-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:18] "GET /babel-plugin-dotenv/test/fixtures/empty-values/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:18] "GET /babel-plugin-dotenv/test/fixtures/filename/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:18] "GET /babel-plugin-dotenv/test/fixtures/override-value/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:18] "GET /babel-plugin-dotenv/test/fixtures/prod-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:19] "GET /back-end/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:19] "GET /back/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:19] "GET /backend/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:19] "GET /backend/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:20] "GET /backend/debug HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:20] "GET /backend/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:20] "GET /backendfinaltest/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:20] "GET /backup.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:20] "GET /backup.zip HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:21] "GET /base_dir/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:21] "GET /basic-network/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:21] "GET /bgoldd/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:21] "GET /bitcoind/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:22] "GET /blankon/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:22] "GET /blob/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:22] "GET /blog/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:22] "GET /blogs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:23] "GET /blue/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:23] "GET /bookchain-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:23] "GET /Booking/Default.aspx HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:23] "GET /bootstrap/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:24] "GET /boxes/oracle-vagrant-boxes/ContainerRegistry/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:24] "GET /boxes/oracle-vagrant-boxes/Kubernetes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:24] "GET /boxes/oracle-vagrant-boxes/OLCNE/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:24] "GET /bucoffea/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:24] "GET /build.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:25] "GET /build/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:25] "GET /build/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:25] "GET /build/_app/immutable/chunks/[chunk].[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:25] "GET /build/_app/immutable/entry/app.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:26] "GET /build/entry.client-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:26] "GET /build/main.ba0c34b7.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:26] "GET /build/routes/index-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:26] "GET /cache.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:27] "GET /cardea/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:27] "GET /cdw-backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:27] "GET /cgi-bin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:27] "GET /cgi-bin/pass.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:28] "GET /ch2-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:28] "GET /ch6-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:28] "GET /ch6a-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:28] "GET /ch7-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:28] "GET /ch7a-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:29] "GET /ch8-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:29] "GET /ch8a-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:29] "GET /ch8b-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:29] "GET /Chai/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:30] "GET /challenge/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:30] "GET /challenges/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:30] "GET /charts/liveObjects/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:30] "GET /chat-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:31] "GET /chiminey/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:31] "GET /chunk-B2FODB4I.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:31] "GET /ci/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:31] "GET /client-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:32] "GET /client/mutual-fund-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:32] "GET /client/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:32] "GET /ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:32] "GET /clld_dir/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:33] "GET /cloud/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:33] "GET /cmd/testdata/expected/dot_env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:33] "GET /code/api/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:33] "GET /code/web/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:33] "GET /CodeGolf.Web/ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:34] "GET /codenames-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:34] "GET /collab-connect-web-application/server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:34] "GET /collected_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:34] "GET /community/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:35] "GET /compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:35] "GET /config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:35] "GET /config.yaml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:35] "GET /config/.env.dev HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:36] "GET /config/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:36] "GET /config/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:36] "GET /config/aws.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:36] "GET /config/cache.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:37] "GET /config/config.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:37] "GET /config/config.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:37] "GET /config/default.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:37] "GET /config/keys.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:37] "GET /config/production.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:38] "GET /config/secrets.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:38] "GET /config/settings.py HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:38] "GET /ContainerRegistry/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:38] "GET /containers/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:39] "GET /content/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:39] "GET /control/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:39] "GET /core/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:39] "GET /core/Datavase/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:40] "GET /core/persistence/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:40] "GET /core/src/main/resources/org/jobrunr/dashboard/frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:40] "GET /counterblockd/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:40] "GET /counterwallet/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:41] "GET /cp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:41] "GET /cronlab/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:42] "GET /cryo_project/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:42] "GET /css/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:42] "GET /custom/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:42] "GET /d/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:42] "GET /dashboard/i.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:43] "GET /dashboard/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:43] "GET /dashboard/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:43] "GET /dashboard/test.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:43] "GET /data/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:44] "GET /database/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:44] "GET /dataset1/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:44] "GET /dataset2/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:44] "GET /db-admin/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:45] "GET /db.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:45] "GET /db.sql HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:45] "GET /db_backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:45] "GET /debug HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:46] "GET /debug.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:46] "GET /debug.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:46] "GET /debug.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:46] "GET /debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:47] "GET /debug/default/view.html HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:47] "GET /debug/default/view?panel=config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:47] "GET /default/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:47] "GET /delivery/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:48] "GET /demo-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:48] "GET /demo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:48] "GET /dep.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:48] "GET /deploy.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:49] "GET /deploy/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:49] "GET /deployment-config.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:49] "GET /dev-api/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:49] "GET /dev-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:49] "GET /dev.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:50] "GET /dev/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:50] "GET /dev_env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:50] "GET /developer.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:50] "GET /developer/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:51] "GET /developerslv/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:51] "GET /development/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:51] "GET /devs.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:51] "GET /devtools HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:52] "GET /directories/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:52] "GET /dist/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:52] "GET /dist/js/app.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:52] "GET /django-blog/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:53] "GET /django/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:53] "GET /django_project_path/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:53] "GET /doc/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:53] "GET /docker-compose.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:54] "GET /docker-compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:54] "GET /docker-compose/platform/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:54] "GET /docker-elk/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:54] "GET /docker-network-healthcheck/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:55] "GET /docker-node-mongo-redis/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:55] "GET /docker/compose/withMongo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:55] "GET /docker/compose/withPostgres/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:55] "GET /docker/database/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:56] "GET /docker/db/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:56] "GET /docker/dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:56] "GET /docker/examples/compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:56] "GET /docker/postgres/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:57] "GET /docker/webdav/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:57] "GET /docs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:57] "GET /dodoswap-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:57] "GET /dotfiles/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:57] "GET /download/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:58] "GET /downloads/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:58] "GET /drupal/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:58] "GET /dump.sql HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:58] "GET /e2e/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:59] "GET /en/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:59] "GET /engine/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:59] "GET /env.example HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:40:59] "GET /env.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:00] "GET /env.template HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:00] "GET /env/dockers/mariadb-test/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:00] "GET /env/dockers/php-apache/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:00] "GET /env/example/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:01] "GET /env/template/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:01] "GET /environments/local/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:01] "GET /environments/production/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:01] "GET /envs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:02] "GET /error.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:02] "GET /error/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:02] "GET /errors/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:02] "GET /example/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:03] "GET /example02-golang-package/import-underscore/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:03] "GET /example27-how-to-load-env/sample01/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:03] "GET /example27-how-to-load-env/sample02/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:03] "GET /examples/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:04] "GET /examples/01-simple-model/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:04] "GET /examples/02-complex-example/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:04] "GET /examples/03-one-to-many-relationship/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:04] "GET /examples/04-many-to-many-relationship/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:04] "GET /examples/05-migrations/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:05] "GET /examples/06-base-service/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:05] "GET /examples/07-feature-flags/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:05] "GET /examples/08-performance/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:05] "GET /examples/09-production/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:06] "GET /examples/10-subscriptions/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:06] "GET /examples/11-transactions/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:07] "GET /examples/drupal-separate-services/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:07] "GET /examples/react-dashboard/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:07] "GET /examples/sdl-first/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:07] "GET /examples/sdl-first/prisma/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:08] "GET /examples/vue-dashboard/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:08] "GET /examples/web/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:08] "GET /examples/with-cookie-auth-fauna/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:08] "GET /examples/with-dotenv/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:09] "GET /examples/with-firebase-authentication-serverless/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:09] "GET /examples/with-react-relay-network-modern/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:09] "GET /examples/with-relay-modern/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:09] "GET /examples/with-universal-configuration-build-time/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:09] "GET /exapi/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:10] "GET /Exercise.Frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:10] "GET /Exercise.Frontend/train/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:10] "GET /export/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:10] "GET /fastlane/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:11] "GET /favicons/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:11] "GET /favs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:11] "GET /FE/huey/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:11] "GET /fedex/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:12] "GET /fhir-api/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:12] "GET /files/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:12] "GET /fileserver/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:12] "GET /films/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:13] "GET /Final_Project/Airflow_Dag/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:13] "GET /Final_Project/kafka_twitter/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:13] "GET /Final_Project/StartingFile/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:13] "GET /finalVersion/lcomernbootcamp/projbackend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:14] "GET /firebase.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:14] "GET /first-network/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:14] "GET /FIRST_CONFIG/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:14] "GET /fisdom/fisdom/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:15] "GET /fixtures/blocks/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:15] "GET /fixtures/fiber-debugger/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:15] "GET /fixtures/flight/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:15] "GET /fixtures/kitchensink/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:15] "GET /flask/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:16] "GET /flask_test_uploads/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:16] "GET /fm/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:16] "GET /font-icons/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:16] "GET /fonts/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:17] "GET /framework/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:17] "GET /front-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:17] "GET /front-empathy/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:17] "GET /front-end/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:18] "GET /front/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:18] "GET /front/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:18] "GET /frontend/momentum-fe/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:18] "GET /frontend/react/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:19] "GET /frontend/vue/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:19] "GET /frontend/web/debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:19] "GET /frontendfinaltest/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:19] "GET /ftp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:20] "GET /ftpmaster/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:20] "GET /functions/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:20] "GET /gcloud.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:20] "GET /gcp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:20] "GET /gists/cache HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:21] "GET /gists/laravel HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:21] "GET /gists/pusher HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:21] "GET /github-connect/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:21] "GET /google/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:22] "GET /graphiql/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:22] "GET /graphql/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:22] "GET /grems-api/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:22] "GET /grems-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:23] "GET /Hash/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:23] "GET /hasura/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:23] "GET /hc/restricted HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:23] "GET /Helmetjs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:24] "GET /hgs-static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:24] "GET /higlass-website/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:24] "GET /home/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:24] "GET /horde/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:25] "GET /hotpot-app-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:25] "GET /htdocs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:25] "GET /html/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:25] "GET /http/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:25] "GET /httpboot/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:26] "GET /httpdocs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:26] "GET /HUNIV_migration/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:26] "GET /i.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:26] "GET /icon/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:27] "GET /icons/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:27] "GET /ikiwiki/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:27] "GET /image_data/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:27] "GET /Imagebord/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:28] "GET /images/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:28] "GET /img/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:28] "GET /in.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:28] "GET /inc.config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:29] "GET /includes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:29] "GET /includes/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:29] "GET /index.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:29] "GET /index.php~ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:30] "GET /index1.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:30] "GET /inf.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:30] "GET /info1.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:31] "GET /info2.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:31] "GET /info3.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:31] "GET /info4.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:32] "GET /infophp.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:32] "GET /infos.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:32] "GET /ini.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:32] "GET /install/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:33] "GET /InstantCV/server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:33] "GET /internal-api/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:33] "GET /internal/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:33] "GET /internal/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:34] "GET /isadmin.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:34] "GET /items/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:34] "GET /javascript/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:34] "GET /jenkins/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:35] "GET /jo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:35] "GET /joomla/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:35] "GET /js-plugin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:36] "GET /js/app.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:36] "GET /js/app.bundle.min.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:36] "GET /js/chunk-79be581b.c4b0f5e4.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:36] "GET /js/chunk-vendors.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:37] "GET /js/chunks/[chunk-name].[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:37] "GET /js/contact_me.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:37] "GET /js/vendor.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:37] "GET /jsrelay/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:38] "GET /jupyter/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:38] "GET /khanlinks/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:38] "GET /kibana/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:38] "GET /kodenames-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:39] "GET /kolab-syncroton/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:39] "GET /Kubernetes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:39] "GET /kubernetes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:40] "GET /l.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:40] "GET /lab/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:40] "GET /lambda/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:40] "GET /latest/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:41] "GET /layout/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:41] "GET /lcomernbootcamp/projbackend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:41] "GET /leafer-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:41] "GET /ledger_sync/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:42] "GET /legacy/tests/9.1.1 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:42] "GET /legacy/tests/9.2.0 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:42] "GET /legal/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:42] "GET /lemonldap-ng-doc/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:43] "GET /lemonldap-ng-fr-doc/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:43] "GET /letsencrypt/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:43] "GET /lib/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:44] "GET /lib/config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:44] "GET /libraries/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:44] "GET /Library/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:44] "GET /libs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:45] "GET /lindex.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:45] "GET /linusadmin-phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:45] "GET /linux/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:45] "GET /local.settings.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:46] "GET /localhost/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:46] "GET /locally/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:46] "GET /log.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:46] "GET /log/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:47] "GET /log/development.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:47] "GET /logging/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:47] "GET /login/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:48] "GET /login/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:48] "GET /logs/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:48] "GET /logs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:48] "GET /logs/access.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:49] "GET /logs/app.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:49] "GET /logs/error.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:49] "GET /magento/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:49] "GET /mailinabox/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:50] "GET /mailman/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:50] "GET /main-es2015.3c3aa123423ff18c0b00.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:50] "GET /main-es2018.96dcf91e05121e327dcb.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:50] "GET /main-TDTOTK7F.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:51] "GET /main-WTCAS2AO.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:51] "GET /main.0ad61943313a734cc3ac.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:51] "GET /main.2b8841d1a101dd041285.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:52] "GET /main.35a08c25eb91de70487f.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:52] "GET /main.457ddfd2b1341056.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:52] "GET /main.48f1bbcf6201c5ea.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:52] "GET /main.58a95e8d8659972f.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:53] "GET /main.702787bb88cacd05b11d.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:53] "GET /main.b610bd7c7b9b7a47.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:53] "GET /main.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:53] "GET /main.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:54] "GET /main.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:54] "GET /main_user/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:54] "GET /Makefile HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:54] "GET /manifest.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:55] "GET /manual/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:55] "GET /master/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:55] "GET /media/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:56] "GET /memcached/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:56] "GET /mentorg-lava-docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:56] "GET /micro-app-react-communication/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:56] "GET /micro-app-react/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:57] "GET /mindsweeper/gui/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:57] "GET /minified/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:57] "GET /misc/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:57] "GET /Modix/ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:58] "GET /monerod/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:58] "GET /mongodb/config/dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:59] "GET /monitoring/compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:59] "GET /moodledata/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:59] "GET /msks/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:41:59] "GET /munki_repo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:00] "GET /music/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:00] "GET /MyRentals.Web/ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:00] "GET /mysql/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:00] "GET /name/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:01] "GET /nest/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:01] "GET /netlify.toml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:01] "GET /new-js/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:01] "GET /new.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:01] "GET /news-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:02] "GET /next/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:02] "GET /nginx-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:02] "GET /niffler-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:02] "GET /node_modules/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:03] "GET /Nodejs-Projects/play-ground/login/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:03] "GET /Nodejs-Projects/play-ground/ManageUserRoles/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:03] "GET /noVNC/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:03] "GET /now.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:04] "GET /Nuke.App.Ui/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:04] "GET /nuxt/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:04] "GET /o.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:04] "GET /ocp.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:05] "GET /of.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:05] "GET /old/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:05] "GET /old/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:05] "GET /old_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:06] "GET /old_site/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:06] "GET /oldsanta/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:06] "GET /opencart/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:06] "GET /ops/vagrant/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:07] "GET /option/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:07] "GET /orientdb-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:07] "GET /outputs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:07] "GET /owncloud/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:07] "GET /p.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:08] "GET /packages/styled-ui-docs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:08] "GET /packages/web/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:08] "GET /packed/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:08] "GET /page-editor/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:09] "GET /panel/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:09] "GET /parity/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:09] "GET /Passportjs/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:09] "GET /patchwork/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:10] "GET /path/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:10] "GET /pfbe/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:10] "GET /php.ini HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:10] "GET /php.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:11] "GET /php1.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:11] "GET /php52/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:11] "GET /php_info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:11] "GET /phpcustom_info/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:12] "GET /phpinfo.html HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:12] "GET /phpinfo.php4 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:12] "GET /phpinfo.php5 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:12] "GET /phpinfo.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:12] "GET /phpinfo/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:13] "GET /phpinfo/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:13] "GET /phpinfo1.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:13] "GET /phpinfo2.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:13] "GET /phpinfo3.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:14] "GET /phpinfo4.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:14] "GET /phpinfodev.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:14] "GET /phpinfos.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:14] "GET /phpMyAdmin/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:15] "GET /phpmyadmin/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:15] "GET /phpsysinfo HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:15] "GET /phpsysinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:15] "GET /phpsysinfo/info.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:16] "GET /phpsysinfo/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:16] "GET /phpsysinfo/phpsysinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:16] "GET /phptest.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:16] "GET /phpversion.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:17] "GET /pi.php5 HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:17] "GET /pictures/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:17] "GET /platform/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:17] "GET /playground/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:17] "GET /plugin_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:18] "GET /plugins/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:18] "GET /post-deployment/.vscode/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:18] "GET /postfixadmin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:18] "GET /prestashop/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:19] "GET /preview-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:19] "GET /preview/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:19] "GET /price_hawk_client/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:19] "GET /prisma/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:20] "GET /private.key HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:20] "GET /processor/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:20] "GET /Procfile HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:20] "GET /prod/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:21] "GET /product/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:21] "GET /projbackend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:21] "GET /project/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:21] "GET /project_root/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:22] "GET /protected/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:22] "GET /psnlink/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:22] "GET /pt2/countries/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:23] "GET /pt8/library-backend-gql/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:23] "GET /pub/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:23] "GET /public/system HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:23] "GET /public_html/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:24] "GET /public_root/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:24] "GET /q.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:24] "GET /qq.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:24] "GET /question2/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:25] "GET /qv-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:25] "GET /rabbitmq-cluster/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:25] "GET /rails-api/react-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:25] "GET /rails/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:26] "GET /rasax/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:26] "GET /react/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:26] "GET /react_todo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:26] "GET /redmine/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:27] "GET /repo/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:27] "GET /repos/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:27] "GET /repository/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:27] "GET /resources/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:28] "GET /resources/docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:28] "GET /resources/docker/mysql/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:28] "GET /resources/docker/phpmyadmin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:28] "GET /resources/docker/rabbitmq/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:29] "GET /resources/docker/rediscommander/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:29] "GET /resourcesync/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:29] "GET /rest.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:29] "GET /rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:45] "GET /restapi/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:46] "GET /results/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:46] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:46] "GET /robots/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:46] "GET /rollup.config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:47] "GET /root/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:47] "GET /rosterBack/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:47] "GET /roundcube/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:47] "GET /roundcubemail/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:48] "GET /routes/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:48] "GET /run/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:48] "GET /rust-backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:48] "GET /rust-backend/dao/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:49] "GET /s-with-me-front/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:49] "GET /s3.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:49] "GET /saas/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:49] "GET /samples/chatroom/chatroom-spa/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:50] "GET /samples/docker/deploymentscripts/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:50] "GET /sapi/debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:50] "GET /script/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:50] "GET /scripts/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:50] "GET /scripts/fvt/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:51] "GET /secrets.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:51] "GET /secrets.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:51] "GET /secrets/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:51] "GET /selfish-darling-backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:52] "GET /sendgrid.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:52] "GET /serve-browserbench/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:52] "GET /Serve_time_server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:53] "GET /server.log HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:53] "GET /server/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:53] "GET /server/laravel/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:53] "GET /server/s3.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:54] "GET /server/src/persistence/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:54] "GET /Server_with_db/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:54] "GET /serverless.yml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:54] "GET /service-worker.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:55] "GET /service/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:55] "GET /services/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:55] "GET /services/adminer/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:55] "GET /services/deployment-agent/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:56] "GET /services/documents/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:56] "GET /services/graylog/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:56] "GET /services/jaeger/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:56] "GET /services/minio/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:56] "GET /services/monitoring/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:57] "GET /services/portainer/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:57] "GET /services/redis-commander/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:57] "GET /services/registry/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:57] "GET /services/simcore/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:58] "GET /services/traefik/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:58] "GET /sessions/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:58] "GET /settings.py HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:58] "GET /shared/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:59] "GET /shibboleth/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:59] "GET /shop/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:59] "GET /shopware/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:42:59] "GET /Simple_server/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:00] "GET /site-library/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:00] "GET /sitemaps/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:00] "GET /sites/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:00] "GET /sitestatic/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:01] "GET /Socketio/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:01] "GET /source/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:01] "GET /sources/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:01] "GET /Sources/API/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:02] "GET /spearmint/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:02] "GET /spikes/config-material-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:02] "GET /SpotiApps/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:02] "GET /src/__tests__/__fixtures__/instanceWithDependentSteps/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:02] "GET /src/__tests__/__fixtures__/typeScriptIntegrationProject/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:03] "GET /src/__tests__/__fixtures__/typeScriptProject/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:03] "GET /src/__tests__/__fixtures__/typeScriptVisualizeProject/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:03] "GET /src/add-auth/express/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:03] "GET /src/assembly/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:04] "GET /src/character-service/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:04] "GET /src/client/mobile/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:04] "GET /src/core/tests/dotenv-files/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:04] "GET /src/gameprovider-service/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:05] "GET /src/main/front-end/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:05] "GET /src/main/resources/archetype-resources/__rootArtifactId__-acceptance-test/src/test/resources/app-launcher-tile/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:05] "GET /src/renderer/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:05] "GET /srv6_controller/controller/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:06] "GET /srv6_controller/examples/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:06] "GET /srv6_controller/node-manager/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:06] "GET /st-js-be-2020-movies-two/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:06] "GET /stack.json HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:07] "GET /stackato-pkg/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:07] "GET /stag/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:07] "GET /staging-api/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:07] "GET /staging/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:08] "GET /staging/api/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:08] "GET /staging/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:08] "GET /staging/frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:08] "GET /static-collected/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:08] "GET /static-html/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:09] "GET /static-root/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:09] "GET /static/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:09] "GET /static/js/*.chunk.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 03:43:09] "GET /static/js/main.11bc02d8.chunk.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 05:55:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 06:25:40] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 06:25:41] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 06:25:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 06:25:45] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 06:25:47] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 06:25:50] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 09:02:34] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:02:38] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 09:02:38] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 09:02:38] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 09:02:38] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:02:41] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 09:13:24] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:15:26] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:19:44] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:19:44] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:19:45] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:19:45] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:19:45] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:22:21] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:22:23] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:23:39] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:23:42] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:27:55] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:31:27] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:31:27] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:32:09] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:32:20] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:37:59] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:38:56] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:39:09] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:39:22] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:41:20] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:41:24] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:41:26] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:45:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:51:46] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:51:50] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:51:57] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:51:59] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:52:00] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 09:52:05] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 10:00:19] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 10:00:21] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 10:00:24] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 10:10:14] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 10:35:16] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 10:35:26] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 10:35:30] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 10:35:30] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 10:35:39] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 10:35:43] "GET /links?limit=30&offset=30 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:36:29] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:36:31] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:36:45] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:36:49] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:36:49] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:36:49] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:36:49] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:36:53] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:37:02] "POST /links HTTP/1.1" 500 - + * Detected change in '/home/dsyoon/workspace/news_link/app.py', reloading + * Restarting with stat + * Debugger is active! + * Debugger PIN: 991-415-584 +127.0.0.1 - - [08/Feb/2026 11:43:44] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:43:44] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:43:44] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:43:47] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:43:52] "POST /links HTTP/1.1" 500 - + * Detected change in '/home/dsyoon/workspace/news_link/app.py', reloading + * Restarting with stat + * Debugger is active! + * Debugger PIN: 991-415-584 +127.0.0.1 - - [08/Feb/2026 11:51:02] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:52:18] "GET /favicon.ico HTTP/1.1" 404 - + * Detected change in '/home/dsyoon/workspace/news_link/app.py', reloading + * Restarting with stat + * Debugger is active! + * Debugger PIN: 991-415-584 +127.0.0.1 - - [08/Feb/2026 11:58:52] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:58:52] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:58:52] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:58:55] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:58:58] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:59:07] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:59:15] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:59:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:59:19] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:59:19] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:59:19] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 11:59:19] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 11:59:46] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:00:00] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:00:02] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:03:00] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:03:04] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:04] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:04] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:04] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:09] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:09] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:24] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:24] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:24] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:03:24] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:05:14] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:05:23] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:11:09] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:11:10] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:11:10] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:11:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:11:42] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:12:10] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:12:11] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:12:12] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:12:18] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:12:18] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:12:18] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:12:18] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:12:18] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:12:58] "HEAD / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:12:58] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:15:53] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:15:55] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:15:55] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:15:55] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:15:56] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:18] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:16:18] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:19] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:16:19] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:19] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:19] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:20] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:20] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:20] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:20] "GET /2018/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:20] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:20] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:21] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:21] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:21] "GET /media/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:21] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:21] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:21] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:16:22] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:17:06] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:17:09] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:20:53] "GET /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:21:11] "HEAD /favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 12:21:11] "GET /favicon.ico HTTP/1.1" 404 - + * Detected change in '/home/dsyoon/workspace/news_link/app.py', reloading + * Restarting with stat + * Debugger is active! + * Debugger PIN: 991-415-584 +127.0.0.1 - - [08/Feb/2026 12:21:46] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:21:46] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:21:55] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:34:59] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 12:49:13] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 13:39:50] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 13:39:50] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:50] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 13:39:50] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 13:39:51] "GET /"/static/app.js" HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:51] "GET /.env.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:51] "GET /.env.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:51] "GET /.env.backup HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:52] "GET /backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:52] "GET /admin/.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:52] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:52] "GET /wp-config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:53] "GET /wp-config.php.old HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:53] "GET /wp-config.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:53] "GET /wp-config.php.save HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:53] "GET /wp-config.php~ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:54] "GET /wp-config.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:54] "GET /config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:54] "GET /config.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:54] "GET /config.php.old HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:55] "GET /configuration.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:55] "GET /configuration.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:55] "GET /includes/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:55] "GET /inc/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:55] "GET /lib/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:56] "GET /settings.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:56] "GET /db.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:56] "GET /database.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:56] "GET /connect.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:57] "GET /connection.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:57] "GET /credentials.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:57] "GET /api_config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:57] "GET /config/database.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:58] "GET /application/config/database.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:58] "GET /application/config/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:58] "GET /app/config/database.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:58] "GET /app/config/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:59] "GET /config.inc.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:59] "GET /phpmyadmin/config.inc.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:59] "GET /admin/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:39:59] "GET /backend/config.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:40:00] "GET /config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:40:00] "GET /aws-config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:40:00] "GET /aws.config.js HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:40:00] "GET /.git/HEAD HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 13:40:01] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 14:18:09] "GET /wp-login.php HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 14:57:32] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 15:03:33] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 16:24:30] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 17:34:49] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 18:29:04] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 18:29:07] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 18:42:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 19:55:40] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 20:49:59] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 21:22:47] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 22:12:57] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 22:54:03] "GET /_ignition/execute-solution HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 22:56:52] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 22:56:54] "GET /wordpress/ HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 22:59:56] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 22:59:56] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 22:59:56] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 22:59:56] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 23:00:00] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 23:03:33] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [08/Feb/2026 23:21:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [08/Feb/2026 23:22:41] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:50:54] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:50:54] "GET /info.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:55] "GET /php-info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:55] "GET /newinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:55] "GET /siteinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:55] "GET /info.php.1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:56] "GET /admin/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:56] "GET /pageinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:56] "GET /info.php.back HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:57] "GET /phpbb/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:57] "GET /release_info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:57] "GET /test/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:57] "GET /info HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:58] "GET /info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:58] "GET /phpinfo.php3 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:58] "GET /phpinfo.php.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:58] "GET /info.php.save.1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:59] "GET /info.php_ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:59] "GET /_info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:59] "GET /admin_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:50:59] "GET /dbinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:00] "GET /admin_info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:00] "GET /.aws/credentials HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:00] "GET /config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:00] "GET /phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:01] "GET /phpinfo.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:01] "GET /admin/admin_phpinfo.php4 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:01] "GET /pinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:01] "GET /.env.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:02] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:02] "GET /.env.backup HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:02] "GET /.env_sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:02] "GET /.env.old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:03] "GET /.env.www HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:03] "GET /.docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:03] "GET /.env.dev HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:03] "GET /.env.example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:04] "GET /.env_1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:04] "GET /.env.stage HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:04] "GET /config.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:04] "GET /.pam_environment HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:05] "GET /.environment HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:05] "GET /.env.production HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:05] "GET /.env.production.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:06] "GET /env.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:06] "GET /.powenv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:06] "GET /.rbenv-gemsets HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:06] "GET /.envs HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:07] "GET /.env.docker HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:07] "GET /.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:07] "GET /.env_bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:07] "GET /.env.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:08] "GET /.env.development.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:08] "GET /.env-example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:08] "GET /.env.prod HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:08] "GET /.env.docker.dev HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:09] "GET /.env.test HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:09] "GET /env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:09] "GET /env.list HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:09] "GET /.ghc.environment HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:10] "GET /env.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:10] "GET /printenv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:10] "GET /.hsenv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:10] "GET /environment HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:11] "GET /env.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:11] "GET /envrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:11] "GET /.env.dev.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:11] "GET /environment.ts HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:12] "GET /.env_old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:12] "GET /.zshenv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:12] "GET /.env.development.sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:12] "GET /.rbenv-version HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:13] "GET /.env-sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:13] "GET /.env.prod.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:13] "GET /.env.travis HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:14] "GET /.env.test.sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:14] "GET /.env.2 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:14] "GET /.vscode/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:14] "GET /.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:15] "GET /.env.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:15] "GET /.env.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:15] "GET /printenv.tmp HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:15] "GET /.flaskenv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:16] "GET /.env.test.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:16] "GET /.jenv-version HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:16] "GET /.envrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:16] "GET /.env.dist HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:17] "GET /.env.sample.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:17] "GET /.env1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:17] "GET /.venv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:17] "GET /env.prod.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:18] "GET /env.test.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:18] "GET /env.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:18] "GET /env.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:18] "GET /admin/config?cmd=cat%20/root/.aws/credentials HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:19] "GET /pms?module=logging&file_name=../../../../../../~/.aws/credentials&number_of_lines=10000 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:19] "GET /k8s/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:19] "GET /config/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:19] "GET /app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:20] "GET /api/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:20] "GET /backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:20] "GET /src/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:21] "GET /admin/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:21] "GET /public/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:22] "GET /web/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:22] "GET /server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:22] "GET /client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:22] "GET /frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:23] "GET /.env.development HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:23] "GET /.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:23] "GET /.env.live HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:23] "GET /config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:24] "GET /admin/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:24] "GET /api/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:24] "GET /config/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:24] "GET /app/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:25] "GET /backend/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:25] "GET /src/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:25] "GET /config/database.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:25] "GET /config/mail.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:26] "GET /config/app.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:26] "GET /config/services.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:26] "GET /wp-config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:26] "GET /configuration.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:27] "GET /.aws/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:27] "GET /config/aws.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:27] "GET /config/sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:27] "GET /config/mailgun.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:28] "GET /sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:28] "GET /aws.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:28] "GET /api_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:28] "GET /keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:29] "GET /secrets.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:29] "GET /config/secrets.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:29] "GET /private/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:29] "GET /backup/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:30] "GET /test/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:30] "GET /dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:30] "GET /staging/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:30] "GET /production/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:31] "GET /laravel/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:31] "GET /config/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:31] "GET /app/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:31] "GET /test/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:32] "GET /backup/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:32] "GET /private/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:32] "GET /settings.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:32] "GET /app/settings.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:33] "GET /config/settings.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:33] "GET /database.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:33] "GET /config/database.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:33] "GET /administrator/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:34] "GET /cms/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:34] "GET /portal/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:34] "GET /dashboard/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:34] "GET /crm/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:35] "GET /mail/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:35] "GET /mailer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:35] "GET /deployment/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:35] "GET /docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:36] "GET /helm/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:36] "GET /terraform/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:36] "GET /ansible/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:36] "GET /config/mail.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:37] "GET /config/smtp.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:37] "GET /config/database.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:37] "GET /secrets/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:37] "GET /private/keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:38] "GET /.env_example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:38] "GET /core/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:38] "GET /api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:38] "GET /backend HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:39] "GET /local/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:39] "GET /application/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:39] "GET /phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:39] "GET /_profiler/phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:40] "GET /config/settings.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:40] "GET /env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:40] "GET /new/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:40] "GET /new/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:41] "GET /new/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:41] "GET /new/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:41] "GET /_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:41] "GET /_profiler/phpinfo/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:42] "GET /_profiler/phpinfo/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:42] "GET /wp-config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:42] "GET /aws-secret.yaml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:42] "GET /awstats/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:43] "GET /conf/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:43] "GET /cron/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:43] "GET /www/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:43] "GET /docker/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:44] "GET /env.backup HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:44] "GET /xampp/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:44] "GET /lara/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:44] "GET /lara/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:45] "GET /laravel/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:45] "GET /js/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:45] "GET /laravel/core/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:45] "GET /nginx/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:46] "GET /site/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:46] "GET /xampp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:46] "GET /.docker/laravel/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:47] "GET /laravel/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:47] "GET /laravel/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:47] "GET /laravel/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:48] "GET /laravel/core/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:48] "GET /laravel/core/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:48] "GET /laravel/core/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:48] "GET /main/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:49] "GET /bootstrap/cache/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:49] "GET /storage/app/private/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:49] "GET /storage/logs/laravel.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:49] "GET /composer.lock HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:50] "GET /server.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:50] "GET /dump.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:50] "GET /php5.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:50] "GET /config.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:51] "GET /src/app.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:51] "GET /server-info HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:51] "GET /docker.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:51] "GET /config.php.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:52] "GET /pi.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:52] "GET /wp-config.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:52] "GET /test.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:52] "GET /wp-config.php.backup HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:52] "GET /aws-credentials.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:53] "GET /api/info HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:53] "GET /config.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:53] "GET /%C0 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:53] "GET /.aws/credentials.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:54] "GET /.aws/credentials/admin/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:54] "GET /.azure-pipelines.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:54] "GET /.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:54] "GET /.bitbucket-pipelines.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:55] "GET /.bitbucket/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:55] "GET /.boto HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:55] "GET /.bzr/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:55] "GET /.c9/metadata/environment/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:56] "GET /.circleci/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:56] "GET /.circleci/config.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:56] "GET /.dockerignore HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:56] "GET /.env-db HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:57] "GET /.env.back HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:57] "GET /.env.bkp HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:57] "GET /.env.credentials HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:57] "GET /.env.email HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:58] "GET /.env.hidden HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:58] "GET /.env.hide HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:58] "GET /.env.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:58] "GET /.env.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:59] "GET /.env.mail HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:59] "GET /.env.smtp HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:59] "GET /.env.swp HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:51:59] "GET /.env.testing HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:00] "GET /.env.uat HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:00] "GET /.env_aws HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:00] "GET /.env_backup HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:00] "GET /.env_copy HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:01] "GET /.env_private HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:01] "GET /.env_secret HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:01] "GET /.env~ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:01] "GET /.git/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:02] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:02] "GET /.github/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:02] "GET /.github/workflows/*.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:02] "GET /.gitignore HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:02] "GET /.gitlab-ci.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:03] "GET /.gitlab-ci/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:03] "GET /.gitlab/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:03] "GET /.hg/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:03] "GET /.htaccess HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:04] "GET /.idea/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:04] "GET /.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:04] "GET /.next/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:04] "GET /.npmrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:05] "GET /.nuxt/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:05] "GET /.output/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:05] "GET /.phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:05] "GET /.production HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:06] "GET /.pypirc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:06] "GET /.remote HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:06] "GET /.ssh/id_rsa HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:06] "GET /.ssh/id_rsa.pub HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:07] "GET /.svn/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:07] "GET /.travis.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:07] "GET /.vite/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:07] "GET /.vscode/settings.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:08] "GET /.well-known/openid-configuration HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:08] "GET /.well-known/security.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:08] "GET /07-accessing-data/begin/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:08] "GET /07-accessing-data/end/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:09] "GET /08-routing/begin/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:09] "GET /08-routing/end/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:09] "GET /09-managing-state/begin/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:09] "GET /09-managing-state/end/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:10] "GET /123.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:10] "GET /3-sequelize/final/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:10] "GET /31_structure_tests/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:10] "GET /?p=info HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:52:11] "GET /?p=php HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:52:12] "GET /?phpinfo HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:52:13] "GET /?phpinfo.php HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:52:13] "GET /?phpinfo=1 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:52:14] "GET /?q=info HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 00:52:15] "GET /__debug__ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:15] "GET /__debugbar HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:15] "GET /__tests__/test-become/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:16] "GET /_astro/[chunk-name].[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:16] "GET /_dev HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:16] "GET /_ignition/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:16] "GET /_next/static/chunks/945-34f67d7c0866cf61b970.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:17] "GET /_next/static/chunks/app/[...not-found]/page-63e952e68a371605.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:17] "GET /_next/static/chunks/app/error.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:17] "GET /_next/static/chunks/app/global-error.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:17] "GET /_next/static/chunks/app/layout-a908fe02173ed4b1.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:18] "GET /_next/static/chunks/framework-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:18] "GET /_next/static/chunks/main-app-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:18] "GET /_next/static/chunks/pages/_app-a9fba37d935ce3f3.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:18] "GET /_next/static/chunks/pages/_app-d1b5411bacd03f02.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:19] "GET /_next/static/chunks/pages/_app-d25b242610000153a081.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:19] "GET /_next/static/chunks/webpack-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:19] "GET /_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:19] "GET /a.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:20] "GET /acme-challenge/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:20] "GET /acme/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:20] "GET /acme_challenges/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:20] "GET /actions-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:21] "GET /actuator/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:21] "GET /admin-api/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:21] "GET /admin-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:21] "GET /admin-panel/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:22] "GET /admin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:22] "GET /admin/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:22] "GET /admin/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:22] "GET /adminapp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:23] "GET /adminer.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:23] "GET /adminer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:23] "GET /administrator/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:23] "GET /adminphp.php' HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:23] "GET /agora/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:24] "GET /alpha/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:24] "GET /anaconda/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:24] "GET /apache.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:24] "GET /apache/i.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:25] "GET /apache/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:25] "GET /apache/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:25] "GET /apache2.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:25] "GET /apc.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:26] "GET /api-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:26] "GET /api/.env.back HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:26] "GET /api/.env.example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:26] "GET /api/.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:27] "GET /api/.env.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:27] "GET /api/debug HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:27] "GET /api/docs/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:27] "GET /api/env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:28] "GET /api/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:28] "GET /api/internal/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:28] "GET /api/keys HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:28] "GET /api/private/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:29] "GET /api/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:29] "GET /api/v1/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:29] "GET /api/v1/debug HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:29] "GET /api/v2/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:30] "GET /apis/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:30] "GET /app-7d66de919618d3830635.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:30] "GET /app-order-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:30] "GET /app.yaml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:31] "GET /app/.env.example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:31] "GET /app/.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:31] "GET /app/.env.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:31] "GET /app/.env.back HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:31] "GET /app/client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:32] "GET /app/code/community/Nosto/Tagging/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:32] "GET /app/config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:32] "GET /app/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:32] "GET /app/config/dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:33] "GET /app/frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:33] "GET /app/info HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:33] "GET /app/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:33] "GET /app1-static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:34] "GET /app2-static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:34] "GET /app_dir/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:34] "GET /app_nginx_static_path/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:34] "GET /application/.env.sample HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:35] "GET /application/.env.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:35] "GET /apps/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:35] "GET /apps/client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:35] "GET /Archipel/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:36] "GET /asdf.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:36] "GET /asset_img/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:36] "GET /assets/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:36] "GET /assets/index-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:37] "GET /assets/index-[hash].mjs HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:37] "GET /assets/index-GquDNGwd.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:37] "GET /assets/js/app.f8ec9fb3.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:37] "GET /assets/js/app.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:38] "GET /assets/vendor-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:38] "GET /Assignment3/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:38] "GET /Assignment4/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:38] "GET /audio/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:39] "GET /aws-secret.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:39] "GET /aws.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:39] "GET /aws/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:39] "GET /azure/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:40] "GET /babel-plugin-dotenv/test/fixtures/as-alias/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:40] "GET /babel-plugin-dotenv/test/fixtures/default/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:41] "GET /babel-plugin-dotenv/test/fixtures/dev-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:41] "GET /babel-plugin-dotenv/test/fixtures/empty-values/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:41] "GET /babel-plugin-dotenv/test/fixtures/filename/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:41] "GET /babel-plugin-dotenv/test/fixtures/override-value/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:42] "GET /babel-plugin-dotenv/test/fixtures/prod-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:42] "GET /back-end/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:42] "GET /back/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:42] "GET /backend/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:43] "GET /backend/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:43] "GET /backend/debug HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:43] "GET /backend/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:43] "GET /backendfinaltest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:44] "GET /backup.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:44] "GET /backup.zip HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:44] "GET /base_dir/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:44] "GET /basic-network/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:45] "GET /bgoldd/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:45] "GET /bitcoind/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:45] "GET /blankon/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:46] "GET /blob/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:46] "GET /blog/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:46] "GET /blogs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:46] "GET /blue/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:47] "GET /bookchain-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:47] "GET /Booking/Default.aspx HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:47] "GET /bootstrap/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:47] "GET /boxes/oracle-vagrant-boxes/ContainerRegistry/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:48] "GET /boxes/oracle-vagrant-boxes/Kubernetes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:48] "GET /boxes/oracle-vagrant-boxes/OLCNE/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:48] "GET /bucoffea/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:48] "GET /build.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:49] "GET /build/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:49] "GET /build/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:49] "GET /build/_app/immutable/chunks/[chunk].[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:50] "GET /build/_app/immutable/entry/app.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:50] "GET /build/entry.client-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:50] "GET /build/main.ba0c34b7.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:50] "GET /build/routes/index-[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:51] "GET /cache.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:51] "GET /cardea/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:51] "GET /cdw-backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:51] "GET /cgi-bin/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:52] "GET /cgi-bin/pass.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:52] "GET /ch2-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:52] "GET /ch6-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:52] "GET /ch6a-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:53] "GET /ch7-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:53] "GET /ch7a-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:53] "GET /ch8-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:53] "GET /ch8a-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:54] "GET /ch8b-mytodo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:54] "GET /Chai/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:54] "GET /challenge/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:55] "GET /challenges/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:55] "GET /charts/liveObjects/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:55] "GET /chat-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:55] "GET /chiminey/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:56] "GET /chunk-B2FODB4I.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:56] "GET /ci/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:56] "GET /client-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:56] "GET /client/mutual-fund-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:57] "GET /client/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:57] "GET /ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:58] "GET /clld_dir/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:58] "GET /cloud/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:58] "GET /cmd/testdata/expected/dot_env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:58] "GET /code/api/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:59] "GET /code/web/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:59] "GET /CodeGolf.Web/ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:52:59] "GET /codenames-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:00] "GET /collab-connect-web-application/server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:00] "GET /collected_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:00] "GET /community/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:00] "GET /compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:01] "GET /config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:01] "GET /config.yaml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:01] "GET /config/.env.dev HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:01] "GET /config/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:02] "GET /config/.env.production HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:02] "GET /config/aws.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:02] "GET /config/cache.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:02] "GET /config/config.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:03] "GET /config/config.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:03] "GET /config/default.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:03] "GET /config/keys.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:03] "GET /config/production.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:04] "GET /config/secrets.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:04] "GET /config/settings.py HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:04] "GET /ContainerRegistry/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:05] "GET /containers/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:05] "GET /content/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:05] "GET /control/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:05] "GET /core/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:06] "GET /core/Datavase/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:06] "GET /core/persistence/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:06] "GET /core/src/main/resources/org/jobrunr/dashboard/frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:06] "GET /counterblockd/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:07] "GET /counterwallet/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:07] "GET /cp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:08] "GET /cronlab/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:08] "GET /cryo_project/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:08] "GET /css/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:08] "GET /custom/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:09] "GET /d/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:09] "GET /dashboard/i.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:09] "GET /dashboard/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:09] "GET /dashboard/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:10] "GET /dashboard/test.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:10] "GET /data/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:10] "GET /database/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:10] "GET /dataset1/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:11] "GET /dataset2/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:11] "GET /db-admin/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:11] "GET /db.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:11] "GET /db.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:12] "GET /db_backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:12] "GET /debug HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:12] "GET /debug.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:12] "GET /debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:13] "GET /debug.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:13] "GET /debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:13] "GET /debug/default/view.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:13] "GET /debug/default/view?panel=config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:14] "GET /default/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:14] "GET /delivery/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:14] "GET /demo-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:14] "GET /demo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:15] "GET /dep.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:15] "GET /deploy.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:15] "GET /deploy/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:15] "GET /deployment-config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:16] "GET /dev-api/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:16] "GET /dev-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:16] "GET /dev.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:16] "GET /dev/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:16] "GET /dev_env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:17] "GET /developer.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:17] "GET /developer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:17] "GET /developerslv/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:17] "GET /development/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:18] "GET /devs.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:18] "GET /devtools HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:18] "GET /directories/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:18] "GET /dist/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:19] "GET /dist/js/app.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:19] "GET /django-blog/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:19] "GET /django/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:19] "GET /django_project_path/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:20] "GET /doc/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:20] "GET /docker-compose.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:20] "GET /docker-compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:20] "GET /docker-compose/platform/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:21] "GET /docker-elk/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:21] "GET /docker-network-healthcheck/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:21] "GET /docker-node-mongo-redis/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:21] "GET /docker/compose/withMongo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:22] "GET /docker/compose/withPostgres/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:22] "GET /docker/database/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:22] "GET /docker/db/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:22] "GET /docker/dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:23] "GET /docker/examples/compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:23] "GET /docker/postgres/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:23] "GET /docker/webdav/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:23] "GET /docs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:24] "GET /dodoswap-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:24] "GET /dotfiles/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:24] "GET /download/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:24] "GET /downloads/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:25] "GET /drupal/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:25] "GET /dump.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:25] "GET /e2e/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:25] "GET /en/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:26] "GET /engine/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:26] "GET /env.example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:26] "GET /env.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:26] "GET /env.template HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:27] "GET /env/dockers/mariadb-test/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:27] "GET /env/dockers/php-apache/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:27] "GET /env/example/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:27] "GET /env/template/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:28] "GET /environments/local/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:28] "GET /environments/production/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:28] "GET /envs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:28] "GET /error.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:28] "GET /error/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:29] "GET /errors/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:29] "GET /example/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:29] "GET /example02-golang-package/import-underscore/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:29] "GET /example27-how-to-load-env/sample01/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:30] "GET /example27-how-to-load-env/sample02/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:30] "GET /examples/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:30] "GET /examples/01-simple-model/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:30] "GET /examples/02-complex-example/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:31] "GET /examples/03-one-to-many-relationship/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:31] "GET /examples/04-many-to-many-relationship/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:31] "GET /examples/05-migrations/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:31] "GET /examples/06-base-service/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:32] "GET /examples/07-feature-flags/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:32] "GET /examples/08-performance/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:32] "GET /examples/09-production/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:33] "GET /examples/10-subscriptions/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:33] "GET /examples/11-transactions/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:33] "GET /examples/drupal-separate-services/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:34] "GET /examples/react-dashboard/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:34] "GET /examples/sdl-first/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:34] "GET /examples/sdl-first/prisma/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:34] "GET /examples/vue-dashboard/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:35] "GET /examples/web/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:35] "GET /examples/with-cookie-auth-fauna/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:35] "GET /examples/with-dotenv/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:35] "GET /examples/with-firebase-authentication-serverless/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:36] "GET /examples/with-react-relay-network-modern/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:36] "GET /examples/with-relay-modern/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:36] "GET /examples/with-universal-configuration-build-time/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:37] "GET /exapi/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:37] "GET /Exercise.Frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:37] "GET /Exercise.Frontend/train/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:37] "GET /export/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:38] "GET /fastlane/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:38] "GET /favicons/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:38] "GET /favs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:38] "GET /FE/huey/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:39] "GET /fedex/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:39] "GET /fhir-api/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:39] "GET /files/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:39] "GET /fileserver/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:40] "GET /films/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:40] "GET /Final_Project/Airflow_Dag/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:40] "GET /Final_Project/kafka_twitter/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:40] "GET /Final_Project/StartingFile/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:41] "GET /finalVersion/lcomernbootcamp/projbackend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:41] "GET /firebase.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:41] "GET /first-network/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:41] "GET /FIRST_CONFIG/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:42] "GET /fisdom/fisdom/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:42] "GET /fixtures/blocks/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:42] "GET /fixtures/fiber-debugger/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:42] "GET /fixtures/flight/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:43] "GET /fixtures/kitchensink/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:43] "GET /flask/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:43] "GET /flask_test_uploads/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:43] "GET /fm/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:44] "GET /font-icons/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:44] "GET /fonts/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:44] "GET /framework/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:44] "GET /front-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:45] "GET /front-empathy/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:45] "GET /front-end/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:45] "GET /front/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:45] "GET /front/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:46] "GET /frontend/momentum-fe/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:46] "GET /frontend/react/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:46] "GET /frontend/vue/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:47] "GET /frontend/web/debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:47] "GET /frontendfinaltest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:47] "GET /ftp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:47] "GET /ftpmaster/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:48] "GET /functions/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:48] "GET /gcloud.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:48] "GET /gcp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:48] "GET /gists/cache HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:49] "GET /gists/laravel HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:49] "GET /gists/pusher HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:49] "GET /github-connect/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:49] "GET /google/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:50] "GET /graphiql/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:50] "GET /graphql/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:50] "GET /grems-api/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:50] "GET /grems-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:51] "GET /Hash/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:51] "GET /hasura/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:51] "GET /hc/restricted HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:51] "GET /Helmetjs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:52] "GET /hgs-static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:52] "GET /higlass-website/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:52] "GET /home/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:52] "GET /horde/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:53] "GET /hotpot-app-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:53] "GET /htdocs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:53] "GET /html/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:53] "GET /http/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:54] "GET /httpboot/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:54] "GET /httpdocs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:54] "GET /HUNIV_migration/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:54] "GET /i.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:55] "GET /icon/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:55] "GET /icons/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:55] "GET /ikiwiki/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:55] "GET /image_data/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:56] "GET /Imagebord/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:56] "GET /images/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:56] "GET /img/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:57] "GET /in.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:57] "GET /inc.config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:57] "GET /includes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:57] "GET /includes/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:58] "GET /index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:58] "GET /index.php~ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:58] "GET /index1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:58] "GET /inf.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:59] "GET /info1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:53:59] "GET /info2.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:00] "GET /info3.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:00] "GET /info4.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:00] "GET /infophp.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:00] "GET /infos.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:01] "GET /ini.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:01] "GET /install/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:01] "GET /InstantCV/server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:02] "GET /internal-api/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:02] "GET /internal/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:02] "GET /internal/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:02] "GET /isadmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:03] "GET /items/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:03] "GET /javascript/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:03] "GET /jenkins/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:03] "GET /jo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:04] "GET /joomla/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:04] "GET /js-plugin/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:04] "GET /js/app.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:04] "GET /js/app.bundle.min.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:05] "GET /js/chunk-79be581b.c4b0f5e4.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:05] "GET /js/chunk-vendors.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:05] "GET /js/chunks/[chunk-name].[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:06] "GET /js/contact_me.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:06] "GET /js/vendor.[hash].js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:06] "GET /jsrelay/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:06] "GET /jupyter/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:07] "GET /khanlinks/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:07] "GET /kibana/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:07] "GET /kodenames-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:07] "GET /kolab-syncroton/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:08] "GET /Kubernetes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:08] "GET /kubernetes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:08] "GET /l.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:08] "GET /lab/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:09] "GET /lambda/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:09] "GET /latest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:09] "GET /layout/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:10] "GET /lcomernbootcamp/projbackend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:10] "GET /leafer-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:10] "GET /ledger_sync/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:10] "GET /legacy/tests/9.1.1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:11] "GET /legacy/tests/9.2.0 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:11] "GET /legal/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:11] "GET /lemonldap-ng-doc/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:11] "GET /lemonldap-ng-fr-doc/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:12] "GET /letsencrypt/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:12] "GET /lib/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:12] "GET /lib/config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:12] "GET /libraries/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:13] "GET /Library/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:13] "GET /libs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:13] "GET /lindex.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:14] "GET /linusadmin-phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:14] "GET /linux/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:14] "GET /local.settings.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:14] "GET /localhost/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:15] "GET /locally/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:15] "GET /log.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:15] "GET /log/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:15] "GET /log/development.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:16] "GET /logging/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:16] "GET /login/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:16] "GET /login/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:16] "GET /logs/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:17] "GET /logs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:17] "GET /logs/access.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:17] "GET /logs/app.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:18] "GET /logs/error.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:18] "GET /magento/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:18] "GET /mailinabox/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:18] "GET /mailman/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:19] "GET /main-es2015.3c3aa123423ff18c0b00.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:19] "GET /main-es2018.96dcf91e05121e327dcb.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:19] "GET /main-TDTOTK7F.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:19] "GET /main-WTCAS2AO.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:20] "GET /main.0ad61943313a734cc3ac.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:20] "GET /main.2b8841d1a101dd041285.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:20] "GET /main.35a08c25eb91de70487f.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:20] "GET /main.457ddfd2b1341056.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:21] "GET /main.48f1bbcf6201c5ea.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:21] "GET /main.58a95e8d8659972f.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:21] "GET /main.702787bb88cacd05b11d.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:22] "GET /main.b610bd7c7b9b7a47.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:22] "GET /main.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:22] "GET /main.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:22] "GET /main.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:23] "GET /main_user/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:23] "GET /Makefile HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:23] "GET /manifest.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:23] "GET /manual/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:24] "GET /master/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:24] "GET /media/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:24] "GET /memcached/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:25] "GET /mentorg-lava-docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:25] "GET /micro-app-react-communication/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:25] "GET /micro-app-react/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:25] "GET /mindsweeper/gui/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:26] "GET /minified/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:26] "GET /misc/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:26] "GET /Modix/ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:27] "GET /monerod/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:27] "GET /mongodb/config/dev/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:27] "GET /monitoring/compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:28] "GET /moodledata/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:28] "GET /msks/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:28] "GET /munki_repo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:28] "GET /music/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:29] "GET /MyRentals.Web/ClientApp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:29] "GET /mysql/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:29] "GET /name/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:29] "GET /nest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:30] "GET /netlify.toml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:30] "GET /new-js/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:30] "GET /new.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:30] "GET /news-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:31] "GET /next/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:31] "GET /nginx-server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:31] "GET /niffler-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:32] "GET /node_modules/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:32] "GET /Nodejs-Projects/play-ground/login/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:32] "GET /Nodejs-Projects/play-ground/ManageUserRoles/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:32] "GET /noVNC/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:33] "GET /now.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:33] "GET /Nuke.App.Ui/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:33] "GET /nuxt/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:33] "GET /o.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:34] "GET /ocp.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:34] "GET /of.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:34] "GET /old/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:34] "GET /old/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:35] "GET /old_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:35] "GET /old_site/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:35] "GET /oldsanta/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:35] "GET /opencart/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:36] "GET /ops/vagrant/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:36] "GET /option/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:36] "GET /orientdb-client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:36] "GET /outputs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:37] "GET /owncloud/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:37] "GET /p.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:37] "GET /packages/styled-ui-docs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:37] "GET /packages/web/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:38] "GET /packed/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:38] "GET /page-editor/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:38] "GET /panel/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:38] "GET /parity/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:39] "GET /Passportjs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:39] "GET /patchwork/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:39] "GET /path/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:39] "GET /pfbe/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:40] "GET /php.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:40] "GET /php.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:40] "GET /php1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:40] "GET /php52/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:41] "GET /php_info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:41] "GET /phpcustom_info/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:41] "GET /phpinfo.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:42] "GET /phpinfo.php4 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:42] "GET /phpinfo.php5 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:42] "GET /phpinfo.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:42] "GET /phpinfo/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:43] "GET /phpinfo/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:43] "GET /phpinfo1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:43] "GET /phpinfo2.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:43] "GET /phpinfo3.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:44] "GET /phpinfo4.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:44] "GET /phpinfodev.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:44] "GET /phpinfos.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:44] "GET /phpMyAdmin/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:45] "GET /phpmyadmin/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:45] "GET /phpsysinfo HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:45] "GET /phpsysinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:45] "GET /phpsysinfo/info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:46] "GET /phpsysinfo/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:46] "GET /phpsysinfo/phpsysinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:46] "GET /phptest.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:46] "GET /phpversion.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:47] "GET /pi.php5 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:47] "GET /pictures/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:47] "GET /platform/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:47] "GET /playground/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:48] "GET /plugin_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:48] "GET /plugins/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:48] "GET /post-deployment/.vscode/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:48] "GET /postfixadmin/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:49] "GET /prestashop/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:49] "GET /preview-env/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:49] "GET /preview/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:49] "GET /price_hawk_client/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:50] "GET /prisma/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:50] "GET /private.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:50] "GET /processor/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:50] "GET /Procfile HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:51] "GET /prod/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:51] "GET /product/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:51] "GET /projbackend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:52] "GET /project/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:52] "GET /project_root/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:52] "GET /protected/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:52] "GET /psnlink/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:53] "GET /pt2/countries/src/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:53] "GET /pt8/library-backend-gql/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:54] "GET /pub/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:54] "GET /public/system HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:54] "GET /public_html/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:54] "GET /public_root/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:55] "GET /q.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:55] "GET /qq.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:55] "GET /question2/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:55] "GET /qv-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:56] "GET /rabbitmq-cluster/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:56] "GET /rails-api/react-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:56] "GET /rails/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:56] "GET /rasax/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:57] "GET /react/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:57] "GET /react_todo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:57] "GET /redmine/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:57] "GET /repo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:57] "GET /repos/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:58] "GET /repository/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:58] "GET /resources/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:58] "GET /resources/docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:58] "GET /resources/docker/mysql/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:59] "GET /resources/docker/phpmyadmin/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:59] "GET /resources/docker/rabbitmq/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:59] "GET /resources/docker/rediscommander/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:54:59] "GET /resourcesync/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:00] "GET /rest.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:00] "GET /rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:00] "GET /restapi/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:00] "GET /results/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:01] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:01] "GET /robots/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:01] "GET /rollup.config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:01] "GET /root/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:02] "GET /rosterBack/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:02] "GET /roundcube/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:02] "GET /roundcubemail/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:02] "GET /routes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:03] "GET /run/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:03] "GET /rust-backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:03] "GET /rust-backend/dao/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:03] "GET /s-with-me-front/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:04] "GET /s3.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:04] "GET /saas/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:04] "GET /samples/chatroom/chatroom-spa/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:04] "GET /samples/docker/deploymentscripts/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:05] "GET /sapi/debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:05] "GET /script/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:05] "GET /scripts/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:05] "GET /scripts/fvt/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:06] "GET /secrets.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:06] "GET /secrets.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:06] "GET /secrets/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:06] "GET /selfish-darling-backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:07] "GET /sendgrid.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:07] "GET /serve-browserbench/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:07] "GET /Serve_time_server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:08] "GET /server.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:08] "GET /server/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:08] "GET /server/laravel/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:08] "GET /server/s3.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:09] "GET /server/src/persistence/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:09] "GET /Server_with_db/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:09] "GET /serverless.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:09] "GET /service-worker.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:10] "GET /service/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:10] "GET /services/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:10] "GET /services/adminer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:10] "GET /services/deployment-agent/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:11] "GET /services/documents/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:11] "GET /services/graylog/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:11] "GET /services/jaeger/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:11] "GET /services/minio/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:12] "GET /services/monitoring/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:12] "GET /services/portainer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:12] "GET /services/redis-commander/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:12] "GET /services/registry/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:13] "GET /services/simcore/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:13] "GET /services/traefik/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:13] "GET /sessions/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:13] "GET /settings.py HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:14] "GET /shared/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:14] "GET /shibboleth/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:14] "GET /shop/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:14] "GET /shopware/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:15] "GET /Simple_server/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:15] "GET /site-library/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:15] "GET /sitemaps/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:15] "GET /sites/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:15] "GET /sitestatic/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:16] "GET /Socketio/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:16] "GET /source/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:16] "GET /sources/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:16] "GET /Sources/API/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:17] "GET /spearmint/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:17] "GET /spikes/config-material-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:17] "GET /SpotiApps/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:17] "GET /src/__tests__/__fixtures__/instanceWithDependentSteps/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:18] "GET /src/__tests__/__fixtures__/typeScriptIntegrationProject/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:18] "GET /src/__tests__/__fixtures__/typeScriptProject/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:19] "GET /src/__tests__/__fixtures__/typeScriptVisualizeProject/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:19] "GET /src/add-auth/express/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:19] "GET /src/assembly/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:19] "GET /src/character-service/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:20] "GET /src/client/mobile/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:20] "GET /src/core/tests/dotenv-files/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:20] "GET /src/gameprovider-service/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:20] "GET /src/main/front-end/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:21] "GET /src/main/resources/archetype-resources/__rootArtifactId__-acceptance-test/src/test/resources/app-launcher-tile/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:21] "GET /src/renderer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:21] "GET /srv6_controller/controller/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:21] "GET /srv6_controller/examples/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:22] "GET /srv6_controller/node-manager/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:22] "GET /st-js-be-2020-movies-two/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:22] "GET /stack.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:22] "GET /stackato-pkg/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:23] "GET /stag/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:23] "GET /staging-api/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:23] "GET /staging/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:23] "GET /staging/api/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:24] "GET /staging/backend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:24] "GET /staging/frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:24] "GET /static-collected/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:24] "GET /static-html/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:25] "GET /static-root/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:25] "GET /static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:25] "GET /static/js/*.chunk.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:25] "GET /static/js/main.11bc02d8.chunk.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:26] "GET /static/js/main.1b34ee2a.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:26] "GET /static/js/main.335d17a0.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:26] "GET /static/js/main.36e5ec99.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:26] "GET /static/js/main.48389ac6.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:26] "GET /static/js/main.4aa2819f.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:27] "GET /static/js/main.602cea98.chunk.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:27] "GET /static/js/main.87c766e3.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:27] "GET /static/js/main.89c971fa.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:27] "GET /static/js/main.8c18b542.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:28] "GET /static/js/main.bfa51071.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:28] "GET /static/js/main.ef8ecb99.chunk.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:28] "GET /static_prod/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:28] "GET /static_root/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:29] "GET /static_user/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:29] "GET /staticfiles/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:29] "GET /stats/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:29] "GET /storage/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:30] "GET /storage/.env.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:30] "GET /storage/debugbar/*.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:30] "GET /strapi/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:30] "GET /style/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:31] "GET /styles/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:31] "GET /stylesheets/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:31] "GET /swagger/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:31] "GET /symfony/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:32] "GET /system-config/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:32] "GET /system/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:32] "GET /system/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:32] "GET /system/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:33] "GET /target/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:33] "GET /temanr10/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:33] "GET /temanr9/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:33] "GET /temp.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:34] "GET /temp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:34] "GET /template/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:34] "GET /templates/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:34] "GET /test HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:35] "GET /test-api/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:35] "GET /test-network/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:35] "GET /test-network/addOrg3/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:35] "GET /test/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:36] "GET /test/aries-js-worker/fixtures/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:36] "GET /test/bdd/fixtures/adapter-rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:36] "GET /test/bdd/fixtures/agent-rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:36] "GET /test/bdd/fixtures/couchdb/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:36] "GET /test/bdd/fixtures/demo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:37] "GET /test/bdd/fixtures/demo/openapi/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:37] "GET /test/bdd/fixtures/did-method-rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:37] "GET /test/bdd/fixtures/did-rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:37] "GET /test/bdd/fixtures/edv-rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:38] "GET /test/bdd/fixtures/openapi-demo/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:38] "GET /test/bdd/fixtures/sidetree-mock/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:38] "GET /test/bdd/fixtures/universalresolver/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:38] "GET /test/bdd/fixtures/vc-rest/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:39] "GET /test/fixtures/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:39] "GET /test/fixtures/app_types/node/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:39] "GET /test/fixtures/app_types/rails/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:39] "GET /test/fixtures/node_path/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:40] "GET /test/integration/env-config/app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:40] "GET /test0.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:40] "GET /test1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:40] "GET /test1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:41] "GET /test123.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:41] "GET /test2.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:41] "GET /test3.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:41] "GET /test4.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:42] "GET /test5.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:42] "GET /test6.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:42] "GET /test7.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:42] "GET /test8.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:43] "GET /test9.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:43] "GET /test_info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:43] "GET /test_info1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:44] "GET /test_info2.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:44] "GET /test_info3.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:44] "GET /test_info4.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:45] "GET /test_info5.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:45] "GET /test_phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:45] "GET /test_phpinfo1.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:45] "GET /test_phpinfo2.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:46] "GET /test_phpinfo3.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:46] "GET /test_phpinfo4.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:46] "GET /test_phpinfo5.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:47] "GET /tester.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:47] "GET /testfiles/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:47] "GET /testing.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:47] "GET /testing/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:48] "GET /testing/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:48] "GET /testing/docker/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:48] "GET /tests/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:48] "GET /Tests/Application/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:49] "GET /tests/default_settings/v10.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:49] "GET /tests/default_settings/v11.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:49] "GET /tests/default_settings/v12.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:50] "GET /tests/default_settings/v13.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:50] "GET /tests/default_settings/v7.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:50] "GET /tests/default_settings/v8.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:50] "GET /tests/default_settings/v9.0/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:51] "GET /tests/drupal-test/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:51] "GET /tests/Integration/Environment/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:51] "GET /tests/todo-react/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:51] "GET /testwork_json/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:52] "GET /theme/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:52] "GET /theme_static/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:52] "GET /thumb/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:53] "GET /thumbs/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:53] "GET /tiedostot/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:53] "GET /time.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:53] "GET /tmp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:54] "GET /tmp/config/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:54] "GET /tmp/logs HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:54] "GET /token.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:54] "GET /tool/view/phpinfo.view.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:55] "GET /tools/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:55] "GET /Travel_form/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:55] "GET /ts/prime/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:56] "GET /tz.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:56] "GET /u.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:56] "GET /ubuntu/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:56] "GET /ui/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:57] "GET /unixtime/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:57] "GET /unsplash-downloader/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:57] "GET /up.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:57] "GET /upfiles/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:58] "GET /upload/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:58] "GET /uploads/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:58] "GET /urlmem-app/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:58] "GET /user/.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:59] "GET /user/login HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:59] "GET /User_info/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:55:59] "GET /v1/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:00] "GET /v1/admin/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:00] "GET /v1/debug/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:00] "GET /v1/private/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:00] "GET /v2/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:01] "GET /var/backup/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:01] "GET /vendor/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:01] "GET /vendor/github.com/gobuffalo/envy/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:01] "GET /vendor/github.com/subosito/gotenv/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:02] "GET /vendors~main.f286c0f60bdc707d91a8.bundle.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:02] "GET /vercel.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:02] "GET /videos/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:03] "GET /vite.config.ts HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:03] "GET /vm-docker-compose/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:03] "GET /vod_installer/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:03] "GET /vue-end/vue-til/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:04] "GET /vue/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:04] "GET /vue/vuecli/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:04] "GET /vue_CRM/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:04] "GET /w.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:05] "GET /web-dist/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:05] "GET /web.config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:05] "GET /web.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:06] "GET /web/debug/default/view HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:06] "GET /Web/siteMariage/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:06] "GET /webpack-stats.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:06] "GET /webpack.config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:07] "GET /webroot_path/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:07] "GET /website/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:07] "GET /websocket/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:07] "GET /webstatic/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:08] "GET /webui/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:08] "GET /well-known/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:08] "GET /whturk/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:09] "GET /windows/tests/9.2.x/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:09] "GET /windows/tests/9.3.x/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:09] "GET /wordpress/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:09] "GET /workspace/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:10] "GET /wp-config.old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:10] "GET /wp-config.php-backup HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:10] "GET /wp-config.php~ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:10] "GET /wp-config.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:11] "GET /wp-content/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:11] "GET /wp-content/debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:12] "GET /wp-login.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:12] "GET /wp-login/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:12] "GET /wp.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:12] "GET /wp/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:13] "GET /wpp-config.php~ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:13] "GET /www-data/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:13] "GET /x.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:14] "GET /xx-final/vue-heroes/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:14] "GET /yarn.lock HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:14] "GET /zmusic-frontend/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:14] "GET /:443/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:15] "GET /:80/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:15] "GET /:8080/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:15] "GET /:8081/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:15] "GET /:8443/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:16] "GET /sendgrid_email/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:16] "GET /.env.sendgrid HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:16] "GET /sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:16] "GET /sendgrid_keys.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:17] "GET /private/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:17] "GET /config/private/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:17] "GET /backup/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:17] "GET /secrets/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:18] "GET /wp-content/uploads/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:18] "GET /wp-content/plugins/wp-mail-smtp/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:18] "GET /wp-content/plugins/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:18] "GET /modules/contrib/sendgrid_mail/sendgrid_mail.module HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:19] "GET /modules/contrib/sendgrid_mail/sendgrid_mail.settings.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:19] "GET /modules/contrib/sendgrid_mail/sendgrid_mail.services.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:19] "GET /modules/contrib/sendgrid_mail/translations/sendgrid_mail.fr.po HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:19] "GET /wp-content/themes/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:20] "GET /wp-content/uploads/wp-mail-smtp/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:20] "GET /wp-content/backup/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:20] "GET /wp-includes/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:20] "GET /wp-content/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:21] "GET /wp-admin/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:21] "GET /sendgrid_keys HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:21] "GET /.sendgrid/credentials HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:21] "GET /.sendgrid/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:22] "GET /config/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:22] "GET /config/sendgrid_config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:22] "GET /private/sendgrid_keys HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:22] "GET /private/sendgrid_config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:23] "GET /backup/sendgrid_keys HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:23] "GET /backup/sendgrid_config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:23] "GET /secrets/sendgrid_keys HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:23] "GET /secrets/sendgrid_config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:24] "GET /config/sendgrid.py HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:24] "GET /settings/sendgrid_keys HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:24] "GET /settings/sendgrid_config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:24] "GET /config/settings/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:25] "GET /config/settings/sendgrid_config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:25] "GET /config/env/sendgrid.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:25] "GET /config/env/sendgrid_keys.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:25] "GET /instance/sendgrid_keys.py HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:26] "GET /sendgrid_keys.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:26] "GET /sendgrid_keys.py HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:26] "GET /keys/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:27] "GET /api_keys/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:27] "GET /config/packages/sendgrid.yaml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:27] "GET /config/secrets/prod/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:27] "GET /config/secrets/dev/sendgrid_keys.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:28] "GET /config/sendgrid.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:28] "GET /storage/sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:28] "GET /backup/sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:28] "GET /secrets/sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:29] "GET /config/sendgrid.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:29] "GET /private/sendgrid.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:29] "GET /wp-config.php.orig HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:29] "GET /phpinfo.phtml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:30] "GET /%C0/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:30] "GET /configs/application.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:30] "GET /_profiler/empty/search/results HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:30] "GET /api/v1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:31] "GET /api/service HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:31] "GET /api/system/info HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:31] "GET /api/gateway HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:31] "GET /api/command HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:32] "GET /api/admin/user HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:32] "GET /api/admin/user/password HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:32] "GET /api/admin/user/status HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:32] "GET /api/admin/auth HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:33] "GET /api/admin/role HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:33] "GET /api/admin/role/id HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:33] "GET /api/admin HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:33] "GET /api/v1/sms-sender HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:34] "GET /api/v1/finchat/contact/manager HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:34] "GET /api/v1/finchat/privilege-api/forwarder HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:34] "GET /api/v1/finchat/privilege-api/forwarder/event HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:34] "GET /api/v1/finchat/open-api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:35] "GET /api/upload HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:35] "GET /api/savefile HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:35] "GET /api/v1/files HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:35] "GET /api/files.remote.share HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:36] "GET /api/v1/netdisk/download HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:36] "GET /sources/api/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:36] "GET /app/api/bzycs.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:36] "GET /src/api/config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:37] "GET /web/api/config.js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:37] "GET /api/.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:37] "GET /api/v1/finchat/open-api/auth/token HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:38] "GET /api/v1/account/oauth/token HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:38] "GET /api/v1/account/oauth/ticket HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:39] "GET /api/v1/tokens HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:39] "GET /api/login HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:39] "GET /api/auth HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:39] "GET /api/authentication HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:40] "GET /api/auth/v1/pin/verify HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:40] "GET /api/register HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:40] "GET /api/resetpassword HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:40] "GET /vendor/drupal/coder/.git/info/refs HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:41] "GET /vendor/drupal/coder/.git/info/exclude HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:41] "GET /vendor/drupal/coder/.git/objects/info HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:41] "GET /vendor/drupal/coder/.git/objects/info/packs HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:42] "GET /info.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:42] "GET /info.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:42] "GET /member/space/company/info.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:42] "GET /cmsmessages/information.aspx HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:43] "GET /cmsmessages/information.aspx.cs HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:43] "GET /module/info/include/mysql/phpcms_info.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:43] "GET /phpinfo.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:43] "GET /phpinfo.dev HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:44] "GET /phpinfo.test HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:44] "GET /phpinfo-prod HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:44] "GET /phpinfo-preprod HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:45] "GET /phpinfo.staging HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:45] "GET /phpinfo.stg HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:45] "GET /phpinfo-server HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:45] "GET /phpinfo-server.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:46] "GET /phpinfo.srv HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:46] "GET /phpinfo-api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:46] "GET /phpinfoapi HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:46] "GET /phpinfo_details.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:47] "GET /phpinfo_details HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:47] "GET /phpinfomolten.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:47] "GET /phpinfodev HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:48] "GET /shop/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:48] "GET /bitrix/admin/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:48] "GET /mambo/administrator/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:48] "GET /lib/zend/tool/framework/system/provider/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:49] "GET /wp-content/plugins/phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:49] "GET /wp-content/.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:49] "GET /blog/wp-content/themes/.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:49] "GET /wp-content/themes/.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:50] "GET /wp-content/plugins/.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:50] "GET /wp-content/db.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:50] "GET /wp-content/mysql.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:51] "GET /wp-content/dump.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:51] "GET /wp-content/uploads/db.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:51] "GET /wp-content/uploads/mysql.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:51] "GET /wp-content/backup/db.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:52] "GET /wp-content/backups/db.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:52] "GET /wp-content/db_backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:52] "GET /wp-content/uploads/db_backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:52] "GET /wp-content/backup/db_backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:53] "GET /wp-content/fullbackup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:53] "GET /wp-content/fullwebsite.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:53] "GET /wp-content/data.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:54] "GET /wp-content/backup/data.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:54] "GET /wp-content/uploads/data.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:54] "GET /wp-content/backups/data.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:54] "GET /wp-content/backup/database.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:55] "GET /wp-content/backups/database.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:55] "GET /wp-content/wordpress.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:55] "GET /wp-content/backups/wordpress.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:55] "GET /wp-content/dbdump.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:56] "GET /wp-content/uploads/dbdump.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:56] "GET /wp-content/backups/dbdump.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:56] "GET /wp-content/backup/dbdump.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:57] "GET /wp-config.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:57] "GET /wp-config-sample.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:57] "GET /wp-config.php.bak1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:57] "GET /wp-config.bak1 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:58] "GET /config.inc.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:58] "GET /connect.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:58] "GET /connection.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:58] "GET /conn.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:59] "GET /conn.asp.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:59] "GET /connection.asp.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:56:59] "GET /config.jsp.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:00] "GET /config.ini.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:00] "GET /config/config.inc.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:00] "GET /config/config_ucenter.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:00] "GET /config/config_global.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:01] "GET /bitrix/php_interface/dbconn.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:01] "GET /uc_server/data/config.inc.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:01] "GET /data/config.inc.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:01] "GET /var/debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:02] "GET /content/debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:02] "GET /npm-debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:02] "GET /yarn-debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:03] "GET /firebase-debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:03] "GET /debug.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:03] "GET /debug.txt.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:03] "GET /debug.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:04] "GET /debug.zip HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:04] "GET /debug.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:04] "GET /debug.sql.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:04] "GET /debug.sql.zip HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:05] "GET /mysql_debug.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:05] "GET /root/.aws/credentials HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:05] "GET /.aws/secret_access_key.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:06] "GET /.aws/s3/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:06] "GET /.aws/config.yaml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:07] "GET /.aws/secrets/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:07] "GET /.aws/secretsmanager/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:07] "GET /config.php.old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:07] "GET /config.inc.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:08] "GET /config.json.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:08] "GET /config.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:08] "GET /config.js.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:08] "GET /config/settings.local.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:09] "GET /config.local HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:09] "GET /config.local.php_old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:09] "GET /config.inc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:09] "GET /config.properties HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:10] "GET /appsettings.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:10] "GET /connectionstrings.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:10] "GET /settings.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:10] "GET /settings.php.old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:11] "GET /settings.php.save HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:11] "GET /app/config/parameters.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:11] "GET /composer.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:11] "GET /package.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:12] "GET /debug.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:12] "GET /debug-output.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:12] "GET /php.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:13] "GET /build.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:13] "GET /scripts/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:13] "GET /tmp/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:13] "GET /symfony/_profiler/phpinfo HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:14] "GET /webdav/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:14] "GET /php-information HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:14] "GET /tools/phpinfo.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:14] "GET /start.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:15] "GET /run.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:15] "GET /build.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:15] "GET /startup.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:15] "GET /cron.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:16] "GET /aws-credentials.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:16] "GET /configure.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:16] "GET /service.pwd HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:16] "GET /service.grp HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:17] "GET /server.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:17] "GET /configuration.php.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:17] "GET /app/etc/local.xml.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:17] "GET /database.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:18] "GET /mysql.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:18] "GET /backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:18] "GET /site.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:18] "GET /wordpress.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:19] "GET /server-info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:19] "GET /app_dev.php/_profiler/open?file=app/config/parameters.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:19] "GET /storage/oauth-private.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:20] "GET /storage/oauth-public.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:20] "GET /storage/logs/stack.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:20] "GET /storage/debug.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:21] "GET /bootstrap/app.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:21] "GET /config/auth.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:21] "GET /config/filesystems.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:21] "GET /config/queue.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:22] "GET /config/session.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:22] "GET /config/view.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:22] "GET /config/logging.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:22] "GET /config/broadcasting.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:23] "GET /resources/views/errors/500.blade.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:23] "GET /resources/views/errors/404.blade.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:23] "GET /resources/views/welcome.blade.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:23] "GET /_debugbar/open HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:24] "GET /debugbar HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:24] "GET /xdebug.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:24] "GET /xdebug_info.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:24] "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:25] "GET /vendor/symfony/debug/debug.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:25] "GET /vendor/composer/installed.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:25] "GET /vendor/autoload.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:25] "GET /vendor/.env.example HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:26] "GET /artisan HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:26] "GET /test_socket.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:26] "GET /testdb.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:26] "GET /errors.log HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:27] "GET /config.old HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:27] "GET /export.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:27] "GET /adminer-4.2.5-mysql-en.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:27] "GET /phpmyadmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:28] "GET /phpmyadmin/index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:28] "GET /phpmyadmin/setup/index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:28] "GET /sql.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:28] "GET /sqladmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:29] "GET /dbadmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:29] "GET /phpminiadmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:29] "GET /mysqladmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:30] "GET /backup/database.zip HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:30] "GET /database.zip HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:30] "GET /dump.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:30] "GET /data.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:31] "GET /backup.tar HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:31] "GET /app.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:31] "GET /database.tar.gz HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:31] "GET /db_backup.zip HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:32] "GET /database_backup.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:32] "GET /.config/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:33] "GET /.docker/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:33] "GET /.settings.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:33] "GET /node_modules/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:33] "GET /vendor/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:34] "GET /tmp/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:34] "GET /core/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:34] "GET /core/config.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:34] "GET /api/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:35] "GET /wp-config-sample.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:35] "GET /wordpress/wp-config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:35] "GET /wordpress/wp-config-sample.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:35] "GET /.git/HEAD HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:36] "GET /.svn/entries HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:36] "GET /.hg/hgrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:36] "GET /.DS_Store HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:36] "GET /.htpasswd HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:37] "GET /.bash_history HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:37] "GET /.bashrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:37] "GET /id_rsa HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:37] "GET /id_rsa.pub HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:38] "GET /key.pem HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:38] "GET /public.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:38] "GET /ssl.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:38] "GET /cert.pem HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:39] "GET /selfsigned.crt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:39] "GET /selfsigned.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:39] "GET /nginx.conf HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:39] "GET /httpd.conf HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:40] "GET /docker-compose.override.yml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:40] "GET /Dockerfile HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:40] "GET /.nvmrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:40] "GET /.yarnrc HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:41] "GET /.rbenv-vars HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:41] "GET /config.ts HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:41] "GET /env.ts HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:41] "GET /settings.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:42] "GET /web.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:42] "GET /WEB-INF/web.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:42] "GET /META-INF/context.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:42] "GET /admin/settings.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:43] "GET /admin/settings.ini HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:43] "GET /admin/db.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:43] "GET /admin/db.conf HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:43] "GET /admin/sql.conf HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:44] "GET /admin/.env.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:44] "GET /admin/adminer.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:44] "GET /admin/sqladmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:44] "GET /admin/phpmyadmin.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:45] "GET /private/secret.key HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:45] "GET /private/secret.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:45] "GET /secrets.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:45] "GET /secrets.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:46] "GET /secret.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:46] "GET /api/secrets.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:46] "GET /.well-known/.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:46] "GET /.well-known/config.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:47] "GET /.well-known/credentials.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:47] "GET /install.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:47] "GET /setup.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:47] "GET /setup-config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:48] "GET /configuration.bak HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:48] "GET /app_dev.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:48] "GET /config_dev.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:49] "GET /index-dev.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:49] "GET /index-test.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:49] "GET /test/index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:49] "GET /dev/index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:50] "GET /dev/config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:50] "GET /maintenance.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:50] "GET /maintenance.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:50] "GET /under-construction.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:51] "GET /down.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:51] "GET /.maintenance HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:51] "GET /install/install.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:51] "GET /setup/setup.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:52] "GET /setup/index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:52] "GET /upgrade.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:52] "GET /upgrade/index.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:52] "GET /upgrader.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:53] "GET /migrate.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:53] "GET /migration.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:53] "GET /console.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:53] "GET /scripts/install.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:54] "GET /scripts/db.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:54] "GET /scripts/deploy.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:54] "GET /env.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:54] "GET /.env.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:55] "GET /backup.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:55] "GET /test.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:55] "GET /debug.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:55] "GET /logs.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:56] "GET /deploy.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:56] "GET /init.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:56] "GET /install.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:56] "GET /uninstall.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:57] "GET /remove.sh HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:57] "GET /install.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:57] "GET /update.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:57] "GET /delete.sql HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:58] "GET /sample.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:58] "GET /example.env HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:59] "GET /example-config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 00:57:59] "GET /sample-config.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:06:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:06:36] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:06:36] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:06:36] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:06:40] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:09] "GET /index.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:08:09] "GET /doesntexist-123 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:08:10] "GET /users/sign_in HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:08:10] "GET /assets/webpack/manifest.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:08:10] "GET /error.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:08:10] "GET /api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:08:10] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:12] "GET /console HTTP/1.1" 400 - +127.0.0.1 - - [09/Feb/2026 01:08:27] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:27] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:27] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:27] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:08:27] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:09:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:09:40] "GET /wp-content/plugins HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:09:40] "GET /wp-content/uploads HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:09:40] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:09:41] "GET /wp-content/uploads HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:09:59] "GET /modules HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:09:59] "GET /module HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:09:59] "GET /wp-content/plugins HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:02] "GET /module HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:02] "GET /modules HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:25] "GET /sites/all HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:25] "GET /sites/default/files HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:25] "GET /components HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:27] "GET /sites/default/files HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:27] "GET /components HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:43] "GET /sites/all HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:43] "GET /resources/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:10:43] "GET /js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:11:00] "GET /resources/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:11:00] "GET /js HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:11:13] "GET /resources/uploads/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:11:21] "GET /resources/uploads/ HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:11:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:11:53] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:12:04] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:12:30] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 01:13:17] "GET /wp-login.php HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 01:13:24] "GET /administrator HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:23:08] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:04] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:05] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:05] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:06] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:09] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:27] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:29] "GET /index.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:35:29] "GET /error.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:35:29] "GET /api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:35:30] "GET /doesntexist-123 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:35:30] "GET /users/sign_in HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:35:30] "GET /assets/webpack/manifest.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:35:30] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:35:31] "GET /console HTTP/1.1" 400 - +127.0.0.1 - - [09/Feb/2026 02:47:17] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:20] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:20] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:20] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:20] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:21] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:21] "GET /index.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:21] "GET /doesntexist-123 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:21] "GET /users/sign_in HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:21] "GET /assets/webpack/manifest.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:22] "GET /error.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:22] "GET /api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:22] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:24] "GET /console HTTP/1.1" 400 - +127.0.0.1 - - [09/Feb/2026 02:47:26] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:27] "GET /index.html HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:27] "GET /doesntexist-123 HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:27] "GET /users/sign_in HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:28] "GET /assets/webpack/manifest.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:28] "GET /error.json HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:28] "GET /api HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 02:47:28] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 02:47:29] "GET /console HTTP/1.1" 400 - +127.0.0.1 - - [09/Feb/2026 03:24:34] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 06:03:37] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 06:03:41] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 07:28:29] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 07:28:33] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 07:30:16] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 07:30:16] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 07:38:43] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 10:37:40] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 10:40:26] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 10:40:31] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 10:40:31] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 11:29:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 11:29:41] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 11:37:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 11:38:00] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 13:27:01] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 13:31:22] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 13:31:22] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:22] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:23] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 13:31:23] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:23] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:23] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:23] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:24] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:24] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:24] "GET /2018/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:24] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:24] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:25] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:25] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:25] "GET /media/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:25] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:25] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:25] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 13:31:26] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 16:48:59] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 18:04:18] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:20] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:30:21] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 19:31:36] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 20:10:51] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 20:10:51] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 20:10:54] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 21:55:18] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 22:13:33] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [09/Feb/2026 22:34:33] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 22:52:12] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:10:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:10:45] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:10:45] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:10:46] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:10:50] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:30:18] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:30:18] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:30:18] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:30:18] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [09/Feb/2026 23:30:19] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 00:26:10] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 00:26:10] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 00:26:14] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 00:26:37] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 00:40:28] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 03:49:37] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 03:49:38] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 03:49:39] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 04:25:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 05:48:44] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 05:48:44] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 05:48:44] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 05:48:44] "GET /static/favicon.ico HTTP/1.1" 304 - +127.0.0.1 - - [10/Feb/2026 05:48:48] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 05:48:50] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 05:48:50] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 10:03:12] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [10/Feb/2026 10:03:13] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [10/Feb/2026 10:35:42] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 11:29:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 14:04:11] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 14:04:14] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 15:18:14] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 16:25:30] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 18:10:17] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 18:10:20] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 18:47:01] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 18:47:02] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:02] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:02] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 18:47:02] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:02] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:03] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:03] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:03] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:03] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:03] "GET /2018/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:03] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:04] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:04] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:04] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:04] "GET /media/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:04] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:05] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:05] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 18:47:05] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [10/Feb/2026 22:16:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [10/Feb/2026 23:34:06] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [10/Feb/2026 23:34:07] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [10/Feb/2026 23:59:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 02:52:56] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [11/Feb/2026 02:52:57] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:26:09] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:29:00] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:29:43] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:31:24] "GET /?ref_type=ip&ref=66.249.89.6 HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:31:25] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:31:26] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:31:29] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 04:31:39] "GET /links?limit=30&offset=30 HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 06:39:21] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 08:20:34] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [11/Feb/2026 11:01:34] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 11:09:08] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 11:09:13] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 13:12:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 17:12:50] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 17:54:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 17:54:45] "GET /css/support_parent.css HTTP/1.1" 404 - +127.0.0.1 - - [11/Feb/2026 17:54:45] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 17:54:45] "GET /js/lkk_ch.js HTTP/1.1" 404 - +127.0.0.1 - - [11/Feb/2026 17:54:46] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 17:54:46] "GET /js/twint_ch.js HTTP/1.1" 404 - +127.0.0.1 - - [11/Feb/2026 17:54:46] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 18:34:30] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 18:59:38] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 18:59:38] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 18:59:38] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 18:59:41] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 19:00:12] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 19:00:12] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 22:06:07] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 22:28:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [11/Feb/2026 23:04:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 00:43:52] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 00:43:53] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [12/Feb/2026 05:26:50] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 05:49:26] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 06:51:39] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 07:30:54] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 08:29:12] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:49:23] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:49:26] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:52:58] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:52:58] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:53:02] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:53:02] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:53:02] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:53:02] "GET /static/favicon.ico HTTP/1.1" 304 - +127.0.0.1 - - [12/Feb/2026 09:53:02] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:53:45] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 09:53:45] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 10:09:31] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 10:09:33] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 10:09:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 10:09:42] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 10:09:47] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 12:23:42] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 13:49:53] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 14:41:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 14:41:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 14:41:35] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 14:41:36] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:26:56] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [12/Feb/2026 15:26:57] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:27:00] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:48:55] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:48:55] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:48:56] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:48:56] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:49:08] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 15:49:08] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 18:38:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 22:40:37] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [12/Feb/2026 23:53:07] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 00:23:29] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 01:08:45] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 03:27:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 03:27:22] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 03:51:12] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 03:51:13] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 03:51:13] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 07:05:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 07:54:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 11:55:37] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 13:00:40] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 13:00:41] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:41] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 13:00:41] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:42] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:42] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:42] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:42] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:42] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:42] "GET /2020/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:43] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:43] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:43] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:43] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:43] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:43] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:44] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:00:44] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 13:45:57] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 15:27:51] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 15:27:52] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 15:27:55] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 15:29:58] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 17:45:13] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 19:47:18] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 19:47:19] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:19] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 19:47:19] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:19] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:20] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:20] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:20] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:20] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:20] "GET /2020/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:21] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:21] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:21] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:21] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:21] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:21] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:22] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 19:47:22] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [13/Feb/2026 20:00:01] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [13/Feb/2026 20:33:39] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 02:24:04] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 03:28:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 03:28:22] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 04:12:07] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 05:49:52] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 11:48:35] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 12:07:03] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [14/Feb/2026 12:07:07] "GET /?ref_type=ip&ref=142.44.220.169 HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 12:09:43] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 12:09:44] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 13:35:46] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 15:28:49] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [14/Feb/2026 15:28:50] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 15:28:53] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 16:19:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 17:19:28] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 20:31:15] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:05:32] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:31:25] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:38:34] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:38:34] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:38:34] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:38:34] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [14/Feb/2026 22:38:37] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 02:41:32] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 07:13:31] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 07:32:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 07:32:55] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:56] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:56] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 07:32:56] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:56] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:56] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:56] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:57] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:57] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:57] "GET /2020/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:57] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:57] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:58] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:58] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:58] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:58] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:58] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 07:32:58] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 09:15:47] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 09:15:47] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 09:15:47] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 09:15:49] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 11:37:59] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 14:11:52] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 14:11:52] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 14:11:53] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 14:11:56] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 14:12:04] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 14:12:04] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 15:29:50] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 15:29:50] "GET /?ref_type=ip&ref=110.93.150.174 HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 15:29:50] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 15:29:50] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 15:29:53] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 15:48:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 16:57:36] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 16:57:36] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [15/Feb/2026 18:26:58] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [15/Feb/2026 20:17:53] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:26:53] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:26:54] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:27:14] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:28:01] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:47:16] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:47:16] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:47:16] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:47:20] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 00:47:21] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 03:34:08] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 03:52:38] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [16/Feb/2026 03:52:39] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 03:52:39] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 04:26:47] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 07:03:00] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 07:03:17] "GET /sites/favicon.ico HTTP/1.1" 404 - +127.0.0.1 - - [16/Feb/2026 07:03:18] "GET /sites/favicon.png HTTP/1.1" 404 - +127.0.0.1 - - [16/Feb/2026 07:03:24] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 07:09:56] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 08:58:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 10:04:47] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 10:04:47] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 10:04:47] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 10:04:50] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 10:16:44] "GET /favicon.ico HTTP/1.1" 304 - +127.0.0.1 - - [16/Feb/2026 10:42:30] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 13:45:48] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 14:30:34] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 19:44:40] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 20:55:41] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [16/Feb/2026 22:17:38] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 01:25:42] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 05:24:12] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [17/Feb/2026 05:24:12] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 07:42:42] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 10:35:04] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 13:02:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 13:22:01] "GET /?ref_type=ip&ref=197.2.212.34 HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 13:22:06] "GET /?ref_type=ip&ref=197.2.212.34 HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 13:22:06] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 13:22:13] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 13:49:09] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 15:57:20] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 19:45:23] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 21:37:35] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [17/Feb/2026 22:30:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 22:34:10] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [17/Feb/2026 22:34:11] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 22:34:14] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [17/Feb/2026 23:47:45] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [17/Feb/2026 23:47:46] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [18/Feb/2026 01:25:30] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 03:42:03] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [18/Feb/2026 03:42:04] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [18/Feb/2026 04:34:03] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [18/Feb/2026 05:58:07] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 06:18:28] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 06:23:34] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 07:45:27] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 08:49:38] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 14:00:13] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 17:26:12] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 17:26:16] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 17:26:16] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 17:26:19] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 19:56:38] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 20:28:02] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [18/Feb/2026 22:51:24] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [18/Feb/2026 22:51:25] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [19/Feb/2026 01:05:30] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:41:05] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:52:18] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:52:18] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:52:18] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:52:21] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:52:24] "POST /links HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 01:52:25] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 02:02:20] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [19/Feb/2026 02:02:20] "POST / HTTP/1.1" 405 - +127.0.0.1 - - [19/Feb/2026 02:34:11] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 03:54:08] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [19/Feb/2026 03:54:10] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 03:54:10] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 06:01:43] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [19/Feb/2026 06:04:02] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 06:04:05] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 06:04:07] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 08:25:52] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 09:30:48] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 09:30:48] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 09:30:48] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 09:30:51] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 10:45:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 11:07:27] "GET /static/favicon.ico HTTP/1.1" 304 - +127.0.0.1 - - [19/Feb/2026 11:54:10] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [19/Feb/2026 11:54:14] "GET /?ref_type=ip&ref=142.44.220.169 HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 13:24:24] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 14:46:15] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 16:27:00] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [19/Feb/2026 16:50:34] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [19/Feb/2026 16:50:35] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 20:30:46] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [19/Feb/2026 23:41:44] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 02:11:08] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 03:55:32] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 04:08:44] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 04:08:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 04:08:48] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 05:21:34] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 05:21:34] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 06:35:39] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 08:57:17] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 11:01:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 11:01:08] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:08] "GET /.env.local HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:08] "GET /.env.staging HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:09] "GET /.env.production HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:09] "GET /.env.development HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:09] "GET /.aws/credentials HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:10] "GET /app/.env HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 11:01:10] "GET /config.json HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 12:11:43] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 13:21:34] "GET /favicon.ico HTTP/1.1" 304 - +127.0.0.1 - - [20/Feb/2026 14:21:01] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 14:21:06] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 15:25:07] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 15:28:26] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 15:57:37] "GET /.git/config HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 16:00:36] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 16:00:41] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 17:53:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 18:16:55] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [20/Feb/2026 21:27:06] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 23:02:44] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [20/Feb/2026 23:02:48] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 02:44:25] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 03:34:26] "GET /?ref_type=ip&ref=110.93.150.109 HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 03:34:30] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 05:08:50] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 05:36:33] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 11:33:02] "GET /?ref_type=email&ref=dosangyoon@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 11:33:02] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 11:33:02] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 11:33:06] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 13:51:00] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 13:51:01] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 13:59:01] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:02:11] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:10:33] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 14:22:23] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:27:54] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:33:00] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:38:04] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:52:13] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 14:57:48] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:02:09] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 15:03:16] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:08:53] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:21:11] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:26:35] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:31:55] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:38:36] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:44:07] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:49:59] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 15:56:20] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 16:03:24] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 16:09:08] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 16:24:06] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 16:29:55] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 16:35:48] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:10] "GET /wp-includes/ID3/license.txt HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:10] "GET /feed/ HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:10] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:10] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:10] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:11] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:11] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:11] "GET /2020/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:11] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:11] "GET /2021/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:11] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:12] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:12] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:12] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:41:12] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [21/Feb/2026 17:58:04] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 19:41:42] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 21:24:47] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [21/Feb/2026 23:23:38] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 02:17:32] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 03:52:11] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 03:55:46] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [22/Feb/2026 03:55:47] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 03:55:47] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 04:35:11] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 10:27:06] "GET /favicon.ico HTTP/1.1" 304 - +127.0.0.1 - - [22/Feb/2026 10:47:25] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [22/Feb/2026 11:54:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 12:14:10] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [22/Feb/2026 12:17:45] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 19:11:54] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 20:09:52] "GET /.well-known/security.txt HTTP/1.1" 404 - +127.0.0.1 - - [22/Feb/2026 20:37:23] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 20:37:28] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [22/Feb/2026 20:37:30] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 00:56:46] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 00:59:57] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 01:22:16] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 01:22:17] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:17] "GET /xmlrpc.php?rsd HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:17] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 01:22:17] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:18] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:18] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:18] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:18] "GET /wp/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:18] "GET /news/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:18] "GET /2018/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:19] "GET /2019/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:19] "GET /shop/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:19] "GET /wp1/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:19] "GET /test/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:19] "GET /media/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:20] "GET /wp2/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:20] "GET /site/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:20] "GET /cms/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 01:22:20] "GET /sito/wp-includes/wlwmanifest.xml HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 02:20:25] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 05:34:03] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 07:21:43] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 09:23:19] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 10:27:40] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [23/Feb/2026 11:42:04] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 13:26:09] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 18:31:19] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 18:55:07] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 19:18:00] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [23/Feb/2026 23:01:06] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 01:21:41] "GET /?ref_type=ip&ref=57.141.14.66 HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 01:34:29] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [24/Feb/2026 01:34:33] "GET /?ref_type=ip&ref=51.222.95.126 HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 08:09:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 08:50:18] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [24/Feb/2026 11:54:01] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 13:36:11] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 14:16:06] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [24/Feb/2026 14:16:10] "GET /?ref_type=ip&ref=142.44.220.169 HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 16:00:14] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 19:03:17] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 19:38:53] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 19:47:49] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 19:50:54] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 20:19:11] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [24/Feb/2026 20:19:12] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [24/Feb/2026 23:41:21] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 01:09:02] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 01:14:17] "GET /?ref_type=ip HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 02:44:02] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [25/Feb/2026 02:46:55] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 03:07:41] "GET /.env HTTP/1.1" 404 - +127.0.0.1 - - [25/Feb/2026 03:57:13] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [25/Feb/2026 03:57:16] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 03:57:16] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 06:47:25] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [25/Feb/2026 07:02:50] "GET /robots.txt HTTP/1.1" 404 - +127.0.0.1 - - [25/Feb/2026 09:49:01] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 09:49:02] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 11:25:51] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 11:58:19] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 12:14:44] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 12:30:37] "GET /?ref_type=email&ref=dosangyoon2@gmail.com HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 12:30:37] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 12:30:37] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 12:30:37] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 12:30:40] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 15:28:07] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 16:14:54] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 16:22:16] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 16:24:20] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:02:28] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:08:47] "GET /favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:09:07] "GET /?ref_type=ip&ref=121.165.198.177 HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:09:07] "GET /static/styles.css HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:09:07] "GET /static/app.js HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:09:07] "GET /static/favicon.ico HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 17:09:10] "GET /links?limit=30&offset=0 HTTP/1.1" 200 - +127.0.0.1 - - [25/Feb/2026 18:53:32] "GET /favicon.ico HTTP/1.1" 200 - diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..4a05d18 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +Flask +python-dotenv +psycopg2-binary +requests +beautifulsoup4 diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..cb83ac5 --- /dev/null +++ b/run.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +set -euo pipefail + +cd /home/dsyoon/workspace/news_link + +PORT="${PORT:-8021}" + +if lsof -ti tcp:"${PORT}" >/dev/null 2>&1; then + echo "Stopping existing server on port ${PORT}..." + lsof -ti tcp:"${PORT}" | xargs -r kill -9 + sleep 1 +fi + +nohup /home/dsyoon/workspace/miniconda3/envs/ncue/bin/python app.py > nohup.out & diff --git a/static/app.js b/static/app.js new file mode 100644 index 0000000..bdac5b1 --- /dev/null +++ b/static/app.js @@ -0,0 +1,219 @@ +const linkList = document.getElementById("linkList"); +const emptyState = document.getElementById("emptyState"); +const linkForm = document.getElementById("linkForm"); +const urlInput = document.getElementById("urlInput"); +const formError = document.getElementById("formError"); +const loadingEl = document.getElementById("loading"); +const scrollSentinel = document.getElementById("scrollSentinel"); +const PLACEHOLDER_DATA_URI = + "data:image/svg+xml;utf8," + + "" + + "" + + "" + + "" + + "" + + "No%20Image" + + ""; + +function setLoading(isLoading) { + if (!loadingEl) return; + loadingEl.classList.toggle("d-none", !isLoading); +} + +function extractFirstUrl(text) { + if (!text) return ""; + const trimmed = String(text).trim(); + + // 1) http/https URL + const httpMatch = trimmed.match(/https?:\/\/[^\s<>"')\]]+/i); + if (httpMatch && httpMatch[0]) return httpMatch[0]; + + // 2) www. URL (no scheme) + const wwwMatch = trimmed.match(/www\.[^\s<>"')\]]+/i); + if (wwwMatch && wwwMatch[0]) return `https://${wwwMatch[0]}`; + + return ""; +} + +function setEmptyStateVisible(visible, message) { + if (!emptyState) return; + if (message) emptyState.textContent = message; + emptyState.classList.toggle("d-none", !visible); +} + +function appendLinks(links) { + if (!links.length) return; + setEmptyStateVisible(false); + + links.forEach((link) => { + const col = document.createElement("div"); + col.className = "col-12 col-md-6 col-lg-4"; + + const card = document.createElement("div"); + card.className = "card h-100 shadow-sm"; + + const image = document.createElement("img"); + image.className = "card-img-top"; + image.alt = "미리보기 이미지"; + const needsFallback = + !link.image || link.image === "/static/placeholder.svg"; + image.src = needsFallback ? PLACEHOLDER_DATA_URI : link.image; + if (!needsFallback) { + image.addEventListener("error", () => { + if (image.dataset.fallbackApplied) { + return; + } + image.dataset.fallbackApplied = "1"; + image.onerror = null; + image.src = PLACEHOLDER_DATA_URI; + }); + } + + const body = document.createElement("div"); + body.className = "card-body d-flex flex-column"; + + const title = document.createElement("h5"); + title.className = "card-title mb-2"; + title.textContent = link.title || link.url; + + const description = document.createElement("p"); + description.className = "card-text text-secondary flex-grow-1"; + description.textContent = link.description || "설명 없음"; + + const linkBtn = document.createElement("a"); + linkBtn.className = "btn btn-outline-primary btn-sm"; + linkBtn.href = link.url; + linkBtn.target = "_blank"; + linkBtn.rel = "noopener"; + linkBtn.textContent = "원문 보기"; + + body.append(title, description, linkBtn); + card.append(image, body); + col.appendChild(card); + linkList.appendChild(col); + }); +} + +const PAGE_SIZE = 30; +let nextOffset = 0; +let hasMore = true; +let loading = false; + +function resetPagination() { + nextOffset = 0; + hasMore = true; + loading = false; + linkList.innerHTML = ""; +} + +async function loadNextPage() { + if (loading || !hasMore) return; + loading = true; + setLoading(true); + setEmptyStateVisible(false); + + try { + const res = await fetch(`/links?limit=${PAGE_SIZE}&offset=${nextOffset}`); + const data = await res.json(); + if (!res.ok) { + const detail = data?.detail ? ` (${data.detail})` : ""; + throw new Error((data.error || "링크를 불러오지 못했습니다.") + detail); + } + + const items = Array.isArray(data) ? data : data.items || []; + appendLinks(items); + + if (Array.isArray(data)) { + nextOffset += items.length; + hasMore = items.length === PAGE_SIZE; + } else { + nextOffset = data.next_offset ?? nextOffset + items.length; + hasMore = Boolean(data.has_more); + } + + if (nextOffset === 0 && items.length === 0) { + setEmptyStateVisible(true, "아직 저장된 링크가 없습니다."); + } + } catch (err) { + if (nextOffset === 0) { + setEmptyStateVisible(true, err.message); + } + hasMore = false; + } finally { + loading = false; + setLoading(false); + } +} + +linkForm.addEventListener("submit", async (event) => { + event.preventDefault(); + formError.textContent = ""; + + const url = urlInput.value.trim(); + if (!url) { + formError.textContent = "URL을 입력해주세요."; + return; + } + + try { + const res = await fetch("/links", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ url }), + }); + const data = await res.json(); + if (!res.ok) { + const detail = data?.detail ? ` (${data.detail})` : ""; + throw new Error((data.error || "저장에 실패했습니다.") + detail); + } + + resetPagination(); + await loadNextPage(); + + const modalElement = document.getElementById("linkModal"); + const modal = bootstrap.Modal.getOrCreateInstance(modalElement); + modal.hide(); + urlInput.value = ""; + } catch (err) { + formError.textContent = err.message; + } +}); + +if (urlInput) { + urlInput.addEventListener("paste", (event) => { + const text = event.clipboardData?.getData("text") ?? ""; + const extracted = extractFirstUrl(text); + if (!extracted) return; + event.preventDefault(); + urlInput.value = extracted; + urlInput.dispatchEvent(new Event("input", { bubbles: true })); + }); +} + +function setupInfiniteScroll() { + if (!scrollSentinel) return; + const observer = new IntersectionObserver( + (entries) => { + const entry = entries[0]; + if (entry && entry.isIntersecting) { + loadNextPage(); + } + }, + { root: null, rootMargin: "400px 0px", threshold: 0 } + ); + observer.observe(scrollSentinel); +} + +function init() { + resetPagination(); + setupInfiniteScroll(); + loadNextPage(); +} + +if (document.readyState === "loading") { + document.addEventListener("DOMContentLoaded", init); +} else { + init(); +} diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..76b29ad Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/placeholder.svg b/static/placeholder.svg new file mode 100644 index 0000000..a662fd9 --- /dev/null +++ b/static/placeholder.svg @@ -0,0 +1,7 @@ + + + + + + No Image + diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..551f71c --- /dev/null +++ b/static/styles.css @@ -0,0 +1,21 @@ +body { + background: #f8f9fb; +} + +.floating-btn { + position: fixed; + right: 24px; + bottom: 24px; + width: 56px; + height: 56px; + font-size: 32px; + line-height: 1; + display: flex; + align-items: center; + justify-content: center; +} + +.card-img-top { + height: 180px; + object-fit: cover; +} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..58bc940 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,132 @@ + + + + + + News Link + + + + + +
+
+
+

뉴스 링크

+

저장한 링크의 요약을 한눈에 확인하세요.

+
+
+ + {% if error_message %} +
{{ error_message }}
+ {% endif %} + +
+ 아직 저장된 링크가 없습니다. +
+ + + +
+ 불러오는 중... +
+
+
+ + + + + + + + +