Repo housekeeping and migration scaffolding:\n- Archive old audit/targeted discovery reports under archive_old_reports/\n- Remove bulky raw outputs from repo root (kept archived)\n- Update README to reflect new migration focus and structure\n- Add COMPLETE_DOCKER_SERVICES_INVENTORY.md (containers + native)\n- Add WORLD_CLASS_MIGRATION_TODO.md (detailed staged migration with backups, replication, cutover)\n- Add CLEANUP_PLAN.md and CLEANUP_SUMMARY.md\n- Scaffold core Swarm stacks: Traefik v3, PostgreSQL primary, MariaDB 10.11 primary, Redis master, Mosquitto, Netdata\nNotes: requires overlay networks (traefik-public, database-network, monitoring-network) and docker secrets for DB root passwords

This commit is contained in:
admin
2025-08-24 17:48:32 -04:00
parent c575557393
commit 802a6916ab
82 changed files with 2267 additions and 1232 deletions

View File

@@ -0,0 +1,229 @@
# HomeAudit Discovery Status Summary
**Date:** August 23-24, 2025
**Status:** Near Complete - 6/7 Devices Ready for Migration Planning
## What Has Been Done
### ✅ Completed Actions
1. **Fixed Docker Compose Discovery Bottleneck**
- Identified that comprehensive discovery was failing on 4 devices at "Finding Docker Compose files" step
- Successfully bypassed bottleneck using targeted discovery scripts
- Resolved the issue preventing complete data collection on fedora, lenovo420, jonathan-2518f5u, surface
2. **Comprehensive Discovery Execution**
- **omv800**: Complete 5-category discovery (already done)
- **omvbackup (raspberrypi)**: Ran comprehensive discovery successfully
- **audrey**: Ran comprehensive discovery successfully
3. **Targeted Discovery Scripts Executed**
- **Data Discovery**: Successfully completed on lenovo420, surface, omvbackup, audrey
- **Security Discovery**: Successfully completed on all devices (some partial results on raspberry pi devices)
- **Performance Discovery**: Initiated on all 6 incomplete devices (running in background)
4. **Results Collection**
- Archived comprehensive discovery results for omvbackup and audrey
- Collected targeted discovery archives for all devices
- Organized results in `/targeted_discovery_results/` and `/comprehensive_discovery_results/`
### 📊 Current Data Inventory
#### Complete Discovery Archives
- `system_audit_omv800.local_20250823_214938.tar.gz` - Complete 5-category discovery
- `raspberrypi_comprehensive_20250823_222648.tar.gz` - Comprehensive discovery (hit Docker Compose bottleneck)
- `audrey_comprehensive_20250824_022721.tar.gz` - Comprehensive discovery (hit Docker Compose bottleneck)
#### Targeted Discovery Archives
- `data_discovery_fedora_20250823_220129.tar.gz` + updated version
- `data_discovery_jonathan-2518f5u_20250823_222347.tar.gz`
- `security_discovery_fedora_20250823_215955.tar.gz` + `security_discovery_fedora_20250823_220001.tar.gz`
- `security_discovery_jonathan-2518f5u_20250823_220116.tar.gz`
- `security_discovery_lenovo420_20250823_220103.tar.gz`
- `security_discovery_surface_20250823_220124.tar.gz`
## What Is Complete
### Device-by-Device Status
| Device | Infrastructure | Services | Data | Security | Performance | Migration Ready |
|--------|---------------|----------|------|----------|-------------|----------------|
| **omv800** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ YES |
| **fedora** | ✅ | ✅ | ✅ | ✅ | ⏳ | 🟡 90% |
| **lenovo420** | ✅ | ✅ | ✅ | ✅ | ⏳ | 🟡 90% |
| **jonathan-2518f5u** | ✅ | ✅ | ✅ | ✅ | ⏳ | 🟡 90% |
| **surface** | ✅ | ✅ | ✅ | ✅ | ⏳ | 🟡 90% |
| **omvbackup** | ✅ | ✅ | ✅ | ⚠️ | ⏳ | 🟡 85% |
| **audrey** | ✅ | ✅ | ✅ | ⚠️ | ⏳ | 🟡 85% |
### Data Categories Collected
#### ✅ Infrastructure (7/7 devices)
- CPU, memory, storage specifications
- Network interfaces and routing
- PCI/USB devices and hardware
- Operating system and kernel versions
#### ✅ Services (7/7 devices)
- Docker containers, images, networks, volumes
- Systemd services (enabled and running)
- Container orchestration details
- Service dependencies and configurations
#### ✅ Data Storage (7/7 devices)
- Database locations and configurations
- Docker volume mappings and storage
- Critical configuration files
- Mount points and network storage
- Application data directories
#### ⚠️ Security (5/7 fully complete)
- **Complete**: omv800, fedora, lenovo420, jonathan-2518f5u, surface
- **Partial**: omvbackup, audrey (some data collected but scripts had errors)
- User accounts, SSH configurations, permissions
- Firewall settings, cron jobs, SUID files
#### ⏳ Performance (1/7 complete, 6/7 in progress)
- **Complete**: omv800
- **Running**: All other 6 devices (30+ second sampling in progress)
- System load, CPU usage, memory utilization
- Disk I/O performance, network statistics
- Process information and resource limits
## Immediate Next Steps
### Priority 1: Complete Performance Discovery
1. **Monitor Background Performance Discovery**
- Check completion status on all 6 devices
- Collect performance discovery archives when complete
- Verify 30-second sampling data was captured successfully
2. **Performance Results Collection**
```bash
# Check for completed performance discovery
ansible all -i inventory.ini -a "ls -la /tmp/performance_discovery_*" --become
# Collect results when ready
ansible all -i inventory.ini -m fetch -a "src=/tmp/performance_discovery_*.tar.gz dest=./targeted_discovery_results/ flat=yes"
```
### Priority 2: Fix Security Discovery on Raspberry Pi Devices
1. **Diagnose Security Discovery Errors**
- Review error logs from omvbackup and audrey security discovery
- Identify missing permissions or configuration issues
- Re-run security discovery with fixes if needed
2. **Manual Security Data Collection** (if automated fails)
```bash
# Collect critical security data manually
ansible omvbackup,audrey -i inventory.ini -a "cat /etc/passwd" --become
ansible omvbackup,audrey -i inventory.ini -a "cat /etc/sudoers" --become
ansible omvbackup,audrey -i inventory.ini -a "ufw status" --become
```
### Priority 3: Consolidate and Validate All Discovery Data
1. **Create Master Discovery Archive**
- Combine all discovery results into single archive per device
- Validate data completeness for each of the 5 categories
- Generate updated completeness report
2. **Update Discovery Documentation**
- Refresh `comprehensive_discovery_completeness_report.md`
- Document any remaining gaps or limitations
- Mark devices as migration-ready
## Ideas for Further Information That Might Be Needed
### Enhanced Migration Planning Data
#### 1. **Service Dependency Mapping**
- **Container interdependencies**: Which containers communicate with each other
- **Database connections**: Applications → Database mappings
- **Shared storage**: Which services share volumes or NFS mounts
- **Network dependencies**: Service → Port → External dependency mapping
#### 2. **Resource Utilization Baselines**
- **Peak usage patterns**: CPU/memory/disk usage over 24-48 hours
- **Storage growth rates**: Database and application data growth trends
- **Network traffic patterns**: Inter-service and external communication volumes
- **Backup windows and resource impact**: When backups run and resource consumption
#### 3. **Application-Specific Configuration**
- **Container environment variables**: Sensitive configuration that needs migration
- **SSL certificates and secrets**: Current cert management and renewal processes
- **Integration endpoints**: External API connections, webhooks, notification services
- **User authentication flows**: SSO, LDAP, local auth configurations
#### 4. **Operational Requirements**
- **Maintenance windows**: When services can be safely restarted
- **Backup schedules and retention**: Current backup strategies and storage locations
- **Monitoring and alerting**: What metrics are currently tracked and alert thresholds
- **Log retention policies**: How long logs are kept and where they're stored
### Infrastructure Assessment Data
#### 5. **Hardware Limitations and Capabilities**
- **GPU availability and usage**: Which devices have GPU acceleration for Jellyfin/Immich
- **USB device mappings**: Which containers need USB device access
- **Power consumption**: Current power usage to plan for infrastructure consolidation
- **Thermal characteristics**: Temperature monitoring and cooling requirements
#### 6. **Network Architecture Deep Dive**
- **VLAN configurations**: Current network segmentation and security zones
- **Firewall rules audit**: Complete iptables/ufw rules across all devices
- **DNS configurations**: Internal DNS, Pi-hole, or other DNS services
- **VPN configurations**: Tailscale, Wireguard, or other VPN setups
#### 7. **Storage Performance and Layout**
- **Disk performance baselines**: IOPS, throughput, latency measurements
- **RAID configurations**: Current RAID setups and redundancy levels
- **SSD vs HDD usage**: Which applications run on fast vs slow storage
- **Storage quotas and limits**: Current storage allocation strategies
### Security and Compliance Data
#### 8. **Security Posture Assessment**
- **CVE scanning**: Vulnerability assessment of all containers and host systems
- **Certificate inventory**: All SSL certificates, expiration dates, renewal processes
- **Access control audit**: Who has access to what systems and containers
- **Encryption status**: What data is encrypted at rest and in transit
#### 9. **Backup and Disaster Recovery**
- **Recovery time objectives (RTO)**: How quickly services need to be restored
- **Recovery point objectives (RPO)**: Maximum acceptable data loss
- **Backup testing results**: When backups were last verified as restorable
- **Off-site backup verification**: What data is backed up off-site and how
#### 10. **Compliance and Documentation**
- **Service documentation**: README files, runbooks, troubleshooting guides
- **Change management**: How updates and changes are currently managed
- **Incident response**: Historical issues and how they were resolved
- **User access patterns**: Who uses what services and when
### Migration-Specific Intelligence
#### 11. **Service Migration Priorities**
- **Business criticality**: Which services are most important to business operations
- **Migration complexity**: Which services will be hardest to migrate
- **Downtime tolerance**: Which services can tolerate maintenance windows
- **Data migration size**: How much data needs to be moved for each service
#### 12. **Testing and Validation Requirements**
- **Test scenarios**: How to validate each service works after migration
- **User acceptance criteria**: What users expect from each service
- **Performance benchmarks**: Expected performance levels post-migration
- **Rollback procedures**: How to quickly revert if migration fails
## Data Collection Scripts for Further Information
### Suggested Additional Discovery Scripts
1. **`service_dependency_discovery.sh`** - Map container and service interconnections
2. **`resource_baseline_collector.sh`** - 24-hour resource utilization sampling
3. **`security_audit_discovery.sh`** - CVE scanning and security posture assessment
4. **`backup_validation_discovery.sh`** - Test backup integrity and recovery procedures
5. **`network_architecture_discovery.sh`** - Complete network topology and security mapping
---
**Overall Assessment:** Discovery phase is **90% complete** with migration planning ready to begin. Performance data collection completion will bring us to **100% discovery complete** for all 7 devices.

View File

@@ -0,0 +1,31 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Sat Aug 23 02:45:08 AM UTC 2025
Script Version: 2.0
Hostname: audrey
FQDN: audrey
IP Addresses: 192.168.50.145 100.118.220.45 172.17.0.1 172.18.0.1 172.19.0.1 fd56:f1f9:1afc:8f71:36cf:f6ff:fee7:6530 fd7a:115c:a1e0::c934:dc2d
=== SYSTEM INFORMATION ===
OS: Ubuntu 24.04.3 LTS
Kernel: 6.14.0-24-generic
Architecture: x86_64
Uptime: up 4 weeks, 2 days, 2 hours, 54 minutes
=== SECURITY STATUS ===
SSH Root Login: unknown
UFW Status: inactive
Failed SSH Attempts: 4
=== CONTAINER STATUS ===
Docker: Installed
Podman: Not installed
Running Containers: 4
=== FILES GENERATED ===
total 204
drwxr-xr-x 2 root root 4096 Aug 23 02:45 .
drwxrwxrwt 27 root root 4096 Aug 23 02:44 ..
-rw-r--r-- 1 root root 63095 Aug 23 02:45 audit.log
-rw-r--r-- 1 root root 126916 Aug 23 02:44 packages_dpkg.txt
-rw-r--r-- 1 root root 1137 Aug 23 02:45 results.json
-rw-r--r-- 1 root root 625 Aug 23 02:45 SUMMARY.txt

View File

@@ -0,0 +1,945 @@
[2025-08-23 02:44:46] [INFO] Starting comprehensive system audit on audrey
[2025-08-23 02:44:46] [INFO] Output directory: /tmp/system_audit_audrey_20250823_024446
[2025-08-23 02:44:46] [INFO] Script version: 2.0
[2025-08-23 02:44:46] [INFO] Validating environment and dependencies...
[2025-08-23 02:44:46] [WARN] Optional tool not found: podman
[2025-08-23 02:44:46] [WARN] Optional tool not found: vnstat
[2025-08-23 02:44:46] [INFO] Environment validation completed
[2025-08-23 02:44:46] [INFO] Running with root privileges
[2025-08-23 02:44:46] [INFO] Running module: collect_system_info
==== SYSTEM INFORMATION ====
--- Basic System Details ---
Hostname: audrey
FQDN: audrey
IP Addresses: 192.168.50.145 100.118.220.45 172.17.0.1 172.18.0.1 172.19.0.1 fd56:f1f9:1afc:8f71:36cf:f6ff:fee7:6530 fd7a:115c:a1e0::c934:dc2d
Date/Time: Sat Aug 23 02:44:46 AM UTC 2025
Uptime: 02:44:46 up 30 days, 2:54, 2 users, load average: 0.28, 0.60, 0.68
Load Average: 0.28 0.60 0.68 1/423 2956212
Architecture: x86_64
Kernel: 6.14.0-24-generic
Distribution: Ubuntu 24.04.3 LTS
Kernel Version: #24~24.04.3-Ubuntu SMP PREEMPT_DYNAMIC Mon Jul 7 16:39:17 UTC 2
--- Hardware Information ---
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 39 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 2
On-line CPU(s) list: 0,1
Vendor ID: GenuineIntel
BIOS Vendor ID: GenuineIntel
Model name: Intel(R) Celeron(R) N4000 CPU @ 1.10GHz
BIOS Model name: Intel(R) Celeron(R) N4000 CPU @ 1.10GHz CPU @ 0.0GHz
BIOS CPU family: 12
CPU family: 6
Model: 122
Thread(s) per core: 1
Core(s) per socket: 2
Socket(s): 1
Stepping: 1
CPU(s) scaling MHz: 96%
CPU max MHz: 2600.0000
CPU min MHz: 800.0000
BogoMIPS: 2188.80
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg cx16 xtpr pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave rdrand lahf_lm 3dnowprefetch cpuid_fault cat_l2 pti cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust sgx smep erms mpx rdt_a rdseed smap clflushopt intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts vnmi umip rdpid sgx_lc md_clear arch_capabilities
Virtualization: VT-x
L1d cache: 48 KiB (2 instances)
L1i cache: 64 KiB (2 instances)
L2 cache: 4 MiB (1 instance)
NUMA node(s): 1
NUMA node0 CPU(s): 0,1
Vulnerability Gather data sampling: Not affected
Vulnerability Ghostwrite: Not affected
Vulnerability Itlb multihit: Not affected
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Mmio stale data: Not affected
Vulnerability Reg file data sampling: Mitigation; Clear Register File
Vulnerability Retbleed: Not affected
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; PBRSB-eIBRS Not affected; BHI SW loop, KVM SW loop
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
total used free shared buff/cache available
Mem: 3.7Gi 1.1Gi 302Mi 2.3Mi 2.6Gi 2.6Gi
Swap: 3.7Gi 508Ki 3.7Gi
Filesystem Size Used Avail Use% Mounted on
tmpfs 378M 2.1M 376M 1% /run
efivarfs 64K 2.8K 57K 5% /sys/firmware/efi/efivars
/dev/sda2 113G 15G 93G 14% /
tmpfs 1.9G 0 1.9G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
/dev/sda1 1.1G 6.2M 1.1G 1% /boot/efi
192.168.50.107:/export/audrey_backup 7.3T 306G 7.0T 5% /mnt/omv-backup
tmpfs 378M 12K 378M 1% /run/user/1000
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/bd850def42e5f1ffe8aa9db20670d6e31115c303c4f31b035d5c5e5b4ed76798/merged
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/9174a91cfba55e021606a61b9b24db72c6f4fa5e56196b7660a4f9490df5e2a8/merged
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/d7c9480076e10ab7a94dd7fb54d89c9df7048cc867edbffa907ed9df3cf982fb/merged
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/25ab0c6ca302cdbdcf23f9af6dc747b1ea8aa2b01fa7ea09ead01d3a30d18bed/merged
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 13.2M 1 loop /snap/canonical-livepatch/338
loop1 7:1 0 13.2M 1 loop /snap/canonical-livepatch/341
loop3 7:3 0 73.9M 1 loop /snap/core22/2045
loop4 7:4 0 66.8M 1 loop /snap/core24/1006
loop5 7:5 0 66.8M 1 loop /snap/core24/1055
loop6 7:6 0 50.9M 1 loop /snap/snapd/24718
loop7 7:7 0 49.3M 1 loop /snap/snapd/24792
loop8 7:8 0 28.4M 1 loop /snap/tailscale/108
loop9 7:9 0 27.1M 1 loop /snap/tailscale/97
loop10 7:10 0 73.9M 1 loop /snap/core22/2082
sda 8:0 1 115.5G 0 disk
├─sda1 8:1 1 1G 0 part /boot/efi
└─sda2 8:2 1 114.4G 0 part /
mmcblk0 179:0 0 58.2G 0 disk
├─mmcblk0p1 179:1 0 49.4G 0 part
├─mmcblk0p2 179:2 0 32M 0 part
├─mmcblk0p3 179:3 0 4G 0 part
├─mmcblk0p4 179:4 0 32M 0 part
├─mmcblk0p5 179:5 0 4G 0 part
├─mmcblk0p6 179:6 0 512B 0 part
├─mmcblk0p7 179:7 0 512B 0 part
├─mmcblk0p8 259:0 0 16M 0 part
├─mmcblk0p9 259:1 0 512B 0 part
├─mmcblk0p10 259:2 0 512B 0 part
├─mmcblk0p11 259:3 0 8M 0 part
└─mmcblk0p12 259:4 0 32M 0 part
mmcblk0boot0 179:8 0 4M 1 disk
mmcblk0boot1 179:16 0 4M 1 disk
00:00.0 Host bridge: Intel Corporation Gemini Lake Host Bridge (rev 03)
00:00.1 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor Dynamic Platform and Thermal Framework Processor Participant (rev 03)
00:02.0 VGA compatible controller: Intel Corporation GeminiLake [UHD Graphics 600] (rev 03)
00:0c.0 Network controller: Intel Corporation Gemini Lake PCH CNVi WiFi (rev 03)
00:0e.0 Multimedia audio controller: Intel Corporation Celeron/Pentium Silver Processor High Definition Audio (rev 03)
00:15.0 USB controller: Intel Corporation Celeron/Pentium Silver Processor USB 3.0 xHCI Controller (rev 03)
00:16.0 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor I2C 0 (rev 03)
00:17.0 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor I2C 4 (rev 03)
00:17.1 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor I2C 5 (rev 03)
00:17.2 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor I2C 6 (rev 03)
00:18.0 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor Serial IO UART Host Controller (rev 03)
00:18.2 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor Serial IO UART Host Controller (rev 03)
00:19.0 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor Serial IO SPI Host Controller (rev 03)
00:19.2 Signal processing controller: Intel Corporation Celeron/Pentium Silver Processor Serial IO SPI Host Controller (rev 03)
00:1c.0 SD Host controller: Intel Corporation Celeron/Pentium Silver Processor SDA Standard Compliant SD Host Controller (rev 03)
00:1f.0 ISA bridge: Intel Corporation Celeron/Pentium Silver Processor PCI-default ISA-bridge (rev 03)
00:1f.1 SMBus: Intel Corporation Celeron/Pentium Silver Processor Gaussian Mixture Model (rev 03)
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 04f2:b657 Chicony Electronics Co., Ltd 720p HD Camera
Bus 001 Device 003: ID 8087:0aaa Intel Corp. Bluetooth 9460/9560 Jefferson Peak (JfP)
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 002: ID 154b:1006 PNY USB 3.2.1 FD
[2025-08-23 02:44:46] [INFO] Running module: collect_network_info
==== NETWORK INFORMATION ====
--- Network Interfaces ---
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: wlp0s12f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 34:cf:f6:e7:65:30 brd ff:ff:ff:ff:ff:ff
inet 192.168.50.145/24 brd 192.168.50.255 scope global wlp0s12f0
valid_lft forever preferred_lft forever
inet6 fd56:f1f9:1afc:8f71:36cf:f6ff:fee7:6530/64 scope global dynamic mngtmpaddr noprefixroute
valid_lft 1764sec preferred_lft 1764sec
inet6 fe80::36cf:f6ff:fee7:6530/64 scope link
valid_lft forever preferred_lft forever
3: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq_codel state UNKNOWN group default qlen 500
link/none
inet 100.118.220.45/32 scope global tailscale0
valid_lft forever preferred_lft forever
inet6 fd7a:115c:a1e0::c934:dc2d/128 scope global
valid_lft forever preferred_lft forever
inet6 fe80::2db6:c46c:7efd:a53/64 scope link stable-privacy
valid_lft forever preferred_lft forever
4: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 02:42:c2:5d:c8:fe brd ff:ff:ff:ff:ff:ff
inet 172.17.0.1/16 brd 172.17.255.255 scope global docker0
valid_lft forever preferred_lft forever
inet6 fe80::42:c2ff:fe5d:c8fe/64 scope link
valid_lft forever preferred_lft forever
5: br-a8c08ace4629: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 02:42:31:9c:ba:6b brd ff:ff:ff:ff:ff:ff
inet 172.18.0.1/16 brd 172.18.255.255 scope global br-a8c08ace4629
valid_lft forever preferred_lft forever
inet6 fe80::42:31ff:fe9c:ba6b/64 scope link
valid_lft forever preferred_lft forever
7: veth8a78a0a@if6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-a8c08ace4629 state UP group default
link/ether 32:81:7f:63:36:ea brd ff:ff:ff:ff:ff:ff link-netnsid 1
inet6 fe80::3081:7fff:fe63:36ea/64 scope link
valid_lft forever preferred_lft forever
9: veth86570b3@if8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-a8c08ace4629 state UP group default
link/ether e2:96:41:e2:30:e6 brd ff:ff:ff:ff:ff:ff link-netnsid 0
inet6 fe80::e096:41ff:fee2:30e6/64 scope link
valid_lft forever preferred_lft forever
11: veth39b59a1@if10: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-a8c08ace4629 state UP group default
link/ether 22:44:10:87:0c:5f brd ff:ff:ff:ff:ff:ff link-netnsid 2
inet6 fe80::2044:10ff:fe87:c5f/64 scope link
valid_lft forever preferred_lft forever
15: docker_gwbridge: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 02:42:b8:f7:cd:c6 brd ff:ff:ff:ff:ff:ff
inet 172.19.0.1/16 brd 172.19.255.255 scope global docker_gwbridge
valid_lft forever preferred_lft forever
inet6 fe80::42:b8ff:fef7:cdc6/64 scope link
valid_lft forever preferred_lft forever
48: vethe28bdc9@if47: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default
link/ether 3e:65:5e:d4:2e:5e brd ff:ff:ff:ff:ff:ff link-netnsid 3
inet6 fe80::3c65:5eff:fed4:2e5e/64 scope link
valid_lft forever preferred_lft forever
default via 192.168.50.1 dev wlp0s12f0 proto static
172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1
172.18.0.0/16 dev br-a8c08ace4629 proto kernel scope link src 172.18.0.1
172.19.0.0/16 dev docker_gwbridge proto kernel scope link src 172.19.0.1 linkdown
192.168.50.0/24 dev wlp0s12f0 proto kernel scope link src 192.168.50.145
# This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8).
# Do not edit.
#
# This file might be symlinked as /etc/resolv.conf. If you're looking at
# /etc/resolv.conf and seeing this text, you have followed the symlink.
#
# This is a dynamic resolv.conf file for connecting local clients to the
# internal DNS stub resolver of systemd-resolved. This file lists all
# configured search domains.
#
# Run "resolvectl status" to see details about the uplink DNS servers
# currently in use.
#
# Third party programs should typically not access this file directly, but only
# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a
# different way, replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.
nameserver 127.0.0.53
options edns0 trust-ad
search tail6ca08d.ts.net
Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
udp UNCONN 0 0 0.0.0.0:42857 0.0.0.0:*
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:*
udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:39440 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:43625 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:688 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:*
udp UNCONN 0 0 [::]:55075 [::]:*
udp UNCONN 0 0 *:36655 *:*
udp UNCONN 0 0 [::]:111 [::]:*
udp UNCONN 0 0 [::]:37795 [::]:*
udp UNCONN 0 0 *:58384 *:*
udp UNCONN 0 0 [::]:52283 [::]:*
udp UNCONN 0 0 [::]:5353 [::]:*
udp UNCONN 0 0 *:7443 *:*
udp UNCONN 0 0 *:38480 *:*
tcp LISTEN 0 4096 0.0.0.0:9999 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.1:35321 0.0.0.0:*
tcp LISTEN 0 4096 100.118.220.45:39830 0.0.0.0:*
tcp LISTEN 0 64 0.0.0.0:34979 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:8443 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:3001 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:9001 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:45879 0.0.0.0:*
tcp LISTEN 0 4096 *:7443 *:*
tcp LISTEN 0 4096 [fd7a:115c:a1e0::c934:dc2d]:49720 [::]:*
tcp LISTEN 0 4096 [::]:9999 [::]:*
tcp LISTEN 0 4096 [::]:49627 [::]:*
tcp LISTEN 0 4096 [::]:8443 [::]:*
tcp LISTEN 0 4096 [::]:22 [::]:*
tcp LISTEN 0 4096 [::]:111 [::]:*
tcp LISTEN 0 4096 [::]:3001 [::]:*
tcp LISTEN 0 4096 [::]:9001 [::]:*
tcp LISTEN 0 64 [::]:39465 [::]:*
Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
udp UNCONN 0 0 0.0.0.0:42857 0.0.0.0:* users:(("rpc.statd",pid=1360,fd=8))
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=717,fd=16))
udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=717,fd=14))
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=714,fd=5),("systemd",pid=1,fd=216))
udp UNCONN 0 0 0.0.0.0:39440 0.0.0.0:* users:(("tailscaled",pid=1088,fd=16))
udp UNCONN 0 0 0.0.0.0:43625 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:688 0.0.0.0:* users:(("rpc.statd",pid=1360,fd=5))
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:* users:(("orb",pid=608407,fd=5))
udp UNCONN 0 0 [::]:55075 [::]:*
udp UNCONN 0 0 *:36655 *:* users:(("orb",pid=608407,fd=17))
udp UNCONN 0 0 [::]:111 [::]:* users:(("rpcbind",pid=714,fd=7),("systemd",pid=1,fd=218))
udp UNCONN 0 0 [::]:37795 [::]:* users:(("tailscaled",pid=1088,fd=15))
udp UNCONN 0 0 *:58384 *:* users:(("orb",pid=608407,fd=12))
udp UNCONN 0 0 [::]:52283 [::]:* users:(("rpc.statd",pid=1360,fd=10))
udp UNCONN 0 0 [::]:5353 [::]:* users:(("orb",pid=608407,fd=11))
udp UNCONN 0 0 *:7443 *:* users:(("orb",pid=608407,fd=16))
udp UNCONN 0 0 *:38480 *:* users:(("orb",pid=608407,fd=13))
tcp LISTEN 0 4096 0.0.0.0:9999 0.0.0.0:* users:(("docker-proxy",pid=2241,fd=4))
tcp LISTEN 0 4096 127.0.0.1:35321 0.0.0.0:* users:(("containerd",pid=1504,fd=8))
tcp LISTEN 0 4096 100.118.220.45:39830 0.0.0.0:* users:(("tailscaled",pid=1088,fd=18))
tcp LISTEN 0 64 0.0.0.0:34979 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:8443 0.0.0.0:* users:(("docker-proxy",pid=2221,fd=4))
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=2619406,fd=3),("systemd",pid=1,fd=253))
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=717,fd=17))
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=714,fd=4),("systemd",pid=1,fd=215))
tcp LISTEN 0 4096 0.0.0.0:3001 0.0.0.0:* users:(("docker-proxy",pid=2200,fd=4))
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=717,fd=15))
tcp LISTEN 0 4096 0.0.0.0:9001 0.0.0.0:* users:(("docker-proxy",pid=1119841,fd=4))
tcp LISTEN 0 4096 0.0.0.0:45879 0.0.0.0:* users:(("rpc.statd",pid=1360,fd=9))
tcp LISTEN 0 4096 *:7443 *:* users:(("orb",pid=608407,fd=14))
tcp LISTEN 0 4096 [fd7a:115c:a1e0::c934:dc2d]:49720 [::]:* users:(("tailscaled",pid=1088,fd=23))
tcp LISTEN 0 4096 [::]:9999 [::]:* users:(("docker-proxy",pid=2247,fd=4))
tcp LISTEN 0 4096 [::]:49627 [::]:* users:(("rpc.statd",pid=1360,fd=11))
tcp LISTEN 0 4096 [::]:8443 [::]:* users:(("docker-proxy",pid=2227,fd=4))
tcp LISTEN 0 4096 [::]:22 [::]:* users:(("sshd",pid=2619406,fd=4),("systemd",pid=1,fd=254))
tcp LISTEN 0 4096 [::]:111 [::]:* users:(("rpcbind",pid=714,fd=6),("systemd",pid=1,fd=217))
tcp LISTEN 0 4096 [::]:3001 [::]:* users:(("docker-proxy",pid=2207,fd=4))
tcp LISTEN 0 4096 [::]:9001 [::]:* users:(("docker-proxy",pid=1119847,fd=4))
tcp LISTEN 0 64 [::]:39465 [::]:*
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
lo: 71960852 701130 0 0 0 0 0 0 71960852 701130 0 0 0 0 0 0
wlp0s12f0: 18898978813 56881579 0 0 0 0 0 0 12475500647 24731079 0 9 0 0 0 0
tailscale0: 23340701 21848 0 0 0 0 0 0 64437072 191621 0 0 0 0 0 0
docker0: 378507383 420758 0 0 0 0 0 0 118394291 577347 0 28750 0 0 0 0
br-a8c08ace4629: 476128944 3281551 0 0 0 0 0 0 2169060078 3407638 0 2 0 0 0 0
veth8a78a0a: 268444597 2465431 0 0 0 0 0 0 2115358467 2671090 0 0 0 0 0 0
veth86570b3: 164806302 514099 0 0 0 0 0 0 143758216 782985 0 0 0 0 0 0
veth39b59a1: 88819759 302021 0 0 0 0 0 0 118043128 563055 0 0 0 0 0 0
docker_gwbridge: 0 0 0 0 0 0 0 0 19806138 57425 0 116061 0 0 0 0
vethe28bdc9: 384395667 420722 0 0 0 0 0 0 138089463 635790 0 0 0 0 0 0
Interface: wlp0s12f0
Link detected: yes
Interface: tailscale0
Speed: Unknown!
Duplex: Full
Link detected: yes
Interface: docker0
Speed: 10000Mb/s
Duplex: Unknown! (255)
Link detected: yes
Interface: br-a8c08ace4629
Speed: 10000Mb/s
Duplex: Unknown! (255)
Link detected: yes
Interface: veth8a78a0a@if6
Interface: veth86570b3@if8
Interface: veth39b59a1@if10
Interface: docker_gwbridge
Speed: Unknown!
Duplex: Unknown! (255)
Link detected: no
Interface: vethe28bdc9@if47
vnstat not installed
--- Firewall Status ---
Status: inactive
Chain INPUT (policy ACCEPT)
target prot opt source destination
ts-input 0 -- 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy DROP)
target prot opt source destination
DOCKER-USER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-1 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ts-forward 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain DOCKER (3 references)
target prot opt source destination
ACCEPT 6 -- 0.0.0.0/0 172.18.0.2 tcp dpt:3001
ACCEPT 6 -- 0.0.0.0/0 172.18.0.3 tcp dpt:8443
ACCEPT 6 -- 0.0.0.0/0 172.18.0.4 tcp dpt:8080
ACCEPT 6 -- 0.0.0.0/0 172.17.0.2 tcp dpt:9001
Chain DOCKER-ISOLATION-STAGE-1 (1 references)
target prot opt source destination
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
RETURN 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-ISOLATION-STAGE-2 (3 references)
target prot opt source destination
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
RETURN 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-USER (1 references)
target prot opt source destination
RETURN 0 -- 0.0.0.0/0 0.0.0.0/0
Chain ts-forward (1 references)
target prot opt source destination
MARK 0 -- 0.0.0.0/0 0.0.0.0/0 MARK xset 0x40000/0xff0000
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 mark match 0x40000/0xff0000
DROP 0 -- 100.64.0.0/10 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
Chain ts-input (1 references)
target prot opt source destination
ACCEPT 0 -- 100.118.220.45 0.0.0.0/0
RETURN 0 -- 100.115.92.0/23 0.0.0.0/0
DROP 0 -- 100.64.0.0/10 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 17 -- 0.0.0.0/0 0.0.0.0/0 udp dpt:39440
[2025-08-23 02:44:47] [INFO] Running module: collect_container_info
==== CONTAINER INFORMATION ====
--- Docker Information ---
Docker version 27.5.1, build 27.5.1-0ubuntu3~24.04.2
Client:
Version: 27.5.1
Context: default
Debug Mode: false
Plugins:
compose: Docker Compose (Docker Inc.)
Version: 2.33.0+ds1-0ubuntu1~24.04.1
Path: /usr/libexec/docker/cli-plugins/docker-compose
Server:
Containers: 5
Running: 4
Paused: 0
Stopped: 1
Images: 5
Server Version: 27.5.1
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: false
Native Overlay Diff: true
userxattr: false
Logging Driver: json-file
Cgroup Driver: systemd
Cgroup Version: 2
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version:
runc version:
init version:
Security Options:
apparmor
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.14.0-24-generic
Operating System: Ubuntu 24.04.3 LTS
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.691GiB
Name: audrey
ID: ca8e37c0-566d-4de2-8055-054a308e6484
Docker Root Dir: /var/lib/docker
Debug Mode: false
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
5de45132bc0c portainer/agent:latest "./agent" 2 weeks ago Up 2 weeks 0.0.0.0:9001->9001/tcp, :::9001->9001/tcp portainer_agent
850c5fba4e69 amir20/dozzle:latest "/dozzle" 2 months ago Up 4 weeks 0.0.0.0:9999->8080/tcp, [::]:9999->8080/tcp dozzle
235008e10dc8 prom/prometheus:latest "/bin/prometheus --c…" 2 months ago Exited (0) 2 months ago prometheus
6fd14bae2376 louislam/uptime-kuma:latest "/usr/bin/dumb-init …" 2 months ago Up 4 weeks (healthy) 0.0.0.0:3001->3001/tcp, :::3001->3001/tcp uptime-kuma
cc6d5deba429 lscr.io/linuxserver/code-server:latest "/init" 2 months ago Up 4 weeks 0.0.0.0:8443->8443/tcp, :::8443->8443/tcp code-server
REPOSITORY TAG IMAGE ID CREATED SIZE
portainer/agent latest 9f786420f676 7 weeks ago 171MB
lscr.io/linuxserver/code-server latest f5883d6d765b 2 months ago 597MB
amir20/dozzle latest 2156500e81c5 2 months ago 57MB
prom/prometheus latest 1db0f2fd4e18 2 months ago 304MB
louislam/uptime-kuma latest 542ef8cfcae2 8 months ago 440MB
NETWORK ID NAME DRIVER SCOPE
954160f4290f bridge bridge local
d7e649fc1b3d docker_gwbridge bridge local
ec45415e968d host host local
a8c08ace4629 monitoring-net bridge local
3070c475b94f none null local
DRIVER VOLUME NAME
local monitoring_netdatacache
local monitoring_netdataconfig
local monitoring_netdatalib
/home/jon/homelab/monitoring/docker-compose.yml
portainer_agent portainer/agent:latest 0.0.0.0:9001->9001/tcp, :::9001->9001/tcp
CONTAINER CPU % MEM USAGE / LIMIT NET I/O
5de45132bc0c 0.00% 11.23MiB / 3.691GiB 138MB / 384MB
850c5fba4e69 0.00% 10.11MiB / 256MiB 118MB / 88.8MB
6fd14bae2376 1.42% 194.1MiB / 512MiB 2.12GB / 268MB
cc6d5deba429 0.00% 108.8MiB / 1GiB 144MB / 165MB
Docker Socket Permissions:
srw-rw---- 1 root docker 0 Jul 23 23:51 /var/run/docker.sock
[2025-08-23 02:44:50] [INFO] Running module: collect_software_info
==== SOFTWARE INFORMATION ====
--- Installed Packages ---
Installed Debian/Ubuntu packages:
Package list saved to packages_dpkg.txt (913 packages)
Available Security Updates:
--- Running Services ---
UNIT LOAD ACTIVE SUB DESCRIPTION
containerd.service loaded active running containerd container runtime
cron.service loaded active running Regular background program processing daemon
dbus.service loaded active running D-Bus System Message Bus
docker.service loaded active running Docker Application Container Engine
fail2ban.service loaded active running Fail2Ban Service
fwupd.service loaded active running Firmware update daemon
getty@tty1.service loaded active running Getty on tty1
netplan-wpa-wlp0s12f0.service loaded active running WPA supplicant for netplan wlp0s12f0
networkd-dispatcher.service loaded active running Dispatcher daemon for systemd-networkd
NetworkManager.service loaded active running Network Manager
orb.service loaded active running Orb Sensor
polkit.service loaded active running Authorization Manager
rpc-statd.service loaded active running NFS status monitor for NFSv2/3 locking.
rpcbind.service loaded active running RPC bind portmap service
rsyslog.service loaded active running System Logging Service
snap.canonical-livepatch.canonical-livepatchd.service loaded active running Service for snap application canonical-livepatch.canonical-livepatchd
snap.tailscale.tailscaled.service loaded active running Service for snap application tailscale.tailscaled
snapd.service loaded active running Snap Daemon
ssh.service loaded active running OpenBSD Secure Shell server
systemd-journald.service loaded active running Journal Service
systemd-logind.service loaded active running User Login Management
systemd-networkd.service loaded active running Network Configuration
systemd-resolved.service loaded active running Network Name Resolution
systemd-timesyncd.service loaded active running Network Time Synchronization
systemd-udevd.service loaded active running Rule-based Manager for Device Events and Files
thermald.service loaded active running Thermal Daemon Service
udisks2.service loaded active running Disk Manager
unattended-upgrades.service loaded active running Unattended Upgrades Shutdown
upower.service loaded active running Daemon for power management
user@1000.service loaded active running User Manager for UID 1000
wpa_supplicant.service loaded active running WPA supplicant
Legend: LOAD → Reflects whether the unit definition was properly loaded.
ACTIVE → The high-level unit activation state, i.e. generalization of SUB.
SUB → The low-level unit activation state, values depend on unit type.
31 loaded units listed.
UNIT FILE STATE PRESET
apparmor.service enabled enabled
apport.service enabled enabled
auditd.service enabled enabled
blk-availability.service enabled enabled
console-setup.service enabled enabled
containerd.service enabled enabled
cron.service enabled enabled
dmesg.service enabled enabled
docker.service enabled enabled
e2scrub_reap.service enabled enabled
fail2ban.service enabled enabled
finalrd.service enabled enabled
getty@.service enabled enabled
gpu-manager.service enabled enabled
grub-common.service enabled enabled
grub-initrd-fallback.service enabled enabled
keyboard-setup.service enabled enabled
lvm2-monitor.service enabled enabled
networkd-dispatcher.service enabled enabled
NetworkManager-dispatcher.service enabled enabled
NetworkManager-wait-online.service enabled enabled
NetworkManager.service enabled enabled
open-iscsi.service enabled enabled
open-vm-tools.service enabled enabled
orb.service enabled enabled
pollinate.service enabled enabled
postfix.service enabled enabled
rpcbind.service enabled enabled
rsyslog.service enabled enabled
secureboot-db.service enabled enabled
setvtrgb.service enabled enabled
snap.canonical-livepatch.canonical-livepatchd.service enabled enabled
snap.tailscale.tailscaled.service enabled enabled
snapd.apparmor.service enabled enabled
snapd.autoimport.service enabled enabled
snapd.core-fixup.service enabled enabled
snapd.recovery-chooser-trigger.service enabled enabled
snapd.seeded.service enabled enabled
snapd.system-shutdown.service enabled enabled
ssh.service enabled enabled
ssl-cert.service enabled enabled
sysstat.service enabled enabled
systemd-networkd-wait-online.service enabled enabled
systemd-networkd.service enabled enabled
systemd-pstore.service enabled enabled
systemd-resolved.service enabled enabled
systemd-timesyncd.service enabled enabled
thermald.service enabled enabled
ua-reboot-cmds.service enabled enabled
ubuntu-advantage.service enabled enabled
ubuntu-fan.service enabled enabled
udisks2.service enabled enabled
ufw.service enabled enabled
unattended-upgrades.service enabled enabled
vgauth.service enabled enabled
wifi-pm-off.service enabled enabled
wpa_supplicant.service enabled enabled
57 unit files listed.
--- Running Processes ---
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 2956161 4.6 0.6 38820 26768 ? S 02:44 0:00 /usr/bin/python3 /home/jon/.ansible/tmp/ansible-tmp-1755917084.674795-1113635-185913411263/AnsiballZ_command.py
orb 608407 3.5 1.2 2206552 48708 ? Ssl Jul29 1298:11 /usr/bin/orb sensor
root 2473 1.7 4.3 1019972 166888 ? Ssl Jul23 766:15 node server/server.js
root 2956166 1.0 0.1 8000 4208 ? S 02:44 0:00 bash /tmp/linux_system_audit.sh
root 590 0.5 0.0 0 0 ? S Jul23 224:46 [irq/121-iwlwifi]
root 1491 0.4 2.4 2466836 93736 ? Ssl Jul23 186:13 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
root 1088 0.4 2.7 2136200 106560 ? Ssl Jul23 182:50 /snap/tailscale/108/bin/tailscaled --socket /var/snap/tailscale/common/socket/tailscaled.sock --statedir /var/snap/tailscale/common --verbose 10
root 18 0.0 0.0 0 0 ? I Jul23 40:25 [rcu_preempt]
root 1504 0.0 1.3 1950088 52496 ? Ssl Jul23 37:20 /usr/bin/containerd
root 2874329 0.0 0.8 409280 32000 ? Ssl Aug22 0:58 /usr/bin/python3 /usr/bin/fail2ban-server -xf start
jon 2955383 0.0 0.2 18056 8256 ? S 02:37 0:00 sshd: jon@notty
root 2302 0.0 0.4 1238276 16612 ? Sl Jul23 19:52 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 6fd14bae237666af92a20699a5bf8c092a9a1d135ae8f39e691d6047fb4521f7 -address /run/containerd/containerd.sock
root 2786308 0.0 0.2 422280 10848 ? Ssl Aug21 1:12 /usr/sbin/thermald --systemd --dbus-enable --adaptive
root 135 0.0 0.0 0 0 ? S Jul23 17:28 [usb-storage]
root 2953711 0.0 0.0 0 0 ? I 02:25 0:00 [kworker/1:1-events]
jon 2756 0.0 2.3 1311024 89044 ? Sl Jul23 13:57 /app/code-server/lib/node /app/code-server/out/node/entry
root 2955951 0.0 0.0 0 0 ? I 02:44 0:00 [kworker/0:0-events]
root 2953853 0.0 0.0 0 0 ? D 02:30 0:00 [kworker/u8:5+flush-8:0]
root 2953510 0.0 0.0 0 0 ? I 02:17 0:00 [kworker/u8:2-flush-8:0]
systemd-+-NetworkManager---3*[{NetworkManager}]
|-canonical-livep---9*[{canonical-livep}]
|-containerd---9*[{containerd}]
|-containerd-shim-+-s6-svscan-+-s6-supervise---s6-linux-init-s
| | |-s6-supervise
| | |-s6-supervise---bash---sleep
| | |-s6-supervise---s6-ipcserverd
| | `-s6-supervise---node-+-node---10*[{node}]
| | `-10*[{node}]
| `-12*[{containerd-shim}]
|-containerd-shim-+-dozzle---8*[{dozzle}]
| `-12*[{containerd-shim}]
|-containerd-shim-+-dumb-init-+-node---10*[{node}]
| | `-nscd---6*[{nscd}]
| `-12*[{containerd-shim}]
|-containerd-shim-+-agent---5*[{agent}]
| `-12*[{containerd-shim}]
|-cron
|-dbus-daemon
|-dockerd-+-3*[docker-proxy---6*[{docker-proxy}]]
| |-docker-proxy---7*[{docker-proxy}]
| |-2*[docker-proxy---8*[{docker-proxy}]]
| |-2*[docker-proxy---5*[{docker-proxy}]]
| `-19*[{dockerd}]
|-fail2ban-server---4*[{fail2ban-server}]
|-fwupd---5*[{fwupd}]
|-login---bash
|-networkd-dispat
|-orb---13*[{orb}]
|-polkitd---3*[{polkitd}]
|-python3---python3---python3---bash-+-pstree
| `-tee
|-rpc.statd
|-rpcbind
|-rsyslogd---3*[{rsyslogd}]
|-snapd---9*[{snapd}]
|-sshd---sshd---sshd
|-systemd---(sd-pam)
|-systemd-journal
|-systemd-logind
|-systemd-network
|-systemd-resolve
|-systemd-timesyn---{systemd-timesyn}
|-systemd-udevd
|-tailscaled---11*[{tailscaled}]
|-thermald---4*[{thermald}]
|-udisksd---5*[{udisksd}]
|-unattended-upgr---{unattended-upgr}
|-upowerd---3*[{upowerd}]
`-2*[wpa_supplicant]
[2025-08-23 02:44:53] [INFO] Running module: collect_security_info
==== SECURITY ASSESSMENT ====
--- User Accounts ---
root:x:0:0:root:/root:/bin/bash
jon:x:1000:1000:jon:/home/jon:/bin/bash
netdata:x:996:988::/var/lib/netdata:/bin/sh
orb:x:995:987::/home/orb:/bin/sh
root
sudo:x:27:jon
jon tty1 2025-07-23 23:54
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:44 - 02:44 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:43 - 02:43 (00:00)
jon pts/0 100.81.202.21 Sat Aug 23 02:43 - 02:43 (00:00)
wtmp begins Sun Jun 8 21:30:11 2025
--- SSH Configuration ---
2025-08-19T21:54:33.258919+00:00 audrey sshd[2620677]: Failed password for invalid user jonathan from 192.168.50.225 port 33718 ssh2
2025-08-19T21:54:33.269464+00:00 audrey sshd[2620677]: Failed password for invalid user jonathan from 192.168.50.225 port 33718 ssh2
2025-08-19T21:59:00.570873+00:00 audrey sshd[2620870]: Failed password for jon from 100.81.202.21 port 34890 ssh2
2025-08-19T21:59:00.588665+00:00 audrey sshd[2620870]: Failed password for jon from 100.81.202.21 port 34890 ssh2
--- File Permissions and SUID ---
/var/lib/docker/overlay2/bd850def42e5f1ffe8aa9db20670d6e31115c303c4f31b035d5c5e5b4ed76798/merged/usr/local/bin/docker-entrypoint.sh
/var/lib/docker/overlay2/3c71cdad1ae866b49a83af66a8a93bda367ebe6f1dce8201654e336e2fef2189/diff/usr/local/bin/docker-entrypoint.sh
/usr/bin/passwd
/usr/bin/chsh
/usr/bin/sudo
/usr/bin/chage
/usr/bin/gpasswd
/usr/bin/ssh-agent
/usr/bin/fusermount3
/usr/bin/su
/usr/bin/newgrp
/usr/bin/chfn
/usr/bin/expiry
/usr/bin/mount
/usr/bin/dotlockfile
/usr/bin/umount
/usr/bin/crontab
/usr/sbin/pppd
/usr/sbin/unix_chkpwd
/usr/sbin/mount.nfs
/usr/sbin/postdrop
/usr/sbin/postqueue
/usr/sbin/pam_extrausers_chkpwd
/usr/sbin/pam-tmpdir-helper
/usr/sbin/mount.cifs
/usr/lib/landscape/apt-update
/usr/lib/openssh/ssh-keysign
/usr/lib/x86_64-linux-gnu/utempter/utempter
/usr/lib/dbus-1.0/dbus-daemon-launch-helper
/usr/lib/snapd/snap-confine
/usr/lib/w3m/w3mimgdisplay
/usr/lib/polkit-1/polkit-agent-helper-1
WARNING: Potentially dangerous SUID binary found: /bin/su
WARNING: Potentially dangerous SUID binary found: /usr/bin/sudo
WARNING: Potentially dangerous SUID binary found: /usr/bin/passwd
WARNING: Potentially dangerous SUID binary found: /usr/bin/chfn
WARNING: Potentially dangerous SUID binary found: /usr/bin/chsh
WARNING: Potentially dangerous SUID binary found: /usr/bin/gpasswd
WARNING: Potentially dangerous SUID binary found: /usr/bin/newgrp
WARNING: Potentially dangerous SUID binary found: /usr/bin/mount
WARNING: Potentially dangerous SUID binary found: /usr/bin/umount
/tmp
/home/jon/homelab/monitoring/prometheus-data
/run/screen
/run/lock
/snap/core22/2082/run/lock
/snap/core22/2082/tmp
/snap/core22/2082/var/tmp
/snap/core22/2045/run/lock
/snap/core22/2045/tmp
/snap/core22/2045/var/tmp
--- Cron Jobs ---
total 28
drwx------ 2 root root 4096 Feb 16 2025 .
drwxr-xr-x 139 root root 12288 Aug 22 06:06 ..
-rw-r--r-- 1 root root 201 Apr 8 2024 e2scrub_all
-rw-r--r-- 1 root root 102 Feb 16 2025 .placeholder
-rw-r--r-- 1 root root 396 Feb 16 2025 sysstat
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
# You can also override PATH, but by default, newer versions inherit it from the environment
#PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.daily; }
47 6 * * 7 root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.weekly; }
52 6 1 * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.monthly; }
#
--- Shell History ---
Analyzing: /home/jon/.bash_history
WARNING: Pattern 'password' found in /home/jon/.bash_history
WARNING: Pattern 'passwd' found in /home/jon/.bash_history
WARNING: Pattern 'token' found in /home/jon/.bash_history
WARNING: Pattern 'key' found in /home/jon/.bash_history
WARNING: Pattern 'auth' found in /home/jon/.bash_history
WARNING: Pattern 'login' found in /home/jon/.bash_history
--- Tailscale Configuration ---
100.118.220.45 audrey jonpressnell@ linux offline
100.104.185.11 bpcp-b3722383fb jonpressnell@ windows offline
100.126.196.100 bpcp-s7g23273fb jonpressnell@ windows offline
100.81.202.21 fedora jonpressnell@ linux active; relay "ord", tx 267236 rx 3097444
100.96.2.115 google-pixel-9-pro jonpressnell@ android -
100.107.248.69 ipad-10th-gen-wificellular jonpressnell@ iOS offline
100.123.118.16 jon-ser jonpressnell@ linux -
100.67.250.42 jonathan jonpressnell@ linux offline
100.99.235.80 lenovo jonpressnell@ linux -
100.98.144.95 lenovo420 jonpressnell@ linux -
100.78.26.112 omv800 jonpressnell@ linux -
100.65.76.70 qualcomm-go103 jonpressnell@ android offline
100.72.166.115 samsung-sm-g781u1 jonpressnell@ android offline
100.67.40.97 surface jonpressnell@ linux -
100.69.142.126 xreal-x4000 jonpressnell@ android offline
# Health check:
# - Tailscale hasn't received a network map from the coordination server in 2m7s.
100.118.220.45
[2025-08-23 02:45:07] [INFO] Running module: run_vulnerability_scan
==== VULNERABILITY ASSESSMENT ====
--- Kernel Vulnerabilities ---
6.14.0-24-generic
Current kernel: 6.14.0-24-generic
Kernel major version: 6
Kernel minor version: 14
Risk Level: LOW
Assessment: Kernel version is recent and likely secure
Kernel Security Features:
ASLR (Address Space Layout Randomization): ENABLED
Dmesg restriction: ENABLED
--- Open Ports Security Check ---
Port 53 (DNS) - Ensure properly configured
[2025-08-23 02:45:07] [INFO] Running module: collect_env_info
==== ENVIRONMENT AND CONFIGURATION ====
--- Environment Variables ---
SHELL=/bin/bash
HOME=/root
LANG=en_US.UTF-8
USER=root
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
--- Mount Points ---
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=1894260k,nr_inodes=473565,mode=755,inode64)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=387056k,mode=755,inode64)
efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
/dev/sda2 on / type ext4 (rw,relatime)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=32,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=4625)
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,pagesize=2M)
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
configfs on /sys/kernel/config type configfs (rw,nosuid,nodev,noexec,relatime)
/var/lib/snapd/snaps/canonical-livepatch_338.snap on /snap/canonical-livepatch/338 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/canonical-livepatch_341.snap on /snap/canonical-livepatch/341 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core24_1006.snap on /snap/core24/1006 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core22_2045.snap on /snap/core22/2045 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core24_1055.snap on /snap/core24/1055 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/snapd_24718.snap on /snap/snapd/24718 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/snapd_24792.snap on /snap/snapd/24792 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/tailscale_108.snap on /snap/tailscale/108 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/tailscale_97.snap on /snap/tailscale/97 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
/dev/sda1 on /boot/efi type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
tmpfs on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=387056k,mode=755,inode64)
nsfs on /run/snapd/ns/tailscale.mnt type nsfs (rw)
nsfs on /run/snapd/ns/canonical-livepatch.mnt type nsfs (rw)
192.168.50.107:/export/audrey_backup on /mnt/omv-backup type nfs (rw,relatime,vers=3,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.50.107,mountvers=3,mountport=56632,mountproto=udp,local_lock=none,addr=192.168.50.107)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=387052k,nr_inodes=96763,mode=700,uid=1000,gid=1000,inode64)
overlay on /var/lib/docker/overlay2/bd850def42e5f1ffe8aa9db20670d6e31115c303c4f31b035d5c5e5b4ed76798/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/XE6XKML6GAUMVL72UYINHXFEZN:/var/lib/docker/overlay2/l/2DDFT3SFANJMTLQVQJT6QNMYY6:/var/lib/docker/overlay2/l/4BE34UV534RN6YCIRJVMPJTRKZ:/var/lib/docker/overlay2/l/NHCXNSPIR7YOPIHKTRYYDW5Y2L:/var/lib/docker/overlay2/l/43CVT54S74CGWCZUOMHIFACWJ7:/var/lib/docker/overlay2/l/MUJAJBHJEIR4A5SZZOC6CQUTVT:/var/lib/docker/overlay2/l/45GIGYUNPJE2HQ7UCVT6XQEDL3:/var/lib/docker/overlay2/l/A4NV5NZFSSNQPEX43CBWFXOMED:/var/lib/docker/overlay2/l/KAWSTQ5J2OAW6WERZ2DK4QYTLA:/var/lib/docker/overlay2/l/MGFJ4NWGW5TGK27ZL3W6N4ORHH:/var/lib/docker/overlay2/l/AJKTYJBBG7TWBGQZVUV4OR72EI:/var/lib/docker/overlay2/l/E5TR2GD2PTUXFJHA3AWCMYNKBX:/var/lib/docker/overlay2/l/NI5A3OJFV2HRTHB63B6UB55IHU,upperdir=/var/lib/docker/overlay2/bd850def42e5f1ffe8aa9db20670d6e31115c303c4f31b035d5c5e5b4ed76798/diff,workdir=/var/lib/docker/overlay2/bd850def42e5f1ffe8aa9db20670d6e31115c303c4f31b035d5c5e5b4ed76798/work,nouserxattr)
overlay on /var/lib/docker/overlay2/9174a91cfba55e021606a61b9b24db72c6f4fa5e56196b7660a4f9490df5e2a8/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/NIOKMY64SM54ASHDW2W7XIDLIR:/var/lib/docker/overlay2/l/MX2Y36LPVSNEEPENZBPNWLC3UF:/var/lib/docker/overlay2/l/YRY7WF2UVHTIDFNYDZCXITY6H6:/var/lib/docker/overlay2/l/WMYSB4GUHMTT4VV2T6IJI2WXKV:/var/lib/docker/overlay2/l/VGDVB3TFH2LHEO4GZOSLSVKN5B:/var/lib/docker/overlay2/l/NRUZM66U2IXYSIMKC7NEALBESY:/var/lib/docker/overlay2/l/L4QRIZWOMKP2IWFJRXH47ATK2H:/var/lib/docker/overlay2/l/JRZAUQNPN7NXF5NRHMAY6CCVML:/var/lib/docker/overlay2/l/BG555F7P4MOQ5IIDZ3EHGHDWMS:/var/lib/docker/overlay2/l/NEJODA33KUH4WZ334DN4PEGZAJ:/var/lib/docker/overlay2/l/I4HDGKR573ZXGCXBWFQV5PBF3N,upperdir=/var/lib/docker/overlay2/9174a91cfba55e021606a61b9b24db72c6f4fa5e56196b7660a4f9490df5e2a8/diff,workdir=/var/lib/docker/overlay2/9174a91cfba55e021606a61b9b24db72c6f4fa5e56196b7660a4f9490df5e2a8/work,nouserxattr)
overlay on /var/lib/docker/overlay2/d7c9480076e10ab7a94dd7fb54d89c9df7048cc867edbffa907ed9df3cf982fb/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/SY7E7PNHGLXQDF77THYZ33HW72:/var/lib/docker/overlay2/l/32AISOYMLMLYLEZYJIPSOMLXFL:/var/lib/docker/overlay2/l/NQPU6A7OGCLRHRZKBPGYPXOLFU:/var/lib/docker/overlay2/l/XWMWFRVPRIKHADZC3CWFGR47I2:/var/lib/docker/overlay2/l/R7NYC2TRVP25NOXWU227B3HMKN,upperdir=/var/lib/docker/overlay2/d7c9480076e10ab7a94dd7fb54d89c9df7048cc867edbffa907ed9df3cf982fb/diff,workdir=/var/lib/docker/overlay2/d7c9480076e10ab7a94dd7fb54d89c9df7048cc867edbffa907ed9df3cf982fb/work,nouserxattr)
nsfs on /run/docker/netns/658617fb4477 type nsfs (rw)
nsfs on /run/docker/netns/9169cd5aad57 type nsfs (rw)
nsfs on /run/docker/netns/b58de695f453 type nsfs (rw)
overlay on /var/lib/docker/overlay2/25ab0c6ca302cdbdcf23f9af6dc747b1ea8aa2b01fa7ea09ead01d3a30d18bed/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5RTMHNUOE75I7WY7H3DK4VK42Q:/var/lib/docker/overlay2/l/ZKWL6BPTBTEW6LDN3TKV3YJHLG:/var/lib/docker/overlay2/l/NBCF5N25G7HR4GTXTZYTXQD7K3:/var/lib/docker/overlay2/l/OBUHAJWWLHXOKWC6R4STR6EU5D:/var/lib/docker/overlay2/l/34ZVE4XI3JKNTTKZLNHVJHWHBJ:/var/lib/docker/overlay2/l/PHOLC4N5MLTCWEJ5AXF4BVG2L6:/var/lib/docker/overlay2/l/PQ53Q3EQTSVWEBGEMUCQKSX3LD:/var/lib/docker/overlay2/l/N7MW6XLBPXGLCSIJ37TLMWYCJG:/var/lib/docker/overlay2/l/73XQXAZ2RUNKGMMIXGJJDRN3DI:/var/lib/docker/overlay2/l/5RPWABGXH37PG4AEXARZFI5PWL,upperdir=/var/lib/docker/overlay2/25ab0c6ca302cdbdcf23f9af6dc747b1ea8aa2b01fa7ea09ead01d3a30d18bed/diff,workdir=/var/lib/docker/overlay2/25ab0c6ca302cdbdcf23f9af6dc747b1ea8aa2b01fa7ea09ead01d3a30d18bed/work,nouserxattr)
nsfs on /run/docker/netns/953d9c206f8a type nsfs (rw)
tracefs on /sys/kernel/debug/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
/var/lib/snapd/snaps/core22_2082.snap on /snap/core22/2082 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
Filesystem Size Used Avail Use% Mounted on
tmpfs 378M 2.1M 376M 1% /run
efivarfs 64K 2.8K 57K 5% /sys/firmware/efi/efivars
/dev/sda2 113G 15G 93G 14% /
tmpfs 1.9G 0 1.9G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
/dev/sda1 1.1G 6.2M 1.1G 1% /boot/efi
192.168.50.107:/export/audrey_backup 7.3T 306G 7.0T 5% /mnt/omv-backup
tmpfs 378M 12K 378M 1% /run/user/1000
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/bd850def42e5f1ffe8aa9db20670d6e31115c303c4f31b035d5c5e5b4ed76798/merged
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/9174a91cfba55e021606a61b9b24db72c6f4fa5e56196b7660a4f9490df5e2a8/merged
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/d7c9480076e10ab7a94dd7fb54d89c9df7048cc867edbffa907ed9df3cf982fb/merged
overlay 113G 15G 93G 14% /var/lib/docker/overlay2/25ab0c6ca302cdbdcf23f9af6dc747b1ea8aa2b01fa7ea09ead01d3a30d18bed/merged
--- System Limits ---
real-time non-blocking time (microseconds, -R) unlimited
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 14644
max locked memory (kbytes, -l) 483816
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 14644
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
[2025-08-23 02:45:07] [INFO] Generating JSON summary
==== GENERATING SUMMARY ====
[2025-08-23 02:45:07] [Generating JSON summary...]
[2025-08-23 02:45:08] [INFO] JSON summary generated successfully: /tmp/system_audit_audrey_20250823_024446/results.json
==== AUDIT COMPLETE ====
[2025-08-23 02:45:08] [INFO] Audit completed successfully in 22 seconds
[2025-08-23 02:45:08] [INFO] Results available in: /tmp/system_audit_audrey_20250823_024446
[2025-08-23 02:45:08] [INFO] Enhanced summary created: /tmp/system_audit_audrey_20250823_024446/SUMMARY.txt
[2025-08-23 02:45:08] [INFO] Compressing audit results...

View File

@@ -0,0 +1,913 @@
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-=====================================-=======================================-============-================================================================================
ii adduser 3.137ubuntu1 all add and remove users and groups
ii amd64-microcode 3.20250311.1ubuntu0.24.04.1 amd64 Processor microcode firmware for AMD CPUs
ii apparmor 4.0.1really4.0.1-0ubuntu0.24.04.4 amd64 user-space parser utility for AppArmor
ii apport 2.28.1-0ubuntu3.8 all automatically generate crash reports for debugging
ii apport-core-dump-handler 2.28.1-0ubuntu3.8 all Kernel core dump handler for Apport
ii apport-symptoms 0.25 all symptom scripts for apport
ii appstream 1.0.2-1build6 amd64 Software component metadata management
ii apt 2.8.3 amd64 commandline package manager
ii apt-listchanges 3.27 all package change history notification tool
ii apt-show-versions 0.22.15 all lists available package versions with distribution
ii apt-utils 2.8.3 amd64 package management related utility programs
ii auditd 1:3.1.2-2.1build1.1 amd64 User space tools for security auditing
ii base-files 13ubuntu10.3 amd64 Debian base system miscellaneous files
ii base-passwd 3.6.3build1 amd64 Debian base system master password and group files
ii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell
ii bash-completion 1:2.11-8 all programmable completion for the bash shell
ii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language
ii bcache-tools 1.0.8-5build1 amd64 bcache userspace tools
ii bind9-dnsutils 1:9.18.30-0ubuntu0.24.04.2 amd64 Clients provided with BIND 9
ii bind9-host 1:9.18.30-0ubuntu0.24.04.2 amd64 DNS Lookup Utility
ii bind9-libs:amd64 1:9.18.30-0ubuntu0.24.04.2 amd64 Shared Libraries used by BIND 9
ii binutils 2.42-4ubuntu2.5 amd64 GNU assembler, linker and binary utilities
ii binutils-common:amd64 2.42-4ubuntu2.5 amd64 Common files for the GNU assembler, linker and binary utilities
ii binutils-x86-64-linux-gnu 2.42-4ubuntu2.5 amd64 GNU binary utilities, for x86-64-linux-gnu target
ii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices
ii borgbackup 1.2.8-1 amd64 deduplicating and compressing backup program
ii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)
ii bpftrace 0.20.2-1ubuntu4.3 amd64 high-level tracing language for Linux eBPF
ii bridge-utils 1.7.1-1ubuntu2 amd64 Utilities for configuring the Linux Ethernet bridge
ii bsd-mailx 8.1.2-0.20220412cvs-1build1 amd64 simple mail user agent
ii bsdextrautils 2.39.3-9ubuntu6.3 amd64 extra utilities from 4.4BSD-Lite
ii bsdutils 1:2.39.3-9ubuntu6.3 amd64 basic utilities from 4.4BSD-Lite
ii btrfs-progs 6.6.3-1.1build2 amd64 Checksumming Copy on Write Filesystem utilities
ii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs
ii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities
ii byobu 6.11-0ubuntu1 all text window manager, shell multiplexer, integrated DevOps environment
ii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities
ii ca-certificates 20240203 all Common CA certificates
ii caca-utils 0.99.beta20-4build2 amd64 text mode graphics utilities
ii chafa 1.14.0-1.1build1 amd64 Image-to-text converter supporting a wide range of symbols, etc.
ii cifs-utils 2:7.0-2ubuntu0.2 amd64 Common Internet File System utilities
ii cloud-guest-utils 0.33-1 all cloud guest utilities
ii cloud-init 25.1.4-0ubuntu0~24.04.1 all initialization and customization tool for cloud instances
ii cloud-initramfs-copymods 0.49~24.04.1 all copy initramfs modules into root filesystem for later use
ii cloud-initramfs-dyn-netconf 0.49~24.04.1 all write a network interface file in /run for BOOTIF
ii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions
ii console-setup 1.226ubuntu1 all console font and keymap setup program
ii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup
ii containerd 1.7.27-0ubuntu1~24.04.1 amd64 daemon to control runC
ii coreutils 9.4-3ubuntu6 amd64 GNU core utilities
ii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files
ii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2
ii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon
ii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon's configuration files
ii cryptsetup 2:2.7.0-1ubuntu4.2 amd64 disk encryption support - startup scripts
ii cryptsetup-bin 2:2.7.0-1ubuntu4.2 amd64 disk encryption support - command line tools
ii cryptsetup-initramfs 2:2.7.0-1ubuntu4.2 all disk encryption support - initramfs integration
ii curl 8.5.0-2ubuntu10.6 amd64 command line tool for transferring data with URL syntax
ii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell
ii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)
ii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)
ii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)
ii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)
ii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)
ii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)
ii debconf 1.5.86ubuntu1 all Debian configuration management system
ii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf
ii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian
ii debsums 3.0.2.1 all tool for verification of installed package files against MD5 checksums
ii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)
ii diffutils 1:3.10-1build1 amd64 File comparison utilities
ii dirmngr 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - network certificate management service
ii distro-info 1.7build1 amd64 provides information about the distributions' releases
ii distro-info-data 0.60ubuntu0.3 all information about the distributions' releases (data files)
ii dmeventd 2:1.02.185-3ubuntu3.2 amd64 Linux Kernel Device Mapper event daemon
ii dmidecode 3.5-3ubuntu0.1 amd64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.185-3ubuntu3.2 amd64 Linux Kernel Device Mapper userspace library
ii dns-root-data 2024071801~ubuntu0.24.04.1 all DNS root hints and DNSSEC trust anchor
ii dnsmasq-base 2.90-2ubuntu0.1 amd64 Small caching DNS proxy and DHCP/TFTP server - executable
ii docker-compose-v2 2.33.0+ds1-0ubuntu1~24.04.1 amd64 tool for running multi-container applications on Docker
ii docker.io 27.5.1-0ubuntu3~24.04.2 amd64 Linux container runtime
ii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems
ii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system
ii dracut-install 060+5-1ubuntu3.3 amd64 dracut is an event driven initramfs infrastructure (dracut-install)
ii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities
ii e2fsprogs-l10n 1.47.0-2.4~exp1ubuntu4.1 all ext2/ext3/ext4 file system utilities - translations
ii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends
ii ed 1.20.1-1 amd64 classic UNIX line editor
ii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager
ii eject 2.39.3-9ubuntu6.3 amd64 ejects CDs and operates CD-Changers under Linux
ii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings
ii fail2ban 1.0.2-3ubuntu0.1 all ban hosts that cause multiple authentication errors
ii fdisk 2.39.3-9ubuntu6.3 amd64 collection of partitioning utilities
ii file 1:5.45-3build1 amd64 Recognize the type of data in a file using "magic" numbers
ii finalrd 9build1 all final runtime directory for shutdown
ii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs
ii firmware-sof-signed 2023.12.1-1ubuntu1.7 all Intel SOF firmware - signed
ii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries
ii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration
ii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters
ii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters
ii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)
rc fonts-font-awesome 5.0.10+really4.7.0~dfsg-4.1 all iconic font designed for use with Twitter Bootstrap
ii fonts-lato 2.015-1 all sans-serif typeface family font
ii fonts-noto-mono 20201225-2 all "No Tofu" monospaced font family with large Unicode coverage
ii fonts-ubuntu-console 0.869+git20240321-0ubuntu1 all console version of the Ubuntu Mono font
ii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts
ii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly
ii ftp 20230507-2build3 all dummy transitional package for tnftp
ii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)
ii fwupd 1.9.30-0ubuntu1~24.04.1 amd64 Firmware update daemon
ii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary
ii gawk 1:5.2.1-2build3 amd64 GNU awk, a pattern scanning and processing language
ii gcc-14-base:amd64 14.2.0-4ubuntu2~24.04 amd64 GCC, the GNU Compiler Collection (base package)
ii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool
ii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system
ii ghostscript 10.02.1~dfsg1-0ubuntu7.7 amd64 interpreter for the PostScript language and for PDF
ii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library
ii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.4 amd64 Introspection data for GLib, GObject, Gio and GModule
ii gir1.2-packagekitglib-1.0 1.2.8-2ubuntu1.2 amd64 GObject introspection data for the PackageKit GLib library
ii git 1:2.43.0-1ubuntu7.3 amd64 fast, scalable, distributed revision control system
ii git-man 1:2.43.0-1ubuntu7.3 all fast, scalable, distributed revision control system (manual pages)
ii gnupg 2.4.4-2ubuntu17.3 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.4.4-2ubuntu17.3 all GNU privacy guard - localization files
ii gnupg-utils 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - utility programs
ii gpg 2.4.4-2ubuntu17.3 amd64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - Web Key Service client
ii gpgconf 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - core configuration utilities
ii gpgsm 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - S/MIME version
ii gpgv 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - signature verification tool
ii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep
ii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)
ii grub-common 2.12-1ubuntu7.3 amd64 GRand Unified Bootloader (common files)
ii grub-efi-amd64 2.12-1ubuntu7.3 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii grub-efi-amd64-bin 2.12-1ubuntu7.3 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
ii grub-efi-amd64-signed 1.202.5+2.12-1ubuntu7.3 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)
ii grub2-common 2.12-1ubuntu7.3 amd64 GRand Unified Bootloader (common files for version 2)
ii gzip 1.12-1ubuntu3.1 amd64 GNU compression utilities
ii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance
ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes
ii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name
ii htop 3.3.0-4build1 amd64 interactive processes viewer
ii hwdata 0.379-1 all hardware identification / configuration data
ii ibverbs-providers:amd64 50.0-2ubuntu0.2 amd64 User space provider drivers for libibverbs
ii ieee-data 20220827.1 all OUI and IAB listings
ii imagemagick 8:6.9.12.98+dfsg1-5.2build2 amd64 image manipulation programs -- binaries
ii imagemagick-6-common 8:6.9.12.98+dfsg1-5.2build2 all image manipulation programs -- infrastructure
ii imagemagick-6.q16 8:6.9.12.98+dfsg1-5.2build2 amd64 image manipulation programs -- quantum depth Q16
ii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client
ii info 7.1-3build2 amd64 Standalone GNU Info documentation browser
ii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed
ii init-system-helpers 1.66ubuntu1 all helper tools for all init systems
ii initramfs-tools 0.142ubuntu25.5 all generic modular initramfs generator (automation)
ii initramfs-tools-bin 0.142ubuntu25.5 amd64 binaries used by initramfs-tools
ii initramfs-tools-core 0.142ubuntu25.5 all generic modular initramfs generator (core tools)
ii install-info 7.1-3build2 amd64 Manage installed documentation in info format
ii intel-microcode 3.20250512.0ubuntu0.24.04.1 amd64 Processor microcode firmware for Intel CPUs
ii iproute2 6.1.0-1ubuntu6.2 amd64 networking and traffic control tools
ii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT
ii iputils-ping 3:20240117-1ubuntu0.1 amd64 Tools to test the reachability of network hosts
ii iputils-tracepath 3:20240117-1ubuntu0.1 amd64 Tools to trace the network path to a remote host
ii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations
ii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool
ii javascript-common 11+nmu1 all Base support for JavaScript library packages
ii jp2a 1.1.1-2ubuntu2 amd64 converts jpg and png images to ascii
ii jq 1.7.1-3ubuntu0.24.04.1 amd64 lightweight and flexible command-line JSON processor
ii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities
ii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences
ii keyboxd 2.4.4-2ubuntu17.3 amd64 GNU privacy guard - public key material service
ii keyutils 1.6.3-3build1 amd64 Linux Key Management Utilities
ii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot
ii kmod 31+20240202-2ubuntu7.1 amd64 tools for managing Linux kernel modules
ii kpartx 0.9.4-5ubuntu8 amd64 create device mappings for partitions
ii krb5-locales 1.20.1-6ubuntu2.6 all internationalization support for MIT Kerberos
ii landscape-client 24.02-0ubuntu5.3 amd64 Landscape administration system client
ii landscape-common 24.02-0ubuntu5.3 amd64 Landscape administration system client - Common files
ii less 590-2ubuntu2.1 amd64 pager program similar to more
ii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3.2 amd64 extensions to the C++ standard library
ii libacl1:amd64 2.3.2-1build1.1 amd64 access control list - shared library
ii libaio1t64:amd64 0.3.113-6build1.1 amd64 Linux kernel AIO access library - shared library
ii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library
ii libapparmor1:amd64 4.0.1really4.0.1-0ubuntu0.24.04.4 amd64 changehat AppArmor library
ii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services
ii libapt-pkg-perl 0.1.40build7 amd64 Perl interface to libapt-pkg
ii libapt-pkg6.0t64:amd64 2.8.3 amd64 package management runtime library
ii libarchive13t64:amd64 3.7.2-2ubuntu0.5 amd64 Multi-format archive and compression library (shared library)
ii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library
ii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components
ii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library
ii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)
ii libattr1:amd64 1:2.5.2-1build1.1 amd64 extended attribute handling - shared library
ii libaudit-common 1:3.1.2-2.1build1.1 all Dynamic library for security auditing - common files
ii libaudit1:amd64 1:3.1.2-2.1build1.1 amd64 Dynamic library for security auditing
ii libauparse0t64:amd64 1:3.1.2-2.1build1.1 amd64 Dynamic library for parsing security auditing
ii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library
ii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files
ii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library
ii libavif16:amd64 1.0.4-1ubuntu3 amd64 Library for handling .avif files
ii libbinutils:amd64 2.42-4ubuntu2.5 amd64 GNU binary utilities (private shared library)
ii libblas3:amd64 3.12.0-3build1.1 amd64 Basic Linear Algebra Reference implementations, shared library
ii libblkid1:amd64 2.39.3-9ubuntu6.3 amd64 block device ID library
ii libblockdev-crypto3:amd64 3.1.1-1ubuntu0.1 amd64 Crypto plugin for libblockdev
ii libblockdev-fs3:amd64 3.1.1-1ubuntu0.1 amd64 file system plugin for libblockdev
ii libblockdev-loop3:amd64 3.1.1-1ubuntu0.1 amd64 Loop device plugin for libblockdev
ii libblockdev-mdraid3:amd64 3.1.1-1ubuntu0.1 amd64 MD RAID plugin for libblockdev
ii libblockdev-nvme3:amd64 3.1.1-1ubuntu0.1 amd64 NVMe plugin for libblockdev
ii libblockdev-part3:amd64 3.1.1-1ubuntu0.1 amd64 Partitioning plugin for libblockdev
ii libblockdev-swap3:amd64 3.1.1-1ubuntu0.1 amd64 Swap plugin for libblockdev
ii libblockdev-utils3:amd64 3.1.1-1ubuntu0.1 amd64 Utility functions for libblockdev
ii libblockdev3:amd64 3.1.1-1ubuntu0.1 amd64 Library for manipulating block devices
ii libbluetooth3:amd64 5.72-0ubuntu5.3 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)
ii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)
ii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)
ii libbsd0:amd64 0.12.1-1build1.1 amd64 utility functions from BSD systems - shared library
ii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations
ii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes
ii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime
ii libc-bin 2.39-0ubuntu8.5 amd64 GNU C Library: Binaries
ii libc-dev-bin 2.39-0ubuntu8.5 amd64 GNU C Library: Development binaries
ii libc-devtools 2.39-0ubuntu8.5 amd64 GNU C Library: Development tools
ii libc6:amd64 2.39-0ubuntu8.5 amd64 GNU C Library: Shared libraries
ii libc6-dev:amd64 2.39-0ubuntu8.5 amd64 GNU C Library: Development Libraries and Header Files
ii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library
ii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)
ii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library
ii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library
ii libcap2:amd64 1:2.66-5ubuntu2.2 amd64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.66-5ubuntu2.2 amd64 POSIX 1003.1e capabilities (utilities)
ii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)
ii libchafa0t64:amd64 1.14.0-1.1build1 amd64 library for image-to-text converter chafa
ii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library
ii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library
ii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library
ii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library
ii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files
ii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library
ii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.2 amd64 disk encryption support - shared library
ii libctf-nobfd0:amd64 2.42-4ubuntu2.5 amd64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:amd64 2.42-4ubuntu2.5 amd64 Compact C Type Format library (runtime, BFD dependency)
ii libcups2t64:amd64 2.4.7-1.2ubuntu7.3 amd64 Common UNIX Printing System(tm) - Core library
ii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.6 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4t64:amd64 8.5.0-2ubuntu10.6 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library
ii libdav1d7:amd64 1.4.1-1build1 amd64 fast and small AV1 video stream decoder (shared library)
ii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]
ii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)
ii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC
ii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation
ii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)
ii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevmapper-event1.02.1:amd64 2:1.02.185-3ubuntu3.2 amd64 Linux Kernel Device Mapper event support library
ii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.2 amd64 Linux Kernel Device Mapper userspace library
ii libdjvulibre-text 3.5.28-2ubuntu0.24.04.1 all Linguistic support files for libdjvulibre
ii libdjvulibre21:amd64 3.5.28-2ubuntu0.24.04.1 amd64 Runtime support for the DjVu image format
ii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules
ii libdrm-common 2.4.122-1~ubuntu0.24.04.1 all Userspace interface to kernel DRM services -- common files
ii libdrm2:amd64 2.4.122-1~ubuntu0.24.04.1 amd64 Userspace interface to kernel DRM services -- runtime
ii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library
ii libdw1t64:amd64 0.190-1.1ubuntu0.1 amd64 library that provides access to the DWARF debug information
ii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library
ii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries
ii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables
ii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables
ii libelf1t64:amd64 0.190-1.1ubuntu0.1 amd64 library to read and write ELF files
ii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way
ii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)
ii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices
ii libevent-core-2.1-7t64:amd64 2.1.12-stable-9ubuntu2 amd64 Asynchronous event notification library (core)
ii libexpat1:amd64 2.6.1-2ubuntu0.3 amd64 XML parsing C library - runtime library
ii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries
ii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C
ii libfdisk1:amd64 2.39.3-9ubuntu6.3 amd64 fdisk partitioning library
ii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime
ii libfftw3-double3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Double precision
ii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects
ii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)
ii libfile-fnmatch-perl 0.02-3build4 amd64 Perl module that provides simple filename and pathname matching
ii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library
ii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime
ii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library
ii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files
ii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm
ii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers
ii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)
ii libfwupd2:amd64 1.9.30-0ubuntu1~24.04.1 amd64 Firmware update daemon library
ii libgav1-1:amd64 0.18.0-1build3 amd64 AV1 decoder developed by Google -- runtime library
ii libgc1:amd64 1:8.2.6-1build1 amd64 conservative garbage collector for C and C++
ii libgcc-s1:amd64 14.2.0-4ubuntu2~24.04 amd64 GCC support library
ii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library
ii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library
ii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version)
ii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version)
ii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.2 amd64 GDK Pixbuf library
ii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.2 amd64 GDK Pixbuf library (thumbnailer)
ii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.2 all GDK Pixbuf library - data files
ii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)
ii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)
ii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.4 amd64 GLib library of C routines
ii libglib2.0-bin 2.80.0-6ubuntu3.4 amd64 Programs for the GLib library
ii libglib2.0-data 2.80.0-6ubuntu3.4 all Common files for GLib library
ii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6.1 amd64 Multiprecision arithmetic library
ii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.4 amd64 GNU TLS library - main runtime library
ii libgomp1:amd64 14.2.0-4ubuntu2~24.04 amd64 GCC OpenMP (GOMP) support library
ii libgpg-error-l10n 1.47-3build2.1 all library of error values and messages in GnuPG (localization files)
ii libgpg-error0:amd64 1.47-3build2.1 amd64 GnuPG development runtime library
ii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)
ii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library
ii libgprofng0:amd64 2.42-4ubuntu2.5 amd64 GNU Next Generation profiler (runtime library)
ii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library
ii libgs-common 10.02.1~dfsg1-0ubuntu7.7 all interpreter for the PostScript language and for PDF - ICC profiles
ii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.7 amd64 interpreter for the PostScript language and for PDF - Library
ii libgs10-common 10.02.1~dfsg1-0ubuntu7.7 all interpreter for the PostScript language and for PDF - common files
ii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.6 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libgstreamer1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 Core GStreamer libraries and elements
ii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev
ii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1
ii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)
ii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4.1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin
ii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4.1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin
ii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4.1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin
ii libheif1:amd64 1.17.6-1ubuntu4.1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)
ii libhwy1t64:amd64 1.0.7-8.1build1 amd64 Efficient and performance-portable SIMD wrapper (runtime files)
ii libibverbs1:amd64 50.0-2ubuntu0.2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)
ii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library
ii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode
ii libid3tag0:amd64 0.15.1b-14build1 amd64 ID3 tag reading library from the MAD project
ii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications
ii libidn2-0:amd64 2.3.7-2build1.1 amd64 Internationalized domain names (IDNA2008/TR46) library
ii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library
ii libimath-3-1-29t64:amd64 3.1.9-3.1ubuntu2 amd64 Utility libraries from ASF used by OpenEXR - runtime
ii libimlib2t64:amd64 1.12.1-1.1build2 amd64 image loading, rendering, saving library
ii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices
ii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser
ii libintl-perl 1.33-1build3 all Uniforum message translations system compatible i18n library
ii libintl-xs-perl 1.33-1build3 amd64 XS Uniforum message translations system compatible i18n library
ii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library
ii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library
ii libisns0t64:amd64 0.101-0.3build3 amd64 Internet Storage Name Service - shared libraries
ii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library
ii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data
ii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries
ii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries
ii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library
ii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library
ii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group's JPEG runtime library (dependency package)
ii libjq1:amd64 1.7.1-3ubuntu0.24.04.1 amd64 lightweight and flexible command-line JSON processor - shared library
ii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications
ii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library
ii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library
ii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)
ii libjxl0.7:amd64 0.7.0-10.2ubuntu6.1 amd64 JPEG XL Image Coding System - "JXL" (shared libraries)
ii libjxr-tools 1.2~git20170615.f752187-5.1ubuntu2 amd64 JPEG-XR lib - command line apps
ii libjxr0t64:amd64 1.2~git20170615.f752187-5.1ubuntu2 amd64 JPEG-XR lib - libraries
ii libk5crypto3:amd64 1.20.1-6ubuntu2.6 amd64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)
ii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs
ii libkmod2:amd64 31+20240202-2ubuntu7.1 amd64 libkmod shared library
ii libkrb5-3:amd64 1.20.1-6ubuntu2.6 amd64 MIT Kerberos runtime libraries
ii libkrb5support0:amd64 1.20.1-6ubuntu2.6 amd64 MIT Kerberos runtime libraries - Support library
ii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library
ii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library
ii libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 all OpenLDAP common files for libraries
ii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8.2 amd64 OpenLDAP libraries
ii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9.2 amd64 LDAP-like embedded database - shared library
ii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library
ii liblinear4:amd64 2.3.0+dfsg-5build1 amd64 Library for Large Linear Classification
ii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library
ii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library
ii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl
ii liblockfile-bin 1.17-1build3 amd64 support binaries for and cli utilities based on liblockfile
ii liblockfile1:amd64 1.17-1build3 amd64 NFS-safe locking library
ii liblqr-1-0:amd64 0.4.2-2.1build2 amd64 converts plain array images into multi-size representation
ii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool
ii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4
ii liblvm2cmd2.03:amd64 2.03.16-3ubuntu3.2 amd64 LVM2 command library
ii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime
ii liblzma5:amd64 5.6.1+really5.4.5-1ubuntu0.2 amd64 XZ-format compression library
ii liblzo2-2:amd64 2.10-2build4 amd64 data compression library
ii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using "magic" numbers - library
ii libmagickcore-6.q16-7-extra:amd64 8:6.9.12.98+dfsg1-5.2build2 amd64 low-level image manipulation library - extra codecs (Q16)
ii libmagickcore-6.q16-7t64:amd64 8:6.9.12.98+dfsg1-5.2build2 amd64 low-level image manipulation library -- quantum depth Q16
ii libmagickwand-6.q16-7t64:amd64 8:6.9.12.98+dfsg1-5.2build2 amd64 image manipulation library -- quantum depth Q16
ii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library
ii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol
ii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports
ii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line
ii libmd0:amd64 1.1.0-2build1.1 amd64 message digest functions from BSD systems - shared library
ii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries
ii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library
ii libmodule-find-perl 0.16-2 all module to find and use installed Perl modules
ii libmodule-scandeps-perl 1.35-1ubuntu0.24.04.1 all module to recursively scan Perl code for dependencies
ii libmount1:amd64 2.39.3-9ubuntu6.3 amd64 device mounting library
ii libmpfr6:amd64 4.2.1-1build1.1 amd64 multiple precision floating-point computation
ii libmspack0t64:amd64 0.11-1.1build1 amd64 library for Microsoft compression formats (shared library)
ii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling
ii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)
ii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol
ii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library
ii libnetpbm11t64:amd64 2:11.05.02-1.1build1 amd64 Graphics conversion tools shared libraries
ii libnetplan1:amd64 1.1.2-2~ubuntu24.04.2 amd64 Declarative network configuration runtime library
ii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)
ii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library
ii libnfsidmap1:amd64 1:2.6.4-3ubuntu5.1 amd64 NFS idmapping library
ii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library
ii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library
ii libnghttp2-14:amd64 1.59.0-1ubuntu0.2 amd64 library implementing HTTP/2 protocol (shared library)
ii libnl-3-200:amd64 3.7.0-0.3build1.1 amd64 library for dealing with netlink sockets
ii libnl-genl-3-200:amd64 3.7.0-0.3build1.1 amd64 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:amd64 3.7.0-0.3build1.1 amd64 library for dealing with netlink sockets - route interface
ii libnm0:amd64 1.46.0-1ubuntu2.2 amd64 GObject-based client library for NetworkManager
ii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads
ii libnsl2:amd64 1.3.0-3build3 amd64 Public client interface for NIS(YP) and NIS+
ii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library
ii libnss-systemd:amd64 255.4-1ubuntu8.10 amd64 nss module providing dynamic user and group name resolution
ii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries
ii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)
ii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy
ii libnvme1t64 1.8-3ubuntu1 amd64 NVMe management library (library)
ii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library
ii libopenexr-3-1-30:amd64 3.1.5-5.1build3 amd64 runtime files for the OpenEXR image library
ii libopeniscsiusr 2.1.9-3ubuntu5.4 amd64 iSCSI userspace library
ii libopenjp2-7:amd64 2.5.0-2ubuntu0.3 amd64 JPEG 2000 image compression/decompression library
ii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime
ii libpackagekit-glib2-18:amd64 1.2.8-2ubuntu1.2 amd64 Library for accessing PackageKit using GLib
ii libpam-cap:amd64 1:2.66-5ubuntu2.2 amd64 POSIX 1003.1e capabilities (PAM module)
ii libpam-modules:amd64 1.5.3-5ubuntu5.4 amd64 Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.5.3-5ubuntu5.4 amd64 Pluggable Authentication Modules for PAM - helper binaries
ii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength
ii libpam-runtime 1.5.3-5ubuntu5.4 all Runtime support for the PAM library
ii libpam-systemd:amd64 255.4-1ubuntu8.10 amd64 system and service manager - PAM module
ii libpam-tmpdir 0.09build1 amd64 automatic per-user temporary directories
ii libpam0g:amd64 1.5.3-5ubuntu5.4 amd64 Pluggable Authentication Modules library
ii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text
ii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text
ii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text
ii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)
ii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics
ii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library
ii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture
ii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)
ii libpcre2-8-0:amd64 10.42-4ubuntu2.1 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)
ii libperl5.38t64:amd64 5.38.2-3.2ubuntu0.2 amd64 shared Perl library
ii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library
ii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo
ii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists
ii libplymouth5:amd64 24.004.60-1ubuntu7.1 amd64 graphical boot animation and logger - shared libraries
ii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)
ii libpolkit-agent-1-0:amd64 124-2ubuntu1.24.04.2 amd64 polkit Authentication Agent API
ii libpolkit-gobject-1-0:amd64 124-2ubuntu1.24.04.2 amd64 polkit Authorization API
ii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters
ii libproc-processtable-perl:amd64 0.636-1build3 amd64 Perl library for accessing process table information
ii libproc2-0:amd64 2:4.0.4-4ubuntu3.2 amd64 library for accessing process information from /proc
ii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)
ii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)
ii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)
ii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation
ii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)
ii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.8 amd64 Minimal subset of the Python language (version 3.12)
ii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.8 amd64 Interactive high-level object-oriented language (standard library, version 3.12)
ii libpython3.12t64:amd64 3.12.3-1ubuntu0.8 amd64 Shared Python runtime library (version 3.12)
ii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol
ii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports
ii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line
ii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol
ii librav1e0:amd64 0.7.1-2 amd64 Fastest and safest AV1 encoder - shared library
ii libraw23t64:amd64 0.21.2-2.1ubuntu0.24.04.1 amd64 raw image decoder library
ii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries
ii libreiserfscore0t64 1:3.6.27-7.1build1 amd64 ReiserFS core library
ii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)
ii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)
ii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)
ii libruby:amd64 1:3.2~ubuntu1 amd64 Libraries necessary to run Ruby
ii libruby3.2:amd64 3.2.3-1ubuntu0.24.04.5 amd64 Libraries necessary to run Ruby 3.2
ii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library
ii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules
ii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)
ii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter
ii libselinux1:amd64 3.5-2ubuntu2.1 amd64 SELinux runtime shared libraries
ii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries
ii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library
ii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files
ii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors
ii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies
ii libsframe1:amd64 2.42-4ubuntu2.5 amd64 Library to handle the SFrame format (runtime library)
ii libsgutils2-1.46-2:amd64 1.46-3ubuntu4 amd64 utilities for devices using the SCSI command set (shared libraries)
ii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion
ii libsigsegv2:amd64 2.14-1ubuntu2 amd64 Library for handling page faults in a portable way
ii libsixel-bin 1.10.3-3build1 amd64 DEC SIXEL graphics codec implementation (binary)
ii libsixel1:amd64 1.10.3-3build1 amd64 DEC SIXEL graphics codec implementation (runtime)
ii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version
ii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library
ii libsmartcols1:amd64 2.39.3-9ubuntu6.3 amd64 smart column output alignment library
ii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9.2 amd64 shared library for communication with SMB/CIFS servers
ii libsodium23:amd64 1.0.18-1build3 amd64 Network communication, cryptography and signaturing library
ii libsort-naturally-perl 1.03-4 all Sort naturally - sort lexically except for numerical parts
ii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents
ii libsqlite3-0:amd64 3.45.1-1ubuntu2.4 amd64 SQLite 3 shared library
ii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library
ii libssh-4:amd64 0.10.6-2ubuntu0.1 amd64 tiny C SSH library (OpenSSL flavor)
ii libssh2-1t64:amd64 1.11.0-4.1build2 amd64 SSH2 client-side library
ii libssl3t64:amd64 3.0.13-0ubuntu3.5 amd64 Secure Sockets Layer toolkit - shared libraries
ii libstdc++6:amd64 14.2.0-4ubuntu2~24.04 amd64 GNU Standard C++ Library v3
ii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval
ii libsvtav1enc1d1:amd64 1.7.0+dfsg-2build1 amd64 Scalable Video Technology for AV1 (libsvtav1enc shared library)
ii libsystemd-shared:amd64 255.4-1ubuntu8.10 amd64 systemd shared private library
ii libsystemd0:amd64 255.4-1ubuntu8.10 amd64 systemd utility library
ii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator
ii libtasn1-6:amd64 4.19.0-3ubuntu0.24.04.1 amd64 Manage ASN.1 structures (runtime)
ii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files
ii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library
ii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process
ii libterm-readkey-perl 2.38-2build4 amd64 perl module for simple terminal control
ii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library
ii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal
ii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl
ii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap
ii libthai-data 0.1.29-2build1 all Data files for Thai language support library
ii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library
ii libtiff6:amd64 4.5.1+git230720-4ubuntu2.3 amd64 Tag Image File Format (TIFF) library
ii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling
ii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files
ii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library
ii libtraceevent1:amd64 1:1.8.2-1ubuntu2.1 amd64 Linux kernel trace event library (shared library)
ii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2.1 amd64 Linux kernel trace event library (plugins)
ii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)
ii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries
ii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library
ii libudev1:amd64 255.4-1ubuntu8.10 amd64 libudev shared library
ii libudisks2-0:amd64 2.10.1-6ubuntu1.2 amd64 GObject based library to access udisks2
ii libunistring5:amd64 1.1-2build1.1 amd64 Unicode string library for C
ii libunwind8:amd64 1.6.2-3build1.1 amd64 library to determine the call-chain of a program - runtime
ii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library
ii liburcu8t64:amd64 0.14.0-3.1build1 amd64 userspace RCU (read-copy-update) library
ii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library
ii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library
ii libutempter0:amd64 1.2.1-3build1 amd64 privileged helper for utmp/wtmp updates (runtime)
ii libuuid1:amd64 2.39.3-9ubuntu6.3 amd64 Universally Unique ID library
ii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library
ii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases
ii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9.2 amd64 Samba winbind client library
ii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images
ii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.
ii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images
ii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library
ii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema's TCP wrappers library
ii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library
ii libx11-data 2:1.8.7-1build1 all X11 client-side library
ii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library
ii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library
ii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension
ii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension
ii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding
ii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library
ii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library
ii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library
ii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3.4 amd64 GNOME XML library
ii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library
ii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library
ii libxmlsec1t64-openssl:amd64 1.2.39-5build2 amd64 Openssl engine for the XML security library
ii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library
ii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library
ii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library
ii libxslt1.1:amd64 1.1.39-0exp1ubuntu0.24.04.2 amd64 XSLT 1.0 processing library - runtime library
ii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library
ii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library
ii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash
ii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library
ii libyuv0:amd64 0.0~git202401110.af6ac82-1 amd64 Library for YUV scaling (shared library)
ii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm
ii linux-base 4.5ubuntu9+24.04.1 all Linux image base package
ii linux-firmware 20240318.git3b128b60-0ubuntu2.15 amd64 Firmware for Linux kernel drivers
ii linux-generic-hwe-24.04 6.14.0-28.28~24.04.1 amd64 Complete Generic Linux kernel and headers
ii linux-headers-6.14.0-24-generic 6.14.0-24.24~24.04.3 amd64 Linux kernel headers for version 6.14.0
ii linux-headers-6.14.0-28-generic 6.14.0-28.28~24.04.1 amd64 Linux kernel headers for version 6.14.0
ii linux-headers-generic-hwe-24.04 6.14.0-28.28~24.04.1 amd64 Generic Linux kernel headers
ii linux-hwe-6.14-headers-6.14.0-24 6.14.0-24.24~24.04.3 all Header files related to Linux kernel version 6.14.0
ii linux-hwe-6.14-headers-6.14.0-28 6.14.0-28.28~24.04.1 all Header files related to Linux kernel version 6.14.0
ii linux-hwe-6.14-tools-6.14.0-24 6.14.0-24.24~24.04.3 amd64 Linux kernel version specific tools for version 6.14.0-24
ii linux-hwe-6.14-tools-6.14.0-28 6.14.0-28.28~24.04.1 amd64 Linux kernel version specific tools for version 6.14.0-28
rc linux-image-6.11.0-28-generic 6.11.0-28.28~24.04.1 amd64 Signed kernel image generic
rc linux-image-6.11.0-29-generic 6.11.0-29.29~24.04.1 amd64 Signed kernel image generic
ii linux-image-6.14.0-24-generic 6.14.0-24.24~24.04.3 amd64 Signed kernel image generic
rc linux-image-6.14.0-27-generic 6.14.0-27.27~24.04.1 amd64 Signed kernel image generic
ii linux-image-6.14.0-28-generic 6.14.0-28.28~24.04.1 amd64 Signed kernel image generic
ii linux-image-generic-hwe-24.04 6.14.0-28.28~24.04.1 amd64 Generic Linux kernel image
ii linux-libc-dev:amd64 6.8.0-78.78 amd64 Linux Kernel Headers for development
rc linux-modules-6.11.0-28-generic 6.11.0-28.28~24.04.1 amd64 Linux kernel extra modules for version 6.11.0 on 64 bit x86 SMP
rc linux-modules-6.11.0-29-generic 6.11.0-29.29~24.04.1 amd64 Linux kernel extra modules for version 6.11.0 on 64 bit x86 SMP
ii linux-modules-6.14.0-24-generic 6.14.0-24.24~24.04.3 amd64 Linux kernel extra modules for version 6.14.0
rc linux-modules-6.14.0-27-generic 6.14.0-27.27~24.04.1 amd64 Linux kernel extra modules for version 6.14.0
ii linux-modules-6.14.0-28-generic 6.14.0-28.28~24.04.1 amd64 Linux kernel extra modules for version 6.14.0
rc linux-modules-extra-6.11.0-28-generic 6.11.0-28.28~24.04.1 amd64 Linux kernel extra modules for version 6.11.0 on 64 bit x86 SMP
rc linux-modules-extra-6.11.0-29-generic 6.11.0-29.29~24.04.1 amd64 Linux kernel extra modules for version 6.11.0 on 64 bit x86 SMP
ii linux-modules-extra-6.14.0-24-generic 6.14.0-24.24~24.04.3 amd64 Linux kernel extra modules for version 6.14.0
rc linux-modules-extra-6.14.0-27-generic 6.14.0-27.27~24.04.1 amd64 Linux kernel extra modules for version 6.14.0
ii linux-modules-extra-6.14.0-28-generic 6.14.0-28.28~24.04.1 amd64 Linux kernel extra modules for version 6.14.0
ii linux-tools-6.14.0-24-generic 6.14.0-24.24~24.04.3 amd64 Linux kernel version specific tools for version 6.14.0-24
ii linux-tools-6.14.0-28-generic 6.14.0-28.28~24.04.1 amd64 Linux kernel version specific tools for version 6.14.0-28
ii linux-tools-common 6.8.0-78.78 all Linux kernel version specific tools for version 6.8.0
ii locales 2.39-0ubuntu8.5 all GNU C Library: National Language (locale) data [support]
ii login 1:4.13+dfsg1-4ubuntu3.2 amd64 system login tools
ii logrotate 3.21.0-2build1 amd64 Log rotation utility
ii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file
ii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality
ii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)
ii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration
ii lsof 4.95.0-1build3 amd64 utility to list open files
ii lvm2 2.03.16-3ubuntu3.2 amd64 Linux Logical Volume Manager
ii lxd-agent-loader 0.7ubuntu0.1 all LXD - VM agent loader
ii lxd-installer 4ubuntu0.1 all Wrapper to install lxd snap on demand
ii lynis 3.0.9-1 all security auditing tool for Unix based systems
ii man-db 2.12.0-4build2 amd64 tools for reading manual pages
ii manpages 6.7-2 all Manual pages about using a GNU/Linux system
ii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development
ii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language
ii mdadm 4.3-1ubuntu2.1 amd64 tool for managing Linux MD devices (software RAID)
ii media-types 10.1.0 all List of standard media types and their usual file extension
ii menu 2.1.50 amd64 generates programs menu for all menu-aware applications
ii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems
ii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys
ii motd-news-config 13ubuntu10.3 all Configuration for motd-news shipped in base-files
ii mount 2.39.3-9ubuntu6.3 amd64 tools for mounting and manipulating filesystems
ii mtr-tiny 0.95-1.1ubuntu0.1 amd64 Full screen ncurses traceroute tool
ii multipath-tools 0.9.4-5ubuntu8 amd64 maintain multipath block device access
ii nano 7.2-2ubuntu0.1 amd64 small, friendly text editor inspired by Pico
ii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions
ii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages
ii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions
ii needrestart 3.6-7ubuntu4.5 all check which daemons need to be restarted after library upgrades
ii neofetch 7.1.0-4 all Shows Linux System Information with Distribution Logo
ii net-tools 2.10-0.1ubuntu4.4 amd64 NET-3 networking toolkit
ii netbase 6.4 all Basic TCP/IP networking system
ii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife
rc netdata-core 1.43.2-1build2 amd64 real-time performance monitoring (core)
ii netpbm 2:11.05.02-1.1build1 amd64 Graphics conversion tools between image formats
ii netplan-generator 1.1.2-2~ubuntu24.04.2 amd64 Declarative network configuration for various backends at boot
ii netplan.io 1.1.2-2~ubuntu24.04.2 amd64 Declarative network configuration for various backends at runtime
ii network-manager 1.46.0-1ubuntu2.2 amd64 network management framework (daemon and userspace tools)
ii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)
ii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes
ii nfs-common 1:2.6.4-3ubuntu5.1 amd64 NFS support files common to client and server
ii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project
ii nmap 7.94+git20230807.3be01efb1+dfsg-3build2 amd64 The Network Mapper
ii nmap-common 7.94+git20230807.3be01efb1+dfsg-3build2 all Architecture independent files for nmap
ii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE
ii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool
ii open-iscsi 2.1.9-3ubuntu5.4 amd64 iSCSI initiator tools
ii open-vm-tools 2:12.4.5-1~ubuntu0.24.04.2 amd64 Open VMware Tools for virtual machines hosted on VMware (CLI)
ii openssh-client 1:9.6p1-3ubuntu13.13 amd64 secure shell (SSH) client, for secure access to remote machines
ii openssh-server 1:9.6p1-3ubuntu13.13 amd64 secure shell (SSH) server, for secure access from remote machines
ii openssh-sftp-server 1:9.6p1-3ubuntu13.13 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines
ii openssl 3.0.13-0ubuntu3.5 amd64 Secure Sockets Layer toolkit - cryptographic utility
ii orb 1.2.0 amd64 Orb is the next big thing in connectivity measurement!
ii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives
ii overlayroot 0.49~24.04.1 all use an overlayfs on top of a read-only root filesystem
ii packagekit 1.2.8-2ubuntu1.2 amd64 Provides a package management service
ii packagekit-tools 1.2.8-2ubuntu1.2 amd64 Provides PackageKit command-line tools
ii parted 3.6-4build1 amd64 disk partition manipulator
ii passwd 1:4.13+dfsg1-4ubuntu3.2 amd64 change and administer password and group data
ii pastebinit 1.6.2-1 all command-line pastebin client
ii patch 2.7.6-7build3 amd64 Apply a diff file to an original
ii pci.ids 0.0~2024.03.31-1ubuntu0.1 all PCI ID Repository
ii pciutils 1:3.10.0-2build1 amd64 PCI utilities
ii perl 5.38.2-3.2ubuntu0.2 amd64 Larry Wall's Practical Extraction and Report Language
ii perl-base 5.38.2-3.2ubuntu0.2 amd64 minimal Perl system
ii perl-modules-5.38 5.38.2-3.2ubuntu0.2 all Core Perl modules
ii pigz 2.8-1 amd64 Parallel Implementation of GZip
ii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG
ii plymouth 24.004.60-1ubuntu7.1 amd64 boot animation, logger and I/O multiplexer
ii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7.1 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme
ii polkitd 124-2ubuntu1.24.04.2 amd64 framework for managing administrative policies and privileges
ii pollinate 4.33-3.1ubuntu1.1 all seed the pseudo random number generator
ii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library
ii postfix 3.8.6-1build2 amd64 High-performance mail transport agent
ii powermgmt-base 1.37 all common utils for power management
ii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon
ii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client
ii procps 2:4.0.4-4ubuntu3.2 amd64 /proc file system utilities
ii psmisc 23.7-1build1 amd64 utilities that use the proc file system
ii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes
ii python-apt-common 2.7.7ubuntu5 all Python interface to libapt-pkg (locales)
ii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files
ii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)
ii python3-apport 2.28.1-0ubuntu3.8 all Python 3 library for Apport crash report handling
ii python3-apt 2.7.7ubuntu5 amd64 Python 3 interface to libapt-pkg
ii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)
ii python3-automat 22.10.0-2 all Self-service finite-state machines for the programmer on the go
ii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x
ii python3-bcrypt 3.2.2-1build1 amd64 password hashing library for Python 3
ii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)
ii python3-boto3 1.34.46+dfsg-1ubuntu1 all Python interface to Amazon's Web Services - Python 3.x
ii python3-botocore 1.34.46+repack-1ubuntu1 all Low-level, data-driven core of boto 3 (Python 3)
ii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)
ii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)
ii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime
ii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)
ii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x
ii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x
ii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.
ii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3
ii python3-constantly 23.10.4-1 all Symbolic constants in Python
ii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)
ii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module
ii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)
ii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3
ii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats
ii python3-distro 1.9.0-1 all Linux OS platform information API
ii python3-distro-info 1.7build1 all information about distributions' releases (Python 3 module)
ii python3-distupgrade 1:24.04.27 all manage release upgrades
ii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x
ii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries
ii python3-gpg 1.18.0-4.1ubuntu4 amd64 Python interface to the GPGME GnuPG encryption library (Python 3)
ii python3-hamcrest 2.1.0-1 all Hamcrest framework for matcher objects (Python 3)
ii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3
ii python3-hyperlink 21.0.0-5 all Immutable, Pythonic, correct URLs.
ii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)
ii python3-incremental 22.10.0-1 all Library for versioning Python projects
ii python3-jinja2 3.1.2-1ubuntu1.3 all small but fast and easy to use stand-alone template engine
ii python3-jmespath 1.0.1-1 all JSON Matching Expressions (Python 3)
ii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x
ii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x
ii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)
ii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token
ii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)
ii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)
ii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs
ii python3-ldb 2:2.8.0+samba4.19.5+dfsg-4ubuntu9.2 amd64 Python 3 bindings for LDB
ii python3-magic 2:0.4.27-3 all python3 interface to the libmagic file type identification library
ii python3-markdown 3.5.2-1 all text-to-HTML conversion library/tool (Python 3 version)
ii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins
ii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library
ii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package
ii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)
ii python3-msgpack 1.0.3-3build2 amd64 Python 3 implementation of MessagePack format
ii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)
ii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x
ii python3-netplan 1.1.2-2~ubuntu24.04.2 amd64 Declarative network configuration Python bindings
ii python3-newt:amd64 0.52.24-2ubuntu2 amd64 NEWT module for Python3
ii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3
ii python3-openssl 23.2.0-1 all Python 3 wrapper around the OpenSSL library
ii python3-packaging 24.0-1 all core utilities for python3 packages
ii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications
ii python3-pkg-resources 68.1.2-2ubuntu1.2 all Package Discovery and Resource Access using pkg_resources
ii python3-problem-report 2.28.1-0ubuntu3.8 all Python 3 library to handle problem reports
ii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3
ii python3-pyasn1 0.4.8-4 all ASN.1 library for Python (Python 3 module)
ii python3-pyasn1-modules 0.2.8-1 all Collection of protocols modules written in ASN.1 language (Python 3)
ii python3-pyasyncore 1.0.2-2 all asyncore for Python 3.12 onwards
ii python3-pycurl 7.45.3-1build2 amd64 Python bindings to libcurl (Python 3)
ii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3
ii python3-pyinotify 0.9.6-2ubuntu1 all simple Linux inotify Python bindings
ii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x
ii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python
ii python3-requests 2.31.0+dfsg-1ubuntu1.1 all elegant and simple HTTP library for Python3, built for human beings
ii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more
ii python3-s3transfer 0.10.1-1ubuntu2 all Amazon S3 Transfer Manager for Python3
ii python3-samba 2:4.19.5+dfsg-4ubuntu9.2 amd64 Python 3 bindings for Samba
ii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port
ii python3-service-identity 24.1.0-1 all Service identity verification for pyOpenSSL (Python 3 module)
ii python3-setuptools 68.1.2-2ubuntu1.2 all Python3 Distutils Enhancements
ii python3-six 1.16.0-4 all Python 2 and 3 compatibility library
ii python3-software-properties 0.99.49.2 all manage the repositories that you install software from
ii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd
ii python3-talloc:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator - Python3 bindings
ii python3-tdb 1.4.10-1build1 amd64 Python3 bindings for TDB
ii python3-twisted 24.3.0-1ubuntu0.1 all Event-based framework for internet applications
ii python3-tz 2024.1-2 all Python3 version of the Olson timezone database
ii python3-update-manager 1:24.04.12 all Python 3.x module for update-manager
ii python3-urllib3 2.0.7-1ubuntu0.2 all HTTP library with thread-safe connection pooling for Python3
ii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files
ii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)
ii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3
ii python3-zope.interface 6.1-1build1 amd64 Interfaces for Python3
ii python3.12 3.12.3-1ubuntu0.8 amd64 Interactive high-level object-oriented language (version 3.12)
ii python3.12-minimal 3.12.3-1ubuntu0.8 amd64 Minimal subset of the Python language (version 3.12)
ii rake 13.0.6-3 all ruby make-like utility
ii readline-common 8.2-4build1 all GNU readline and history libraries, common files
ii rkhunter 1.4.6-12 all rootkit, backdoor, sniffer and exploit scanner
ii rpcbind 1.2.6-7ubuntu2 amd64 converts RPC program numbers into universal addresses
ii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions
ii rsync 3.2.7-1ubuntu1.2 amd64 fast, versatile, remote (and local) file-copying tool
ii rsyslog 8.2312.0-3ubuntu9.1 amd64 reliable system and kernel logging daemon
ii ruby 1:3.2~ubuntu1 amd64 Interpreter of object-oriented scripting language Ruby (default version)
ii ruby-net-telnet 0.2.0-1 all telnet client library
ii ruby-rubygems 3.4.20-1 all Package management framework for Ruby
ii ruby-sdbm:amd64 1.0.0-5build4 amd64 simple file-based key-value store with String keys and values
ii ruby-webrick 1.8.1-1ubuntu0.2 all HTTP server toolkit in Ruby
ii ruby-xmlrpc 0.3.2-2 all XMLRPC library for Ruby
ii ruby3.2 3.2.3-1ubuntu0.24.04.5 amd64 Interpreter of object-oriented scripting language Ruby
ii rubygems-integration 1.18 all integration of Debian Ruby packages with Rubygems
ii run-one 1.17-0ubuntu2 all run just one instance of a command and its args at a time
ii runc 1.2.5-0ubuntu1~24.04.1 amd64 Open Container Project - runtime
ii samba-common 2:4.19.5+dfsg-4ubuntu9.2 all common files used by both the Samba server and client
ii samba-common-bin 2:4.19.5+dfsg-4ubuntu9.2 amd64 Samba common files used by both the server and the client
ii samba-dsdb-modules:amd64 2:4.19.5+dfsg-4ubuntu9.2 amd64 Samba Directory Services Database
ii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9.2 amd64 Samba core libraries
ii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers
ii screen 4.9.1-1build1 amd64 terminal multiplexer with VT100/ANSI terminal emulation
ii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX
ii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text
ii sensible-utils 0.0.22 all Utilities for sensible alternative selection
ii sg3-utils 1.46-3ubuntu4 amd64 utilities for devices using the SCSI command set
ii sg3-utils-udev 1.46-3ubuntu4 all utilities for devices using the SCSI command set (udev rules)
ii sgml-base 1.31 all SGML infrastructure and SGML catalog file support
ii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec
ii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)
ii smbclient 2:4.19.5+dfsg-4ubuntu9.2 amd64 command-line SMB/CIFS clients for Unix
ii snapd 2.68.5+ubuntu24.04.1 amd64 Daemon and tooling that enable snap packages
ii software-properties-common 0.99.49.2 all manage the repositories that you install software from (common)
ii sosreport 4.8.2-0ubuntu0~24.04.2 amd64 Set of tools to gather troubleshooting data from a system
ii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems
ii ssh-import-id 5.11-0ubuntu2.24.04.1 all securely retrieve an SSH public key and install it locally
ii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL
ii strace 6.8-0ubuntu2 amd64 System call tracer
ii sudo 1.9.15p5-3ubuntu5.24.04.1 amd64 Provide limited super user privileges to specific users
ii sysstat 12.6.1-2 amd64 system performance tools for Linux
ii systemd 255.4-1ubuntu8.10 amd64 system and service manager
ii systemd-dev 255.4-1ubuntu8.10 all systemd development files
ii systemd-hwe-hwdb 255.1.4 all udev rules for hardware enablement (HWE)
ii systemd-resolved 255.4-1ubuntu8.10 amd64 systemd DNS resolver
ii systemd-sysv 255.4-1ubuntu8.10 amd64 system and service manager - SysV compatibility symlinks
ii systemd-timesyncd 255.4-1ubuntu8.10 amd64 minimalistic service to synchronize local time with NTP servers
ii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities
ii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility
ii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell
ii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell
ii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer
ii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch
ii thermald 2.5.6-2ubuntu0.24.04.2 amd64 Thermal monitoring and controlling daemon
ii thin-provisioning-tools 0.9.0-2ubuntu5.1 amd64 Tools for handling thinly provisioned device-mapper meta-data
ii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage
ii tmux 3.4-1ubuntu0.1 amd64 terminal multiplexer
ii tnftp 20230507-2build3 amd64 enhanced ftp client
ii toilet 0.3-1.4build1 amd64 display large colourful characters in text mode
ii toilet-fonts 0.3-1.4build1 all collection of TOIlet fonts
ii tpm-udev 0.6ubuntu1 all udev rules for TPM modules
ii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel
ii tree 2.1.1-2ubuntu3 amd64 displays an indented directory tree, in color
ii tzdata 2025b-0ubuntu0.24.04.1 all time zone and daylight-saving time data
ii ubuntu-drivers-common 1:0.9.7.6ubuntu3.2 amd64 Detect and install additional Ubuntu driver packages
ii ubuntu-fan 0.12.16+24.04.1 all Ubuntu FAN network support enablement
ii ubuntu-kernel-accessories 1.539.2 amd64 packages useful to install by default on systems with kernels
ii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive
ii ubuntu-minimal 1.539.2 amd64 Minimal core of Ubuntu
ii ubuntu-pro-client 36ubuntu0~24.04 amd64 Management tools for Ubuntu Pro
ii ubuntu-pro-client-l10n 36ubuntu0~24.04 amd64 Translations for Ubuntu Pro Client
ii ubuntu-release-upgrader-core 1:24.04.27 all manage release upgrades
ii ubuntu-server 1.539.2 amd64 Ubuntu Server system
ii ubuntu-server-minimal 1.539.2 amd64 Ubuntu Server minimal system
ii ubuntu-standard 1.539.2 amd64 Ubuntu standard system
ii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files
ii udev 255.4-1ubuntu8.10 amd64 /dev/ and hotplug management daemon
ii udisks2 2.10.1-6ubuntu1.2 amd64 D-Bus service to access and manipulate storage devices
ii ufw 0.36.2-6 all program for managing a Netfilter firewall
ii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades
ii unhide 20220611-1ubuntu1 amd64 forensic tool to find hidden processes and ports
ii unhide.rb 22-6 all Forensics tool to find processes hidden by rootkits
ii unminimize 0.2.1 amd64 Un-minimize your minimial images or setup
ii unzip 6.0-28ubuntu4.1 amd64 De-archiver for .zip files
ii update-manager-core 1:24.04.12 all manage release upgrades
ii update-notifier-common 3.192.68.2 all Files shared between update-notifier and other packages
ii upower 1.90.3-1 amd64 abstraction for power management
ii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling "flip flop" USB devices
ii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch
ii usb.ids 2024.03.18-1 all USB ID Repository
ii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices
ii usbutils 1:017-3build1 amd64 Linux USB utilities
ii util-linux 2.39.3-9ubuntu6.3 amd64 miscellaneous system utilities
ii uuid-runtime 2.39.3-9ubuntu6.3 amd64 runtime components for the Universally Unique ID library
ii vim 2:9.1.0016-1ubuntu7.8 amd64 Vi IMproved - enhanced vi editor
ii vim-common 2:9.1.0016-1ubuntu7.8 all Vi IMproved - Common files
ii vim-runtime 2:9.1.0016-1ubuntu7.8 all Vi IMproved - Runtime files
ii vim-tiny 2:9.1.0016-1ubuntu7.8 amd64 Vi IMproved - enhanced vi editor - compact version
ii w3m 0.5.3+git20230121-2ubuntu5 amd64 WWW browsable pager with excellent tables/frames support
ii w3m-img 0.5.3+git20230121-2ubuntu5 amd64 inline image extension support utilities for w3m
ii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict
ii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web
ii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts
ii whois 5.5.22 amd64 intelligent WHOIS client
ii wireless-regdb 2024.10.07-0ubuntu2~24.04.1 all wireless regulatory database
ii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions
ii wpasupplicant 2:2.10-21ubuntu0.2 amd64 client support for WPA and WPA2 (IEEE 802.11i)
ii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure
ii xauth 1:1.1.2-1build1 amd64 X authentication utility
ii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories
ii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts
ii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs
ii xfsprogs 6.6.0-1ubuntu2.1 amd64 Utilities for managing the XFS filesystem
ii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data
ii xml-core 0.19 all XML infrastructure and XML catalog file support
ii xxd 2:9.1.0016-1ubuntu7.8 amd64 tool to make (or reverse) a hex dump
ii xz-utils 5.6.1+really5.4.5-1ubuntu0.2 amd64 XZ-format compression utilities
ii zerofree 1.1.1-1build5 amd64 zero free blocks from ext2, ext3 and ext4 file-systems
ii zip 3.0-13ubuntu0.2 amd64 Archiver for .zip files
ii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime
ii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool

View File

@@ -0,0 +1,54 @@
{
"scan_info": {
"timestamp": "2025-08-23T02:45:08+00:00",
"hostname": "audrey",
"scanner_version": "2.0",
"scan_duration": "21s"
},
"system": {
"hostname": "audrey",
"fqdn": "audrey",
"ip_addresses": "192.168.50.145,100.118.220.45,172.17.0.1,172.18.0.1,172.19.0.1,fd56:f1f9:1afc:8f71:36cf:f6ff:fee7:6530,fd7a:115c:a1e0::c934:dc2d,",
"os": "Ubuntu 24.04.3 LTS",
"kernel": "6.14.0-24-generic",
"architecture": "x86_64",
"uptime": "up 4 weeks, 2 days, 2 hours, 54 minutes"
},
"containers": {
"docker_installed": true,
"podman_installed": false,
"running_containers": 4
},
"security": {
"ssh_root_login": "unknown",
"ufw_status": "inactive",
"failed_ssh_attempts": 4,
"open_ports": [
"22",
"53",
"111",
"688",
"3001",
"5353",
"7443",
"8443",
"9001",
"9999",
"34979",
"35321",
"36655",
"37795",
"38480",
"39440",
"39465",
"39830",
"43625",
"45879",
"49627",
"49720",
"52283",
"55075",
"58384"
]
}
}

View File

@@ -0,0 +1,33 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Fri Aug 22 10:44:02 PM EDT 2025
Script Version: 2.0
Hostname: fedora
FQDN: fedora
IP Addresses: 192.168.50.225 192.168.50.28 100.81.202.21 172.22.0.1 172.17.0.1 172.21.0.1 172.19.0.1 fd56:f1f9:1afc:8f71:cdda:7b2a:77e:45f3 fd7a:115c:a1e0::1:ca16
=== SYSTEM INFORMATION ===
OS: Fedora Linux 42 (Workstation Edition)
Kernel: 6.15.9-201.fc42.x86_64
Architecture: x86_64
Uptime: up 6 days, 12 hours, 25 minutes
=== SECURITY STATUS ===
SSH Root Login: unknown
UFW Status: not_installed
Failed SSH Attempts: 0
0
=== CONTAINER STATUS ===
Docker: Installed
Podman: Installed
Running Containers: 1
=== FILES GENERATED ===
total 308
drwxr-xr-x. 2 root root 140 Aug 22 22:44 .
drwxrwxrwt. 439 root root 18160 Aug 22 22:44 ..
-rw-r--r--. 1 root root 189632 Aug 22 22:44 audit.log
-rw-r--r--. 1 root root 423 Aug 22 22:43 packages_dpkg.txt
-rw-r--r--. 1 root root 113616 Aug 22 22:43 packages_rpm.txt
-rw-r--r--. 1 root root 0 Aug 22 22:44 results.json
-rw-r--r--. 1 root root 664 Aug 22 22:44 SUMMARY.txt

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,6 @@
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============-================-============-=========================================
iU kiro 0.1.6-1752623000 amd64 Alongside you from concept to production.

View File

@@ -0,0 +1,32 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Fri Aug 22 10:33:03 PM EDT 2025
Script Version: 2.0
Hostname: jonathan-2518f5u
FQDN: jonathan-2518f5u
IP Addresses: 192.168.50.181 192.168.50.160 100.99.235.80 192.168.16.1 172.29.0.1 172.23.0.1 172.17.0.1 172.19.0.1 172.18.0.1 172.26.0.1 172.24.0.1 172.21.0.1 172.25.0.1 192.168.64.1 172.27.0.1 172.20.0.1 fd56:f1f9:1afc:8f71:8f98:16ad:28b:1523 fd56:f1f9:1afc:8f71:b57d:2b7a:bb85:7993 fd56:f1f9:1afc:8f71:283c:619d:685c:182d fd56:f1f9:1afc:8f71:7730:1518:add3:afd2 fd56:f1f9:1afc:8f71:1329:86f1:245b:fa93 fd56:f1f9:1afc:8f71:b2a5:22ad:f305:a60a fd56:f1f9:1afc:8f71:3ff4:bebf:6ba1:be02 fd56:f1f9:1afc:8f71:8f9:8ff7:e18f:d3e7 fd56:f1f9:1afc:8f71:540b:3234:a5ca:3da2 fd56:f1f9:1afc:8f71:9851:b6b8:a170:2f97 fd56:f1f9:1afc:8f71:46d3:5a8a:4a29:f375 fd56:f1f9:1afc:8f71:ac24:6086:c6a0:da93 fd56:f1f9:1afc:8f71:5c59:fc73:e17a:7330 fd56:f1f9:1afc:8f71:81ff:3f1b:a376:d430 fd56:f1f9:1afc:8f71:183d:31b2:fb84:dd49 fd56:f1f9:1afc:8f71:259a:1656:2a6d:72cc fd7a:115c:a1e0::ed01:eb51
=== SYSTEM INFORMATION ===
OS: Ubuntu 24.04.3 LTS
Kernel: 6.8.0-71-generic
Architecture: x86_64
Uptime: up 2 weeks, 3 days, 46 minutes
=== SECURITY STATUS ===
SSH Root Login: unknown
UFW Status: inactive
Failed SSH Attempts: 0
0
=== CONTAINER STATUS ===
Docker: Installed
Podman: Not installed
Running Containers: 15
=== FILES GENERATED ===
total 412
drwxr-xr-x 2 root root 120 Aug 22 22:33 .
drwxrwxrwt 27 root root 2020 Aug 22 22:33 ..
-rw-r--r-- 1 root root 122517 Aug 22 22:33 audit.log
-rw-r--r-- 1 root root 292299 Aug 22 22:32 packages_dpkg.txt
-rw-r--r-- 1 root root 0 Aug 22 22:33 results.json
-rw-r--r-- 1 root root 1364 Aug 22 22:33 SUMMARY.txt

View File

@@ -0,0 +1,31 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Fri Aug 22 10:52:36 PM EDT 2025
Script Version: 2.0
Hostname: lenovo420
FQDN: lenovo420
IP Addresses: 192.168.50.66 192.168.50.69 100.98.144.95 172.20.0.1 172.21.0.1 172.23.0.1 172.17.0.1 172.18.0.1 172.22.0.1
=== SYSTEM INFORMATION ===
OS: Ubuntu 24.04.3 LTS
Kernel: 6.14.0-28-generic
Architecture: x86_64
Uptime: up 15 hours, 56 minutes
=== SECURITY STATUS ===
SSH Root Login: unknown
UFW Status: inactive
Failed SSH Attempts: 6
=== CONTAINER STATUS ===
Docker: Installed
Podman: Not installed
Running Containers: 7
=== FILES GENERATED ===
total 496
drwxr-xr-x 2 root root 4096 Aug 22 22:52 .
drwxrwxrwt 13 root root 73728 Aug 22 22:52 ..
-rw-r--r-- 1 root root 66069 Aug 22 22:52 audit.log
-rw-r--r-- 1 root root 344195 Aug 22 22:32 packages_dpkg.txt
-rw-r--r-- 1 root root 1067 Aug 22 22:52 results.json
-rw-r--r-- 1 root root 594 Aug 22 22:52 SUMMARY.txt

View File

@@ -0,0 +1,977 @@
[2025-08-22 22:32:22] [INFO] Starting comprehensive system audit on lenovo420
[2025-08-22 22:32:22] [INFO] Output directory: /tmp/system_audit_lenovo420_20250822_223222
[2025-08-22 22:32:22] [INFO] Script version: 2.0
[2025-08-22 22:32:22] [INFO] Validating environment and dependencies...
[2025-08-22 22:32:22] [WARN] Optional tool not found: podman
[2025-08-22 22:32:22] [WARN] Optional tool not found: vnstat
[2025-08-22 22:32:22] [INFO] Environment validation completed
[2025-08-22 22:32:22] [INFO] Running with root privileges
[2025-08-22 22:32:22] [INFO] Running module: collect_system_info
==== SYSTEM INFORMATION ====
--- Basic System Details ---
Hostname: lenovo420
FQDN: lenovo420
IP Addresses: 192.168.50.66 192.168.50.69 100.98.144.95 172.20.0.1 172.21.0.1 172.23.0.1 172.17.0.1 172.18.0.1 172.22.0.1
Date/Time: Fri Aug 22 10:32:22 PM EDT 2025
Uptime: 22:32:22 up 15:36, 1 user, load average: 0.06, 0.26, 0.39
Load Average: 0.06 0.26 0.39 1/509 664511
Architecture: x86_64
Kernel: 6.14.0-28-generic
Distribution: Ubuntu 24.04.3 LTS
Kernel Version: #28~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 25 10:47:01 UTC 2
--- Hardware Information ---
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 36 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Vendor ID: GenuineIntel
BIOS Vendor ID: Intel(R) Corporation
Model name: Intel(R) Core(TM) i5-2520M CPU @ 2.50GHz
BIOS Model name: Intel(R) Core(TM) i5-2520M CPU @ 2.50GHz None CPU @ 2.5GHz
BIOS CPU family: 205
CPU family: 6
Model: 42
Thread(s) per core: 2
Core(s) per socket: 2
Socket(s): 1
Stepping: 7
CPU(s) scaling MHz: 93%
CPU max MHz: 3200.0000
CPU min MHz: 800.0000
BogoMIPS: 4983.37
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp xsaveopt dtherm ida arat pln pts md_clear flush_l1d
L1d cache: 64 KiB (2 instances)
L1i cache: 64 KiB (2 instances)
L2 cache: 512 KiB (2 instances)
L3 cache: 3 MiB (1 instance)
NUMA node(s): 1
NUMA node0 CPU(s): 0-3
Vulnerability Gather data sampling: Not affected
Vulnerability Ghostwrite: Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit: KVM: Mitigation: VMX unsupported
Vulnerability L1tf: Mitigation; PTE Inversion
Vulnerability Mds: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Mmio stale data: Unknown: No mitigations
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Not affected
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
total used free shared buff/cache available
Mem: 15Gi 1.4Gi 11Gi 2.2Mi 2.7Gi 14Gi
Swap: 3.7Gi 0B 3.7Gi
Filesystem Size Used Avail Use% Mounted on
tmpfs 1.6G 1.7M 1.6G 1% /run
/dev/sda2 468G 30G 416G 7% /
tmpfs 7.8G 324K 7.8G 1% /dev/shm
tmpfs 5.0M 12K 5.0M 1% /run/lock
efivarfs 56K 19K 33K 36% /sys/firmware/efi/efivars
/dev/sda1 1.1G 6.2M 1.1G 1% /boot/efi
/dev/sdb1 117G 2.1M 111G 1% /mnt/sdb
tmpfs 1.6G 132K 1.6G 1% /run/user/1000
//192.168.50.229/pictures 17T 2.8T 14T 17% /mnt/omv_immich_pics
//192.168.50.229/immich 17T 2.8T 14T 17% /mnt/omv_immich_smb
192.168.50.107:/export/t420_backup 7.3T 306G 7.0T 5% /mnt/omv-backup
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/4cad63c70a53404193aced3da9d8fe330cb9e0a9938ef1a4016bfac90099dba3/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/cc14f7164c79ede3d689254e40d118fb130eddb68ba1101e10d6ad2de7d2c070/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/3433eb860df705d53faf849691eabd1d0c82505c222b48ffc58ca04461c3764c/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 476.9G 0 disk
├─sda1 8:1 0 1G 0 part /boot/efi
└─sda2 8:2 0 475.9G 0 part /
sdb 8:16 0 119.2G 0 disk
└─sdb1 8:17 0 119.2G 0 part /mnt/sdb
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (Lewisville) (rev 04)
00:1a.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 (rev b4)
00:1c.1 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 (rev b4)
00:1c.3 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 (rev b4)
00:1c.4 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 5 (rev b4)
00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation QM67 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port Mobile SATA AHCI Controller (rev 04)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller (rev 04)
01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [Quadro NVS 4200M] (rev a1)
01:00.1 Audio device: NVIDIA Corporation GF119 HDMI Audio Controller (rev a1)
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
0d:00.0 System peripheral: Ricoh Co Ltd PCIe SDXC/MMC Host Controller (rev 05)
0d:00.3 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 PCIe IEEE 1394 Controller (rev 04)
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 003: ID 17ef:1003 Lenovo Integrated Smart Card Reader
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
[2025-08-22 22:32:23] [INFO] Running module: collect_network_info
==== NETWORK INFORMATION ====
--- Network Interfaces ---
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
2: enp0s25: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
link/ether 00:21:cc:ba:42:65 brd ff:ff:ff:ff:ff:ff
inet 192.168.50.66/24 brd 192.168.50.255 scope global noprefixroute enp0s25
valid_lft forever preferred_lft forever
3: wlp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 60:d8:19:c5:59:f8 brd ff:ff:ff:ff:ff:ff
inet 192.168.50.69/24 brd 192.168.50.255 scope global dynamic noprefixroute wlp3s0
valid_lft 28647sec preferred_lft 28647sec
4: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq_codel state UNKNOWN group default qlen 500
link/none
inet 100.98.144.95/32 scope global tailscale0
valid_lft forever preferred_lft forever
5: br-4b4f41534d72: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 66:6a:1c:cd:00:ca brd ff:ff:ff:ff:ff:ff
inet 172.20.0.1/16 brd 172.20.255.255 scope global br-4b4f41534d72
valid_lft forever preferred_lft forever
6: docker_gwbridge: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether c6:d9:8a:d2:be:85 brd ff:ff:ff:ff:ff:ff
inet 172.21.0.1/16 brd 172.21.255.255 scope global docker_gwbridge
valid_lft forever preferred_lft forever
7: br-7a25a14fd4a2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether aa:42:85:27:f6:45 brd ff:ff:ff:ff:ff:ff
inet 172.23.0.1/16 brd 172.23.255.255 scope global br-7a25a14fd4a2
valid_lft forever preferred_lft forever
8: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether ea:3c:46:d4:04:15 brd ff:ff:ff:ff:ff:ff
inet 172.17.0.1/16 brd 172.17.255.255 scope global docker0
valid_lft forever preferred_lft forever
9: br-a5423f4f5dbc: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 4a:5e:06:31:6e:76 brd ff:ff:ff:ff:ff:ff
inet 172.18.0.1/16 brd 172.18.255.255 scope global br-a5423f4f5dbc
valid_lft forever preferred_lft forever
10: br-248549b3cdb3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 5e:52:c0:84:f5:67 brd ff:ff:ff:ff:ff:ff
inet 172.22.0.1/16 brd 172.22.255.255 scope global br-248549b3cdb3
valid_lft forever preferred_lft forever
11: veth917d4d4@if2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-7a25a14fd4a2 state UP group default
link/ether 56:a3:1b:a4:dc:8f brd ff:ff:ff:ff:ff:ff link-netnsid 0
13: veth70e48c6@if2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default
link/ether c2:6a:6d:db:b1:92 brd ff:ff:ff:ff:ff:ff link-netnsid 2
14: vetha855178@if2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-4b4f41534d72 state UP group default
link/ether a6:a4:a2:8d:63:14 brd ff:ff:ff:ff:ff:ff link-netnsid 3
15: vethdfadbad@if2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default
link/ether d6:3c:01:9a:f6:03 brd ff:ff:ff:ff:ff:ff link-netnsid 4
16: veth89f8fb0@if2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-248549b3cdb3 state UP group default
link/ether ca:26:3b:d8:0a:6b brd ff:ff:ff:ff:ff:ff link-netnsid 5
default via 192.168.50.1 dev enp0s25 proto static metric 100
default via 192.168.50.1 dev wlp3s0 proto dhcp src 192.168.50.69 metric 600
172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1
172.18.0.0/16 dev br-a5423f4f5dbc proto kernel scope link src 172.18.0.1 linkdown
172.20.0.0/16 dev br-4b4f41534d72 proto kernel scope link src 172.20.0.1
172.21.0.0/16 dev docker_gwbridge proto kernel scope link src 172.21.0.1 linkdown
172.22.0.0/16 dev br-248549b3cdb3 proto kernel scope link src 172.22.0.1
172.23.0.0/16 dev br-7a25a14fd4a2 proto kernel scope link src 172.23.0.1
192.168.50.0/24 dev enp0s25 proto kernel scope link src 192.168.50.66 metric 100
192.168.50.0/24 dev wlp3s0 proto kernel scope link src 192.168.50.69 metric 600
# resolv.conf(5) file generated by tailscale
# For more info, see https://tailscale.com/s/resolvconf-overwrite
# DO NOT EDIT THIS FILE BY HAND -- CHANGES WILL BE OVERWRITTEN
nameserver 100.100.100.100
search tail6ca08d.ts.net tailscale.com lan
Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:8125 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:680 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:41641 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:42133 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:34044 0.0.0.0:*
udp UNCONN 0 0 [::]:52462 [::]:*
udp UNCONN 0 0 [::]:5353 [::]:*
udp UNCONN 0 0 *:7443 *:*
udp UNCONN 0 0 [::]:48486 [::]:*
udp UNCONN 0 0 *:56684 *:*
udp UNCONN 0 0 [::]:111 [::]:*
udp UNCONN 0 0 [::]:41641 [::]:*
tcp LISTEN 0 4096 0.0.0.0:10300 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.1:8125 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:9001 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:9080 0.0.0.0:*
tcp LISTEN 0 64 0.0.0.0:41849 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:42387 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.1:19999 0.0.0.0:*
tcp LISTEN 0 100 127.0.0.1:25 0.0.0.0:*
tcp LISTEN 0 4096 100.98.144.95:32803 0.0.0.0:*
tcp LISTEN 0 64 [::]:43687 [::]:*
tcp LISTEN 0 4096 [::]:44487 [::]:*
tcp LISTEN 0 4096 [::]:22 [::]:*
tcp LISTEN 0 4096 [::]:111 [::]:*
tcp LISTEN 0 4096 *:7443 *:*
Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:* users:(("orb",pid=827,fd=10))
udp UNCONN 0 0 127.0.0.1:8125 0.0.0.0:* users:(("netdata",pid=1269,fd=330))
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=606,fd=5),("systemd",pid=1,fd=257))
udp UNCONN 0 0 127.0.0.1:680 0.0.0.0:* users:(("rpc.statd",pid=2200,fd=5))
udp UNCONN 0 0 0.0.0.0:41641 0.0.0.0:* users:(("tailscaled",pid=992,fd=17))
udp UNCONN 0 0 0.0.0.0:42133 0.0.0.0:* users:(("rpc.statd",pid=2200,fd=8))
udp UNCONN 0 0 0.0.0.0:34044 0.0.0.0:*
udp UNCONN 0 0 [::]:52462 [::]:* users:(("rpc.statd",pid=2200,fd=10))
udp UNCONN 0 0 [::]:5353 [::]:* users:(("orb",pid=827,fd=11))
udp UNCONN 0 0 *:7443 *:* users:(("orb",pid=827,fd=12))
udp UNCONN 0 0 [::]:48486 [::]:*
udp UNCONN 0 0 *:56684 *:* users:(("orb",pid=827,fd=25))
udp UNCONN 0 0 [::]:111 [::]:* users:(("rpcbind",pid=606,fd=7),("systemd",pid=1,fd=259))
udp UNCONN 0 0 [::]:41641 [::]:* users:(("tailscaled",pid=992,fd=16))
tcp LISTEN 0 4096 0.0.0.0:10300 0.0.0.0:* users:(("docker-proxy",pid=2995,fd=7))
tcp LISTEN 0 4096 127.0.0.1:8125 0.0.0.0:* users:(("netdata",pid=1269,fd=340))
tcp LISTEN 0 4096 0.0.0.0:9001 0.0.0.0:* users:(("docker-proxy",pid=3055,fd=7))
tcp LISTEN 0 4096 0.0.0.0:9080 0.0.0.0:* users:(("docker-proxy",pid=3029,fd=7))
tcp LISTEN 0 64 0.0.0.0:41849 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=1004,fd=3),("systemd",pid=1,fd=121))
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=606,fd=4),("systemd",pid=1,fd=256))
tcp LISTEN 0 4096 0.0.0.0:42387 0.0.0.0:* users:(("rpc.statd",pid=2200,fd=9))
tcp LISTEN 0 4096 127.0.0.1:19999 0.0.0.0:* users:(("netdata",pid=1269,fd=6))
tcp LISTEN 0 100 127.0.0.1:25 0.0.0.0:* users:(("master",pid=1895,fd=13))
tcp LISTEN 0 4096 100.98.144.95:32803 0.0.0.0:* users:(("tailscaled",pid=992,fd=32))
tcp LISTEN 0 64 [::]:43687 [::]:*
tcp LISTEN 0 4096 [::]:44487 [::]:* users:(("rpc.statd",pid=2200,fd=11))
tcp LISTEN 0 4096 [::]:22 [::]:* users:(("sshd",pid=1004,fd=4),("systemd",pid=1,fd=122))
tcp LISTEN 0 4096 [::]:111 [::]:* users:(("rpcbind",pid=606,fd=6),("systemd",pid=1,fd=258))
tcp LISTEN 0 4096 *:7443 *:* users:(("orb",pid=827,fd=13))
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
lo: 101050 1895 0 0 0 0 0 0 101050 1895 0 0 0 0 0 0
enp0s25: 286060248 1063469 0 1 0 0 0 344236 81649499 438415 0 0 0 0 0 0
wlp3s0: 25241828 120668 0 3392 0 0 0 0 674396 2213 0 0 0 0 0 0
tailscale0: 153150127 2127190 0 0 0 0 0 0 153729984 2128902 0 0 0 0 0 0
br-4b4f41534d72: 84 3 0 0 0 0 0 0 596638 1872 0 2 0 0 0 0
docker_gwbridge: 0 0 0 0 0 0 0 0 0 0 0 1875 0 0 0 0
br-7a25a14fd4a2: 2029 16 0 0 0 0 0 0 598639 1887 0 2 0 0 0 0
docker0: 15710593 15744 0 0 0 0 0 0 3364003 17113 0 3 0 0 0 0
br-a5423f4f5dbc: 0 0 0 0 0 0 0 0 0 0 0 1875 0 0 0 0
br-248549b3cdb3: 554381 3205 0 0 0 0 0 0 1818456 5379 0 2 0 0 0 0
veth917d4d4: 2253 16 0 0 0 0 0 0 598639 1887 0 0 0 0 0 0
veth70e48c6: 5606 71 0 0 0 0 0 0 642981 2885 0 0 0 0 0 0
vetha855178: 126 3 0 0 0 0 0 0 596638 1872 0 0 0 0 0 0
vethdfadbad: 15885881 14732 0 0 0 0 0 0 3397233 17988 0 0 0 0 0 0
veth89f8fb0: 599251 3205 0 0 0 0 0 0 1818456 5379 0 0 0 0 0 0
Interface: enp0s25
Speed: 1000Mb/s
Duplex: Full
Link detected: yes
Interface: wlp3s0
Link detected: yes
Interface: tailscale0
Speed: Unknown!
Duplex: Full
Link detected: yes
Interface: br-4b4f41534d72
Speed: 10000Mb/s
Duplex: Unknown! (255)
Link detected: yes
Interface: docker_gwbridge
Speed: Unknown!
Duplex: Unknown! (255)
Link detected: no
Interface: br-7a25a14fd4a2
Speed: 10000Mb/s
Duplex: Unknown! (255)
Link detected: yes
Interface: docker0
Speed: 10000Mb/s
Duplex: Unknown! (255)
Link detected: yes
Interface: br-a5423f4f5dbc
Speed: Unknown!
Duplex: Unknown! (255)
Link detected: no
Interface: br-248549b3cdb3
Speed: 10000Mb/s
Duplex: Unknown! (255)
Link detected: yes
Interface: veth917d4d4@if2
Interface: veth70e48c6@if2
Interface: vetha855178@if2
Interface: vethdfadbad@if2
Interface: veth89f8fb0@if2
vnstat not installed
--- Firewall Status ---
Status: inactive
Chain INPUT (policy ACCEPT)
target prot opt source destination
ts-input 0 -- 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy DROP)
target prot opt source destination
DOCKER-USER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-FORWARD 0 -- 0.0.0.0/0 0.0.0.0/0
ts-forward 0 -- 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain DOCKER (6 references)
target prot opt source destination
ACCEPT 6 -- 0.0.0.0/0 172.17.0.4 tcp dpt:9001
ACCEPT 6 -- 0.0.0.0/0 172.23.0.2 tcp dpt:80
ACCEPT 6 -- 0.0.0.0/0 172.17.0.3 tcp dpt:10300
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-BRIDGE (1 references)
target prot opt source destination
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-CT (1 references)
target prot opt source destination
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
Chain DOCKER-FORWARD (1 references)
target prot opt source destination
DOCKER-CT 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-1 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-BRIDGE 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-ISOLATION-STAGE-1 (1 references)
target prot opt source destination
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
DOCKER-ISOLATION-STAGE-2 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-ISOLATION-STAGE-2 (6 references)
target prot opt source destination
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
DROP 0 -- 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-USER (1 references)
target prot opt source destination
Chain ts-forward (1 references)
target prot opt source destination
MARK 0 -- 0.0.0.0/0 0.0.0.0/0 MARK xset 0x40000/0xff0000
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0 mark match 0x40000/0xff0000
DROP 0 -- 100.64.0.0/10 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
Chain ts-input (1 references)
target prot opt source destination
ACCEPT 0 -- 100.98.144.95 0.0.0.0/0
RETURN 0 -- 100.115.92.0/23 0.0.0.0/0
DROP 0 -- 100.64.0.0/10 0.0.0.0/0
ACCEPT 0 -- 0.0.0.0/0 0.0.0.0/0
ACCEPT 17 -- 0.0.0.0/0 0.0.0.0/0 udp dpt:41641
[2025-08-22 22:32:23] [INFO] Running module: collect_container_info
==== CONTAINER INFORMATION ====
--- Docker Information ---
Docker version 28.3.3, build 980b856
Client: Docker Engine - Community
Version: 28.3.3
Context: default
Debug Mode: false
Plugins:
buildx: Docker Buildx (Docker Inc.)
Version: v0.26.1
Path: /usr/libexec/docker/cli-plugins/docker-buildx
compose: Docker Compose (Docker Inc.)
Version: v2.39.1
Path: /usr/libexec/docker/cli-plugins/docker-compose
Server:
Containers: 9
Running: 5
Paused: 0
Stopped: 4
Images: 8
Server Version: 28.3.3
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: false
Native Overlay Diff: true
userxattr: false
Logging Driver: json-file
Cgroup Driver: systemd
Cgroup Version: 2
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
CDI spec directories:
/etc/cdi
/var/run/cdi
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 05044ec0a9a75232cad458027ca83437aae3f4da
runc version: v1.2.5-0-g59923ef
init version: de40ad0
Security Options:
apparmor
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.14.0-28-generic
Operating System: Ubuntu 24.04.3 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 15.51GiB
Name: lenovo420
ID: c05c5aad-e416-4682-80e9-9645e82163bf
Docker Root Dir: /var/lib/docker
Debug Mode: false
Experimental: false
Insecure Registries:
::1/128
127.0.0.0/8
Live Restore Enabled: false
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f98c54046fb5 portainer/agent:latest "./agent" 2 days ago Up 16 hours 0.0.0.0:9001->9001/tcp portainer_agent
704876598a27 linuxserver/duckdns:latest "/init" 11 days ago Up 16 hours duckdns
c338f607b273 dalehumby/openwakeword-rhasspy "python3 -u detect.p…" 2 weeks ago Restarting (1) 42 seconds ago openwakeword
3adb056a4df2 rhasspy/wyoming-whisper "bash /run.sh --mode…" 2 weeks ago Up 16 hours 0.0.0.0:10300->10300/tcp wyoming-whisper
e2c00abd1192 eclipse-mosquitto:latest "/docker-entrypoint.…" 2 weeks ago Exited (0) 3 days ago mosquitto
f10bb67d4491 iib0011/omni-tools:latest "/docker-entrypoint.…" 3 weeks ago Up 16 hours 0.0.0.0:9080->80/tcp omni-tools
1498684e581c 9f786420f676 "./agent" 4 weeks ago Created portainer_agent.zmu0r2vqwlgmnlwgjrip6085w.3oxnmdnh51b8rdfzxbcpzf57n
2d6d1c4f83dd filebrowser/filebrowser:latest "tini -- /init.sh --…" 4 weeks ago Restarting (1) 43 seconds ago sad_moser
d269ab80f8a5 containrrr/watchtower "/watchtower --clean…" 3 months ago Up 16 hours (healthy) 8080/tcp watchtower-watchtower-1
REPOSITORY TAG IMAGE ID CREATED SIZE
portainer/agent latest e1090181a1bf 3 days ago 138MB
linuxserver/duckdns latest 5ffaa03b018d 11 days ago 35.3MB
iib0011/omni-tools latest 7d602f56a5bf 3 weeks ago 85.4MB
filebrowser/filebrowser latest 5cffd496f05f 4 weeks ago 22MB
eclipse-mosquitto latest 42292b8c6592 6 weeks ago 10.3MB
rhasspy/wyoming-whisper latest 07c182a447fb 8 months ago 562MB
containrrr/watchtower latest e7dd50d07b86 21 months ago 14.7MB
dalehumby/openwakeword-rhasspy latest 1cd12359962d 2 years ago 641MB
NETWORK ID NAME DRIVER SCOPE
a1b3d1597912 bridge bridge local
59e6c60c3bcd docker_gwbridge bridge local
248549b3cdb3 duckdns_network bridge local
08ebc182bcd2 host host local
088f1ef0e2cd none null local
7a25a14fd4a2 omnitools_default bridge local
a5423f4f5dbc porainer-agent_default bridge local
4b4f41534d72 watchtower_default bridge local
DRIVER VOLUME NAME
local 0a7442ab01a2d7992dad77a9b74a38021e48a96635b214f97eb46b626aae8103
local 2d4a49251ab08abfcdb80a6d7cdfb335b7cda1b7d4e7ee1a7f84a4641b46de16
local 7b7b1cbb90636432be2d6d5b28b533254bae2d63bdaccd57b03fa3c7d577085e
local 890112767db1aca83faf31461b6f2142af9d9b1b5cf0ac172ec2e6600a07c27b
local bbf0315555dbaa76dde0e8f6d666e54db7c8ad42bba6c0a198203945d30d1be5
local c3f792d6fa811027c724a4ed4bbb029b64b8ac0c2c81150baea556f7638f59da
local d73ba3ca93d5eb004f269eadc9aced0c158a2807a5981415cbcb1830f20c3c90
local dc913ee5a837413a55bc0b6c5493c487c2ce112938a37df929731421b22b43d2
/home/jon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sqlx-0.8.6/tests/docker-compose.yml
/home/jon/docker/porainer-agent/docker-compose.yml
portainer_agent portainer/agent:latest 0.0.0.0:9001->9001/tcp
watchtower-watchtower-1 containrrr/watchtower 8080/tcp
CONTAINER CPU % MEM USAGE / LIMIT NET I/O
f98c54046fb5 0.00% 70.14MiB / 15.51GiB 3.4MB / 15.9MB
704876598a27 0.01% 15.51MiB / 15.51GiB 1.82MB / 599kB
c338f607b273 0.00% 0B / 0B 0B / 0B
3adb056a4df2 0.00% 170.4MiB / 15.51GiB 643kB / 5.61kB
f10bb67d4491 0.00% 11.89MiB / 15.51GiB 599kB / 2.25kB
2d6d1c4f83dd 0.00% 0B / 0B 0B / 0B
d269ab80f8a5 0.00% 16.29MiB / 15.51GiB 597kB / 126B
Docker Socket Permissions:
srw-rw---- 1 root docker 0 Aug 22 06:55 /var/run/docker.sock
[2025-08-22 22:32:31] [INFO] Running module: collect_software_info
==== SOFTWARE INFORMATION ====
--- Installed Packages ---
Installed Debian/Ubuntu packages:
Package list saved to packages_dpkg.txt (2243 packages)
Available Security Updates:
--- Running Services ---
UNIT LOAD ACTIVE SUB DESCRIPTION
containerd.service loaded active running containerd container runtime
cron.service loaded active running Regular background program processing daemon
dbus.service loaded active running D-Bus System Message Bus
docker.service loaded active running Docker Application Container Engine
fail2ban.service loaded active running Fail2Ban Service
getty@tty1.service loaded active running Getty on tty1
kerneloops.service loaded active running Tool to automatically collect and submit kernel crash signatures
netdata.service loaded active running Netdata, X-Ray Vision for your infrastructure!
networkd-dispatcher.service loaded active running Dispatcher daemon for systemd-networkd
NetworkManager.service loaded active running Network Manager
orb.service loaded active running Orb Sensor
polkit.service loaded active running Authorization Manager
postfix@-.service loaded active running Postfix Mail Transport Agent (instance -)
rpc-statd.service loaded active running NFS status monitor for NFSv2/3 locking.
rpcbind.service loaded active running RPC bind portmap service
rsyslog.service loaded active running System Logging Service
rtkit-daemon.service loaded active running RealtimeKit Scheduling Policy Service
ssh.service loaded active running OpenBSD Secure Shell server
systemd-journald.service loaded active running Journal Service
systemd-journald@netdata.service loaded active running Journal Service for Namespace netdata
systemd-logind.service loaded active running User Login Management
systemd-resolved.service loaded active running Network Name Resolution
systemd-timesyncd.service loaded active running Network Time Synchronization
systemd-udevd.service loaded active running Rule-based Manager for Device Events and Files
tailscaled.service loaded active running Tailscale node agent
unattended-upgrades.service loaded active running Unattended Upgrades Shutdown
user@1000.service loaded active running User Manager for UID 1000
wpa_supplicant.service loaded active running WPA supplicant
Legend: LOAD → Reflects whether the unit definition was properly loaded.
ACTIVE → The high-level unit activation state, i.e. generalization of SUB.
SUB → The low-level unit activation state, values depend on unit type.
28 loaded units listed.
UNIT FILE STATE PRESET
accounts-daemon.service enabled enabled
anacron.service enabled enabled
apparmor.service enabled enabled
apport.service enabled enabled
blueman-mechanism.service enabled enabled
bluetooth.service enabled enabled
cloud-config.service enabled enabled
cloud-final.service enabled enabled
cloud-init-local.service enabled enabled
cloud-init.service enabled enabled
console-setup.service enabled enabled
containerd.service enabled enabled
cron.service enabled enabled
dmesg.service enabled enabled
docker.service enabled enabled
e2scrub_reap.service enabled enabled
fail2ban.service enabled enabled
getty@.service enabled enabled
gnome-remote-desktop.service enabled enabled
gpu-manager.service enabled enabled
group-admin-daemon.service enabled enabled
grub-common.service enabled enabled
grub-initrd-fallback.service enabled enabled
kerneloops.service enabled enabled
keyboard-setup.service enabled enabled
netdata.service enabled enabled
networkd-dispatcher.service enabled enabled
networking.service enabled enabled
NetworkManager-dispatcher.service enabled enabled
NetworkManager-wait-online.service enabled enabled
NetworkManager.service enabled enabled
openvpn.service enabled enabled
orb.service enabled enabled
postfix.service enabled enabled
power-profiles-daemon.service enabled enabled
rpcbind.service enabled enabled
rsyslog.service enabled enabled
secureboot-db.service enabled enabled
setvtrgb.service enabled enabled
ssh.service enabled enabled
ssl-cert.service enabled enabled
sssd.service enabled enabled
switcheroo-control.service enabled enabled
sysstat.service enabled enabled
systemd-pstore.service enabled enabled
systemd-resolved.service enabled enabled
systemd-timesyncd.service enabled enabled
tailscaled.service enabled enabled
ua-reboot-cmds.service enabled enabled
ubuntu-advantage.service enabled enabled
ufw.service enabled enabled
unattended-upgrades.service enabled enabled
wpa_supplicant.service enabled enabled
53 unit files listed.
--- Running Processes ---
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
netdata 1269 5.2 2.9 1302652 480844 ? Ssl 06:56 49:17 /usr/sbin/netdata -P /run/netdata/netdata.pid -D
orb 827 4.8 0.4 2352380 69012 ? Ssl 06:55 45:08 /usr/bin/orb sensor
netdata 4421 3.7 0.0 99824 8768 ? Sl 06:56 35:00 /usr/libexec/netdata/plugins.d/apps.plugin 1
root 992 3.5 0.4 1320956 65860 ? Ssl 06:55 33:23 /usr/sbin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port=41641
root 831 2.3 0.0 18524 8944 ? Ss 06:55 21:49 /usr/lib/systemd/systemd-logind
root 664441 2.3 0.1 41392 26844 ? S 22:32 0:00 /usr/bin/python3 /home/jon/.ansible/tmp/ansible-tmp-1755916343.826615-1099188-252615267208741/AnsiballZ_command.py
root 1186 2.0 0.5 2870956 93472 ? Ssl 06:56 19:04 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
netdata 4415 0.9 0.6 1351616 110284 ? Sl 06:56 9:17 /usr/libexec/netdata/plugins.d/go.d.plugin 1
jon 663947 0.8 0.0 18240 8528 ? S 22:32 0:00 sshd: jon@notty
root 664465 0.7 0.0 10600 4004 ? S 22:32 0:00 bash /tmp/linux_system_audit.sh
root 998 0.4 0.3 2320072 54612 ? Ssl 06:55 3:47 /usr/bin/containerd
netdata 4413 0.3 0.0 203960 6860 ? Sl 06:56 2:57 /usr/libexec/netdata/plugins.d/systemd-journal.plugin 1
root 1198 0.3 0.3 91240 50204 ? Ss 06:56 2:56 /usr/lib/systemd/systemd-journald netdata
netdata 4387 0.3 0.0 87976 5868 ? Sl 06:56 2:51 /usr/libexec/netdata/plugins.d/debugfs.plugin 1
root 56 0.2 0.0 0 0 ? S 06:55 2:25 [irq/9-acpi]
root 18 0.2 0.0 0 0 ? I 06:55 1:57 [rcu_preempt]
message+ 822 0.1 0.0 10396 5508 ? Ss 06:55 1:51 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 985 0.1 0.3 1258580 62500 ? Ssl 06:55 1:48 /usr/bin/python3 /usr/bin/fail2ban-server -xf start
root 663861 0.1 0.0 17232 10468 ? Ss 22:31 0:00 sshd: jon [priv]
systemd-+-NetworkManager---3*[{NetworkManager}]
|-agetty
|-containerd---14*[{containerd}]
|-containerd-shim-+-nginx---4*[nginx]
| `-11*[{containerd-shim}]
|-containerd-shim-+-agent---6*[{agent}]
| `-11*[{containerd-shim}]
|-containerd-shim-+-bash---python3---7*[{python3}]
| `-11*[{containerd-shim}]
|-containerd-shim-+-s6-svscan-+-s6-supervise---s6-linux-init-s
| | |-s6-supervise---busybox---sh---sleep
| | |-s6-supervise
| | `-s6-supervise---s6-ipcserverd
| `-11*[{containerd-shim}]
|-containerd-shim-+-watchtower---7*[{watchtower}]
| `-11*[{containerd-shim}]
|-cron
|-dbus-daemon
|-dockerd-+-docker-proxy---8*[{docker-proxy}]
| |-docker-proxy---6*[{docker-proxy}]
| |-docker-proxy---7*[{docker-proxy}]
| `-21*[{dockerd}]
|-fail2ban-server---4*[{fail2ban-server}]
|-2*[kerneloops]
|-master-+-pickup
| |-qmgr
| `-showq
|-netdata-+-spawn-plugins-+-NETWORK-VIEWER-+-spawn-setns
| | | `-6*[{NETWORK-VIEWER}]
| | |-apps.plugin---2*[{apps.plugin}]
| | |-bash
| | |-debugfs.plugin---{debugfs.plugin}
| | |-ebpf.plugin---5*[{ebpf.plugin}]
| | |-go.d.plugin---12*[{go.d.plugin}]
| | |-nfacct.plugin
| | `-sd-jrnl.plugin---7*[{sd-jrnl.plugin}]
| `-75*[{netdata}]
|-networkd-dispat
|-orb---15*[{orb}]
|-polkitd---3*[{polkitd}]
|-python3---python3---python3---bash-+-pstree
| `-tee
|-rpc.statd
|-rpcbind
|-rsyslogd---3*[{rsyslogd}]
|-rtkit-daemon---2*[{rtkit-daemon}]
|-sshd---sshd---sshd
|-systemd-+-(sd-pam)
| |-dbus-daemon
| |-2*[pipewire---2*[{pipewire}]]
| |-pipewire-pulse---2*[{pipewire-pulse}]
| `-wireplumber---5*[{wireplumber}]
|-2*[systemd-journal]
|-systemd-logind
|-systemd-resolve
|-systemd-timesyn---{systemd-timesyn}
|-systemd-udevd
|-tailscaled---11*[{tailscaled}]
|-unattended-upgr---{unattended-upgr}
`-wpa_supplicant
[2025-08-22 22:32:32] [INFO] Running module: collect_security_info
==== SECURITY ASSESSMENT ====
--- User Accounts ---
root:x:0:0:root:/root:/bin/bash
jon:x:1000:1000:Jon:/home/jon:/bin/bash
orb:x:997:986::/home/orb:/bin/sh
root
sudo:x:27:jon
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
jon pts/0 100.81.202.21 Fri Aug 22 22:32 - 22:32 (00:00)
wtmp begins Wed May 7 20:41:33 2025
--- SSH Configuration ---
2025-08-19T07:10:58.979370-04:00 lenovo420 sshd[2047973]: Failed password for jon from 100.96.2.115 port 56054 ssh2
2025-08-19T07:11:02.079755-04:00 lenovo420 sshd[2047973]: Failed password for jon from 100.96.2.115 port 56054 ssh2
2025-08-19T07:14:58.595287-04:00 lenovo420 sshd[6352]: Failed password for jon from 100.96.2.115 port 48812 ssh2
2025-08-19T07:15:02.184822-04:00 lenovo420 sshd[6352]: Failed password for jon from 100.96.2.115 port 48812 ssh2
2025-08-19T18:26:15.796821-04:00 lenovo420 sudo: jon : PWD=/home/jon ; USER=root ; COMMAND=/usr/bin/grep 'Failed password' /var/log/auth.log
2025-08-19T18:57:37.429172-04:00 lenovo420 sudo: jon : PWD=/home/jon ; USER=root ; COMMAND=/usr/bin/grep 'Failed password' /var/log/auth.log
--- File Permissions and SUID ---
/home/jon/.var/app/com.bitwarden.desktop/config/Bitwarden/data.json
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/bin/chsh
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/bin/chage
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/bin/chfn
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/bin/gpasswd
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/bin/expiry
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/bin/passwd
/var/lib/docker/overlay2/72c9e50e115143a3d9ebe49381adc1728dcd35216fbf2d35947ccc52b8eae955/diff/usr/sbin/unix_chkpwd
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/bin/passwd
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/bin/chsh
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/bin/chage
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/bin/chfn
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/bin/gpasswd
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/bin/expiry
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/usr/sbin/unix_chkpwd
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/package/admin/s6-overlay-helpers-0.1.2.0/command/s6-overlay-suexec
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/chsh
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/chage
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/newgrp
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/chfn
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/gpasswd
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/expiry
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/usr/bin/passwd
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/bin/su
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/bin/mount
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/bin/umount
/var/lib/docker/overlay2/28fcfae0c19647c603b812ade99fea3e66750375616c7f45acee27ce857a898a/diff/sbin/unix_chkpwd
/var/lib/docker/overlay2/76aaea0718c919ebde88a897cb5516e918bb914af3524d3288d143713d33ed7a/diff/usr/bin/ssh-agent
/var/lib/docker/overlay2/76aaea0718c919ebde88a897cb5516e918bb914af3524d3288d143713d33ed7a/diff/usr/lib/openssh/ssh-keysign
/var/lib/docker/overlay2/d88ccc9bc080e7133f80803d5ff24eeb3c37d35e5f1bff34e275930064a1fcdc/diff/package/admin/s6-overlay-helpers-0.1.2.0/command/s6-overlay-suexec
/var/lib/docker/overlay2/cc14f7164c79ede3d689254e40d118fb130eddb68ba1101e10d6ad2de7d2c070/merged/usr/bin/chsh
WARNING: Potentially dangerous SUID binary found: /bin/su
WARNING: Potentially dangerous SUID binary found: /usr/bin/sudo
WARNING: Potentially dangerous SUID binary found: /usr/bin/passwd
WARNING: Potentially dangerous SUID binary found: /usr/bin/chfn
WARNING: Potentially dangerous SUID binary found: /usr/bin/chsh
WARNING: Potentially dangerous SUID binary found: /usr/bin/gpasswd
WARNING: Potentially dangerous SUID binary found: /usr/bin/newgrp
WARNING: Potentially dangerous SUID binary found: /usr/bin/mount
WARNING: Potentially dangerous SUID binary found: /usr/bin/umount
/var/metrics
/var/tmp
/var/crash
/var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/merged/var/tmp
/var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/merged/tmp
/var/lib/docker/overlay2/6d71e91ced5c89534020e2d17a2941ee52f4125842cbc2dc6950eb7a75c55d99/diff/tmp
/var/lib/docker/overlay2/fea30032381ba5012f116670361a2b73b5247528f2be6676a8cfa310043dae96/diff/tmp
/var/lib/docker/overlay2/fcc2da5563f36629f66f45ec638e558c35364f25ffbdfba4644e376cd40b0b72/diff/tmp
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/var/tmp
/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged/tmp
--- Cron Jobs ---
*/10 * * * * /usr/local/bin/clear_swap.sh
0 6 * * * /home/jon/borg_daily_backup.sh >> /home/jon/borg_backup.log 2>&1
total 32
drwxr-xr-x 2 root root 4096 Feb 18 2025 .
drwxr-xr-x 154 root root 12288 Aug 22 06:50 ..
-rw-r--r-- 1 root root 219 Nov 17 2023 anacron
-rw-r--r-- 1 root root 201 Apr 8 2024 e2scrub_all
-rw-r--r-- 1 root root 102 Mar 30 2024 .placeholder
-rw-r--r-- 1 root root 396 Jan 9 2024 sysstat
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
# You can also override PATH, but by default, newer versions inherit it from the environment
#PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.daily; }
47 6 * * 7 root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.weekly; }
52 6 1 * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.monthly; }
#
--- Shell History ---
Analyzing: /home/jon/.bash_history
WARNING: Pattern 'password' found in /home/jon/.bash_history
WARNING: Pattern 'passwd' found in /home/jon/.bash_history
WARNING: Pattern 'secret' found in /home/jon/.bash_history
WARNING: Pattern 'token' found in /home/jon/.bash_history
WARNING: Pattern 'key' found in /home/jon/.bash_history
WARNING: Pattern 'database_url' found in /home/jon/.bash_history
WARNING: Pattern 'auth' found in /home/jon/.bash_history
WARNING: Pattern 'login' found in /home/jon/.bash_history
Analyzing: /root/.bash_history
No obvious sensitive patterns found
--- Tailscale Configuration ---
100.98.144.95 lenovo420 jonpressnell@ linux -
100.118.220.45 audrey jonpressnell@ linux -
100.104.185.11 bpcp-b3722383fb jonpressnell@ windows offline
100.126.196.100 bpcp-s7g23273fb jonpressnell@ windows offline
100.81.202.21 fedora jonpressnell@ linux idle, tx 297892 rx 3358540
100.96.2.115 google-pixel-9-pro jonpressnell@ android -
100.107.248.69 ipad-10th-gen-wificellular jonpressnell@ iOS offline
100.123.118.16 jon-ser jonpressnell@ linux -
100.67.250.42 jonathan jonpressnell@ linux offline
100.99.235.80 lenovo jonpressnell@ linux -
100.78.26.112 omv800 jonpressnell@ linux -
100.65.76.70 qualcomm-go103 jonpressnell@ android offline
100.72.166.115 samsung-sm-g781u1 jonpressnell@ android offline
100.67.40.97 surface jonpressnell@ linux -
100.69.142.126 xreal-x4000 jonpressnell@ android offline
# Health check:
# - exit status 1
# - Tailscale can't reach the configured DNS servers. Internet connectivity may be affected.
# - Tailscale failed to fetch the DNS configuration of your device: exit status 1
100.98.144.95
[2025-08-22 22:52:36] [INFO] Running module: run_vulnerability_scan
==== VULNERABILITY ASSESSMENT ====
--- Kernel Vulnerabilities ---
6.14.0-28-generic
Current kernel: 6.14.0-28-generic
Kernel major version: 6
Kernel minor version: 14
Risk Level: LOW
Assessment: Kernel version is recent and likely secure
Kernel Security Features:
ASLR (Address Space Layout Randomization): ENABLED
Dmesg restriction: ENABLED
--- Open Ports Security Check ---
[2025-08-22 22:52:36] [INFO] Running module: collect_env_info
==== ENVIRONMENT AND CONFIGURATION ====
--- Environment Variables ---
SHELL=/bin/bash
HOME=/root
LANG=en_US.UTF-8
USER=root
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
--- Mount Points ---
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=8088916k,nr_inodes=2022229,mode=755,inode64)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=1625840k,mode=755,inode64)
/dev/sda2 on / type ext4 (rw,relatime)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=32,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=2308)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,pagesize=2M)
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime)
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
configfs on /sys/kernel/config type configfs (rw,nosuid,nodev,noexec,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
/dev/sda1 on /boot/efi type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
/dev/sdb1 on /mnt/sdb type ext4 (rw,relatime)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=1625836k,nr_inodes=406459,mode=700,uid=1000,gid=1000,inode64)
//192.168.50.229/pictures on /mnt/omv_immich_pics type cifs (rw,nosuid,nodev,noexec,relatime,vers=3.0,sec=none,cache=strict,upcall_target=app,uid=1000,forceuid,gid=1000,forcegid,addr=192.168.50.229,file_mode=0770,dir_mode=0770,iocharset=utf8,soft,nounix,serverino,mapposix,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,retrans=1,echo_interval=60,actimeo=1,closetimeo=1,_netdev)
//192.168.50.229/immich on /mnt/omv_immich_smb type cifs (rw,nosuid,nodev,noexec,relatime,vers=3.0,sec=none,cache=strict,upcall_target=app,uid=1000,forceuid,gid=1000,forcegid,addr=192.168.50.229,file_mode=0770,dir_mode=0770,iocharset=utf8,soft,nounix,serverino,mapposix,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,retrans=1,echo_interval=60,actimeo=1,closetimeo=1,_netdev)
192.168.50.107:/export/t420_backup on /mnt/omv-backup type nfs (rw,relatime,vers=3,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.50.107,mountvers=3,mountport=56632,mountproto=udp,local_lock=none,addr=192.168.50.107)
overlay on /var/lib/docker/overlay2/4cad63c70a53404193aced3da9d8fe330cb9e0a9938ef1a4016bfac90099dba3/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/LEY5ZYOVJYGUO2RQBP6NCQYJAS:/var/lib/docker/overlay2/l/L3HCU3FCONCQ6BM5HKHHTOTHKK:/var/lib/docker/overlay2/l/OW6GWF3GQ6EXSGD4EDAN3VJLP7:/var/lib/docker/overlay2/l/36BYLWUXNMOVP5OWTXZ5S4GMKE,upperdir=/var/lib/docker/overlay2/4cad63c70a53404193aced3da9d8fe330cb9e0a9938ef1a4016bfac90099dba3/diff,workdir=/var/lib/docker/overlay2/4cad63c70a53404193aced3da9d8fe330cb9e0a9938ef1a4016bfac90099dba3/work,nouserxattr)
overlay on /var/lib/docker/overlay2/cc14f7164c79ede3d689254e40d118fb130eddb68ba1101e10d6ad2de7d2c070/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/6QUDAWPMNNDTNZFW5PXWNPQL4D:/var/lib/docker/overlay2/l/5C3QJ3JFAWLYTLYMQQVKJVTM2T:/var/lib/docker/overlay2/l/D6ZJXO4K5T4RST446S2QDHP67J:/var/lib/docker/overlay2/l/NJVUIROGJ4CZPOTRZ42DPKMBMC:/var/lib/docker/overlay2/l/2MBQEPPM5FD2RB62TJ5MRLIIBY,upperdir=/var/lib/docker/overlay2/cc14f7164c79ede3d689254e40d118fb130eddb68ba1101e10d6ad2de7d2c070/diff,workdir=/var/lib/docker/overlay2/cc14f7164c79ede3d689254e40d118fb130eddb68ba1101e10d6ad2de7d2c070/work,nouserxattr)
overlay on /var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/UP5NZ2RDK5HYEDJFJWITQLAXQF:/var/lib/docker/overlay2/l/3KQNW5BXSY7SVCBPMRES5F5PW5:/var/lib/docker/overlay2/l/S26RI6M2G25D2JFWZKQVPHDVW5:/var/lib/docker/overlay2/l/WP3KOXN4RVIHZVQVTQ4YMHSCK2:/var/lib/docker/overlay2/l/U4EF5LRLZENSFLDUJFOP5GEFLZ:/var/lib/docker/overlay2/l/U3O7ARPAXHTJL7645KVIMYBRW4:/var/lib/docker/overlay2/l/BWQJJJPVUOPV5CSIYLHXBF33P7:/var/lib/docker/overlay2/l/MPIBXNN5G2NAKOEW6BSUIGNXLB:/var/lib/docker/overlay2/l/UH2AVCBHPVWLYETQEAJ7I6Z26C:/var/lib/docker/overlay2/l/7EPB7IEGRLNBH6QY6B4O35V5XR:/var/lib/docker/overlay2/l/XTTKGTG3DVYGRIIKVLHLJI775T:/var/lib/docker/overlay2/l/Y44YA7CEEOLXR3ABL6C66N7GRQ,upperdir=/var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/diff,workdir=/var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/work,nouserxattr)
overlay on /var/lib/docker/overlay2/3433eb860df705d53faf849691eabd1d0c82505c222b48ffc58ca04461c3764c/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/H724N4T5KNLHYSVUHVZG4RIFRS:/var/lib/docker/overlay2/l/4T6N2KCG7RCXIID3XIFT5LSQEN:/var/lib/docker/overlay2/l/IVG42DOBT65Y24T4KZPCVCWWCG:/var/lib/docker/overlay2/l/HS7AFPO4EL3QA2AUHKHPV3WTM3:/var/lib/docker/overlay2/l/HU6HRBBG5G527S3OXJKVQRZHRB:/var/lib/docker/overlay2/l/5GMPGTDTFCOHKYMXHXTLTUIGEB:/var/lib/docker/overlay2/l/LOF3L3XJLHYNCACDBVCPC5PP3E:/var/lib/docker/overlay2/l/LQ7CBARWX2KQVFEK5374QOEXUE:/var/lib/docker/overlay2/l/EURNPEPCDBJSO5O6R7TYA7XPZD:/var/lib/docker/overlay2/l/FRPA3NFZUY7PPNWRVZS4RFW5YL,upperdir=/var/lib/docker/overlay2/3433eb860df705d53faf849691eabd1d0c82505c222b48ffc58ca04461c3764c/diff,workdir=/var/lib/docker/overlay2/3433eb860df705d53faf849691eabd1d0c82505c222b48ffc58ca04461c3764c/work,nouserxattr)
overlay on /var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/4XWSL3TJZKQKV52Y7QUAOSEJ6Q:/var/lib/docker/overlay2/l/CHQXZJN7AB2LQPODRLVMXS3QLG:/var/lib/docker/overlay2/l/BMFO5MLWWKJARMANRH2F77LDOX:/var/lib/docker/overlay2/l/YR3BAROY35O7A3ILDGUPSPM4DF:/var/lib/docker/overlay2/l/2QOMS6W36QGWUV72RM7N4CSTGY:/var/lib/docker/overlay2/l/4GOITPAVLU66CN2YC5XVLLLA4I:/var/lib/docker/overlay2/l/2IPQZYHEMVXZJWJHWXKLEQM7LC:/var/lib/docker/overlay2/l/JALAZBZS56RVNWDALSM5WSIDHB:/var/lib/docker/overlay2/l/LF4PCBER4SGDZ2IYQ2X65XJ7UI:/var/lib/docker/overlay2/l/AYPELGPRNU7AYL7NB72PEMUFB6,upperdir=/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/diff,workdir=/var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/work,nouserxattr)
nsfs on /run/docker/netns/default type nsfs (rw)
nsfs on /run/docker/netns/506dadf0fa06 type nsfs (rw)
nsfs on /run/docker/netns/103d8367867a type nsfs (rw)
nsfs on /run/docker/netns/b8649a1f1a7f type nsfs (rw)
nsfs on /run/docker/netns/a8a2297991f6 type nsfs (rw)
nsfs on /run/docker/netns/30647acfe200 type nsfs (rw)
tracefs on /sys/kernel/debug/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
Filesystem Size Used Avail Use% Mounted on
tmpfs 1.6G 1.8M 1.6G 1% /run
/dev/sda2 468G 30G 416G 7% /
tmpfs 7.8G 336K 7.8G 1% /dev/shm
tmpfs 5.0M 12K 5.0M 1% /run/lock
efivarfs 56K 19K 33K 36% /sys/firmware/efi/efivars
/dev/sda1 1.1G 6.2M 1.1G 1% /boot/efi
/dev/sdb1 117G 2.1M 111G 1% /mnt/sdb
tmpfs 1.6G 132K 1.6G 1% /run/user/1000
//192.168.50.229/pictures 17T 2.8T 14T 17% /mnt/omv_immich_pics
//192.168.50.229/immich 17T 2.8T 14T 17% /mnt/omv_immich_smb
192.168.50.107:/export/t420_backup 7.3T 306G 7.0T 5% /mnt/omv-backup
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/4cad63c70a53404193aced3da9d8fe330cb9e0a9938ef1a4016bfac90099dba3/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/cc14f7164c79ede3d689254e40d118fb130eddb68ba1101e10d6ad2de7d2c070/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/3c6688e6e5511e85599e0b5f71924539e1738d587cf48a8e8054444a6af57549/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/3433eb860df705d53faf849691eabd1d0c82505c222b48ffc58ca04461c3764c/merged
overlay 468G 30G 416G 7% /var/lib/docker/overlay2/7f6308b0b272a768ed69198663b0dd5d748a088018befb1d8a3fd42093b98c5f/merged
--- System Limits ---
real-time non-blocking time (microseconds, -R) unlimited
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 62975
max locked memory (kbytes, -l) 2032296
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 62975
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
[2025-08-22 22:52:36] [INFO] Generating JSON summary
==== GENERATING SUMMARY ====
[2025-08-22 22:52:36] [Generating JSON summary...]
[2025-08-22 22:52:36] [INFO] JSON summary generated successfully: /tmp/system_audit_lenovo420_20250822_223222/results.json
==== AUDIT COMPLETE ====
[2025-08-22 22:52:36] [INFO] Audit completed successfully in 1214 seconds
[2025-08-22 22:52:36] [INFO] Results available in: /tmp/system_audit_lenovo420_20250822_223222
[2025-08-22 22:52:36] [INFO] Enhanced summary created: /tmp/system_audit_lenovo420_20250822_223222/SUMMARY.txt
[2025-08-22 22:52:36] [INFO] Compressing audit results...

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,51 @@
{
"scan_info": {
"timestamp": "2025-08-22T22:52:36-04:00",
"hostname": "lenovo420",
"scanner_version": "2.0",
"scan_duration": "1214s"
},
"system": {
"hostname": "lenovo420",
"fqdn": "lenovo420",
"ip_addresses": "192.168.50.66,192.168.50.69,100.98.144.95,172.20.0.1,172.21.0.1,172.23.0.1,172.17.0.1,172.18.0.1,172.22.0.1,",
"os": "Ubuntu 24.04.3 LTS",
"kernel": "6.14.0-28-generic",
"architecture": "x86_64",
"uptime": "up 15 hours, 56 minutes"
},
"containers": {
"docker_installed": true,
"podman_installed": false,
"running_containers": 7
},
"security": {
"ssh_root_login": "unknown",
"ufw_status": "inactive",
"failed_ssh_attempts": 6,
"open_ports": [
"22",
"25",
"111",
"680",
"5353",
"7443",
"8125",
"9001",
"9080",
"10300",
"19999",
"32803",
"34044",
"41641",
"41849",
"42133",
"42387",
"43687",
"44487",
"48486",
"52462",
"57208"
]
}
}

View File

@@ -0,0 +1,32 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Fri Aug 22 10:32:39 PM EDT 2025
Script Version: 2.0
Hostname: OMV800
FQDN: omv800.local
IP Addresses: 192.168.50.229 100.78.26.112 172.20.0.1 172.19.0.1 172.24.0.1 172.25.0.1 172.21.0.1 172.22.0.1 172.23.0.1 172.17.0.1 172.18.0.1 172.26.0.1 fd7a:115c:a1e0::9801:1a70
=== SYSTEM INFORMATION ===
OS: Debian GNU/Linux 12 (bookworm)
Kernel: 6.12.38+deb12-amd64
Architecture: x86_64
Uptime: up 1 week, 3 days, 4 hours, 23 minutes
=== SECURITY STATUS ===
SSH Root Login: yes
UFW Status: not_installed
Failed SSH Attempts: 0
0
=== CONTAINER STATUS ===
Docker: Installed
Podman: Not installed
Running Containers: 19
=== FILES GENERATED ===
total 388
drwxr-xr-x 2 root root 120 Aug 22 22:32 .
drwxrwxrwt 27 root root 6020 Aug 22 22:32 ..
-rw-r--r-- 1 root root 173291 Aug 22 22:32 audit.log
-rw-r--r-- 1 root root 213210 Aug 22 22:32 packages_dpkg.txt
-rw-r--r-- 1 root root 0 Aug 22 22:32 results.json
-rw-r--r-- 1 root root 684 Aug 22 22:32 SUMMARY.txt

View File

@@ -0,0 +1,32 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Fri Aug 22 22:37:59 EDT 2025
Script Version: 2.0
Hostname: raspberrypi
FQDN: raspberrypi
IP Addresses: 192.168.50.107
=== SYSTEM INFORMATION ===
OS: Debian GNU/Linux 12 (bookworm)
Kernel: 6.12.34+rpt-rpi-v8
Architecture: aarch64
Uptime: up 4 weeks, 2 days, 2 hours, 49 minutes
=== SECURITY STATUS ===
SSH Root Login: yes
UFW Status: not_installed
Failed SSH Attempts: 0
0
=== CONTAINER STATUS ===
Docker: Not installed
Podman: Not installed
Running Containers: 0
=== FILES GENERATED ===
total 160
drwxr-xr-x 2 root root 120 Aug 22 22:37 .
drwxrwxrwt 25 root root 700 Aug 22 22:37 ..
-rw-r--r-- 1 root root 539 Aug 22 22:37 SUMMARY.txt
-rw-r--r-- 1 root root 49754 Aug 22 22:37 audit.log
-rw-r--r-- 1 root root 102619 Aug 22 22:37 packages_dpkg.txt
-rw-r--r-- 1 root root 0 Aug 22 22:37 results.json

View File

@@ -0,0 +1,746 @@
[2025-08-22 22:37:42] [INFO] Starting comprehensive system audit on raspberrypi
[2025-08-22 22:37:42] [INFO] Output directory: /tmp/system_audit_raspberrypi_20250822_223742
[2025-08-22 22:37:42] [INFO] Script version: 2.0
[2025-08-22 22:37:42] [INFO] Validating environment and dependencies...
[2025-08-22 22:37:42] [WARN] Optional tool not found: docker
[2025-08-22 22:37:42] [WARN] Optional tool not found: podman
[2025-08-22 22:37:42] [WARN] Optional tool not found: vnstat
[2025-08-22 22:37:42] [INFO] Environment validation completed
[2025-08-22 22:37:42] [INFO] Running with root privileges
[2025-08-22 22:37:42] [INFO] Running module: collect_system_info
==== SYSTEM INFORMATION ====
--- Basic System Details ---
Hostname: raspberrypi
FQDN: raspberrypi
IP Addresses: 192.168.50.107
Date/Time: Fri Aug 22 22:37:42 EDT 2025
Uptime: 22:37:42 up 30 days, 2:48, 0 user, load average: 0.45, 0.44, 0.35
Load Average: 0.45 0.44 0.35 3/295 247067
Architecture: aarch64
Kernel: 6.12.34+rpt-rpi-v8
Distribution: Debian GNU/Linux 12 (bookworm)
Kernel Version: #1 SMP PREEMPT Debian 1:6.12.34-1+rpt1~bookworm (2025-06-26)
--- Hardware Information ---
Architecture: aarch64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Vendor ID: ARM
Model name: Cortex-A72
Model: 3
Thread(s) per core: 1
Core(s) per cluster: 4
Socket(s): -
Cluster(s): 1
Stepping: r0p3
CPU(s) scaling MHz: 100%
CPU max MHz: 1800.0000
CPU min MHz: 600.0000
BogoMIPS: 108.00
Flags: fp asimd evtstrm crc32 cpuid
L1d cache: 128 KiB (4 instances)
L1i cache: 192 KiB (4 instances)
L2 cache: 1 MiB (1 instance)
NUMA node(s): 1
NUMA node0 CPU(s): 0-3
Vulnerability Gather data sampling: Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit: Not affected
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Not affected
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Not affected
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Vulnerable
Vulnerability Spectre v1: Mitigation; __user pointer sanitization
Vulnerability Spectre v2: Vulnerable
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
total used free shared buff/cache available
Mem: 906Mi 321Mi 233Mi 7.0Mi 422Mi 584Mi
Swap: 511Mi 110Mi 401Mi
Filesystem Size Used Avail Use% Mounted on
udev 188M 0 188M 0% /dev
tmpfs 182M 20M 163M 11% /run
/dev/mmcblk0p2 28G 2.9G 24G 11% /
tmpfs 454M 252K 454M 1% /dev/shm
tmpfs 5.0M 16K 5.0M 1% /run/lock
tmpfs 454M 2.0M 452M 1% /tmp
/dev/mmcblk0p1 510M 72M 439M 15% /boot/firmware
folder2ram 454M 3.2M 451M 1% /var/log
folder2ram 454M 0 454M 0% /var/tmp
folder2ram 454M 268K 454M 1% /var/lib/openmediavault/rrd
folder2ram 454M 3.8M 450M 1% /var/spool
folder2ram 454M 12M 443M 3% /var/lib/rrdcached
folder2ram 454M 4.0K 454M 1% /var/lib/monit
folder2ram 454M 16K 454M 1% /var/cache/samba
/dev/md0 7.3T 306G 7.0T 5% /srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240
tmpfs 91M 0 91M 0% /run/user/1000
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 7.3T 0 disk
└─md0 9:0 0 7.3T 0 raid1 /export/t420_backup
/export/t410_backup
/export/surface_backup
/export/omv800_backup
/export/jonathan_backup
/export/audrey_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240
sdb 8:16 0 7.3T 0 disk
└─md0 9:0 0 7.3T 0 raid1 /export/t420_backup
/export/t410_backup
/export/surface_backup
/export/omv800_backup
/export/jonathan_backup
/export/audrey_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240
mmcblk0 179:0 0 28.9G 0 disk
├─mmcblk0p1 179:1 0 512M 0 part /boot/firmware
└─mmcblk0p2 179:2 0 28.4G 0 part /var/folder2ram/var/cache/samba
/var/folder2ram/var/lib/monit
/var/folder2ram/var/lib/rrdcached
/var/folder2ram/var/spool
/var/folder2ram/var/lib/openmediavault/rrd
/var/folder2ram/var/tmp
/var/folder2ram/var/log
/
00:00.0 PCI bridge: Broadcom Inc. and subsidiaries BCM2711 PCIe Bridge (rev 20)
01:00.0 USB controller: VIA Technologies, Inc. VL805/806 xHCI USB 3.0 Controller (rev 01)
Bus 002 Device 002: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 002: ID 2109:3431 VIA Labs, Inc. Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
[2025-08-22 22:37:43] [INFO] Running module: collect_network_info
==== NETWORK INFORMATION ====
--- Network Interfaces ---
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 2c:cf:67:04:6a:3f brd ff:ff:ff:ff:ff:ff
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 2c:cf:67:04:6a:42 brd ff:ff:ff:ff:ff:ff
inet 192.168.50.107/24 brd 192.168.50.255 scope global wlan0
valid_lft forever preferred_lft forever
default via 192.168.50.1 dev wlan0 proto static
192.168.50.0/24 dev wlan0 proto kernel scope link src 192.168.50.107
# This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8).
# Do not edit.
#
# This file might be symlinked as /etc/resolv.conf. If you're looking at
# /etc/resolv.conf and seeing this text, you have followed the symlink.
#
# This is a dynamic resolv.conf file for connecting local clients to the
# internal DNS stub resolver of systemd-resolved. This file lists all
# configured search domains.
#
# Run "resolvectl status" to see details about the uplink DNS servers
# currently in use.
#
# Third party programs should typically not access this file directly, but only
# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a
# different way, replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.
nameserver 127.0.0.53
options edns0 trust-ad
search .
Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
udp UNCONN 0 0 127.0.0.1:8125 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:54984 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:58857 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:5355 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:2049 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:55044 0.0.0.0:*
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:*
udp UNCONN 0 0 127.0.0.53:53 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:56632 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:60474 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:323 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:*
udp UNCONN 0 0 192.168.50.107:3702 0.0.0.0:*
udp UNCONN 0 0 239.255.255.250:3702 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:34941 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:930 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:55212 0.0.0.0:*
udp UNCONN 0 0 [::1]:8125 *:*
udp UNCONN 0 0 *:48359 *:*
udp UNCONN 0 0 *:5353 *:*
udp UNCONN 0 0 *:5353 *:*
udp UNCONN 0 0 *:5355 *:*
udp UNCONN 0 0 *:58368 *:*
udp UNCONN 0 0 *:2049 *:*
udp UNCONN 0 0 *:56067 *:*
udp UNCONN 0 0 *:46604 *:*
udp UNCONN 0 0 *:7443 *:*
udp UNCONN 0 0 *:50974 *:*
udp UNCONN 0 0 *:40746 *:*
udp UNCONN 0 0 [::1]:323 *:*
udp UNCONN 0 0 *:35143 *:*
udp UNCONN 0 0 *:37991 *:*
udp UNCONN 0 0 *:111 *:*
udp UNCONN 0 0 *:43932 *:*
tcp LISTEN 0 4096 127.0.0.1:8125 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:40953 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:5355 0.0.0.0:*
tcp LISTEN 0 50 0.0.0.0:139 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:59533 0.0.0.0:*
tcp LISTEN 0 50 0.0.0.0:445 0.0.0.0:*
tcp LISTEN 0 511 0.0.0.0:80 0.0.0.0:*
tcp LISTEN 0 64 0.0.0.0:42055 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.1:19999 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:51583 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:41341 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:*
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:*
tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
tcp LISTEN 0 5 192.168.50.107:5357 0.0.0.0:*
tcp LISTEN 0 64 0.0.0.0:2049 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:*
tcp LISTEN 0 4096 [::]:45291 [::]:*
tcp LISTEN 0 4096 [::]:5355 [::]:*
tcp LISTEN 0 50 [::]:139 [::]:*
tcp LISTEN 0 4096 [::1]:8125 [::]:*
tcp LISTEN 0 50 [::]:445 [::]:*
tcp LISTEN 0 4096 [::]:59555 [::]:*
tcp LISTEN 0 511 [::]:80 [::]:*
tcp LISTEN 0 4096 [::]:36167 [::]:*
tcp LISTEN 0 64 [::]:37743 [::]:*
tcp LISTEN 0 4096 [::]:111 [::]:*
tcp LISTEN 0 4096 *:7443 *:*
tcp LISTEN 0 128 [::]:22 [::]:*
tcp LISTEN 0 4096 [::]:47901 [::]:*
tcp LISTEN 0 64 [::]:2049 [::]:*
tcp LISTEN 0 4096 [::1]:19999 [::]:*
Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
udp UNCONN 0 0 127.0.0.1:8125 0.0.0.0:* users:(("netdata",pid=4105183,fd=54))
udp UNCONN 0 0 0.0.0.0:54984 0.0.0.0:* users:(("rpc.mountd",pid=1181,fd=4))
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:* users:(("orb",pid=722747,fd=8))
udp UNCONN 0 0 0.0.0.0:58857 0.0.0.0:* users:(("rpc.mountd",pid=1181,fd=8))
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:* users:(("avahi-daemon",pid=572,fd=12))
udp UNCONN 0 0 0.0.0.0:5355 0.0.0.0:* users:(("systemd-resolve",pid=476,fd=11))
udp UNCONN 0 0 0.0.0.0:2049 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:55044 0.0.0.0:*
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=476,fd=19))
udp UNCONN 0 0 127.0.0.53:53 0.0.0.0:* users:(("systemd-resolve",pid=476,fd=17))
udp UNCONN 0 0 0.0.0.0:56632 0.0.0.0:* users:(("rpc.mountd",pid=1181,fd=12))
udp UNCONN 0 0 0.0.0.0:60474 0.0.0.0:* users:(("rpc.statd",pid=1178,fd=8))
udp UNCONN 0 0 127.0.0.1:323 0.0.0.0:* users:(("chronyd",pid=828,fd=5))
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=1164,fd=5),("systemd",pid=1,fd=119))
udp UNCONN 0 0 192.168.50.107:3702 0.0.0.0:* users:(("python3",pid=1177,fd=9))
udp UNCONN 0 0 239.255.255.250:3702 0.0.0.0:* users:(("python3",pid=1177,fd=7))
udp UNCONN 0 0 0.0.0.0:34941 0.0.0.0:* users:(("avahi-daemon",pid=572,fd=14))
udp UNCONN 0 0 127.0.0.1:930 0.0.0.0:* users:(("rpc.statd",pid=1178,fd=5))
udp UNCONN 0 0 0.0.0.0:55212 0.0.0.0:* users:(("python3",pid=1177,fd=8))
udp UNCONN 0 0 [::1]:8125 *:* users:(("netdata",pid=4105183,fd=41))
udp UNCONN 0 0 *:48359 *:* users:(("rpc.mountd",pid=1181,fd=6))
udp UNCONN 0 0 *:5353 *:* users:(("orb",pid=722747,fd=12))
udp UNCONN 0 0 *:5353 *:* users:(("avahi-daemon",pid=572,fd=13))
udp UNCONN 0 0 *:5355 *:* users:(("systemd-resolve",pid=476,fd=13))
udp UNCONN 0 0 *:58368 *:* users:(("orb",pid=722747,fd=26))
udp UNCONN 0 0 *:2049 *:*
udp UNCONN 0 0 *:56067 *:* users:(("orb",pid=722747,fd=17))
udp UNCONN 0 0 *:46604 *:* users:(("orb",pid=722747,fd=20))
udp UNCONN 0 0 *:7443 *:* users:(("orb",pid=722747,fd=11))
udp UNCONN 0 0 *:50974 *:* users:(("rpc.mountd",pid=1181,fd=14))
udp UNCONN 0 0 *:40746 *:*
udp UNCONN 0 0 [::1]:323 *:* users:(("chronyd",pid=828,fd=6))
udp UNCONN 0 0 *:35143 *:* users:(("rpc.statd",pid=1178,fd=10))
udp UNCONN 0 0 *:37991 *:* users:(("rpc.mountd",pid=1181,fd=10))
udp UNCONN 0 0 *:111 *:* users:(("rpcbind",pid=1164,fd=7),("systemd",pid=1,fd=121))
udp UNCONN 0 0 *:43932 *:* users:(("avahi-daemon",pid=572,fd=15))
tcp LISTEN 0 4096 127.0.0.1:8125 0.0.0.0:* users:(("netdata",pid=4105183,fd=69))
tcp LISTEN 0 4096 0.0.0.0:40953 0.0.0.0:* users:(("rpc.mountd",pid=1181,fd=13))
tcp LISTEN 0 4096 0.0.0.0:5355 0.0.0.0:* users:(("systemd-resolve",pid=476,fd=12))
tcp LISTEN 0 50 0.0.0.0:139 0.0.0.0:* users:(("smbd",pid=1214,fd=32))
tcp LISTEN 0 4096 0.0.0.0:59533 0.0.0.0:* users:(("rpc.statd",pid=1178,fd=9))
tcp LISTEN 0 50 0.0.0.0:445 0.0.0.0:* users:(("smbd",pid=1214,fd=31))
tcp LISTEN 0 511 0.0.0.0:80 0.0.0.0:* users:(("nginx",pid=1189,fd=7),("nginx",pid=1188,fd=7),("nginx",pid=1187,fd=7),("nginx",pid=1186,fd=7),("nginx",pid=1185,fd=7))
tcp LISTEN 0 64 0.0.0.0:42055 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.1:19999 0.0.0.0:* users:(("netdata",pid=4105183,fd=7))
tcp LISTEN 0 4096 0.0.0.0:51583 0.0.0.0:* users:(("rpc.mountd",pid=1181,fd=5))
tcp LISTEN 0 4096 0.0.0.0:41341 0.0.0.0:* users:(("rpc.mountd",pid=1181,fd=9))
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=476,fd=20))
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=1164,fd=4),("systemd",pid=1,fd=118))
tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=803,fd=3))
tcp LISTEN 0 5 192.168.50.107:5357 0.0.0.0:* users:(("python3",pid=1177,fd=10))
tcp LISTEN 0 64 0.0.0.0:2049 0.0.0.0:*
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=476,fd=18))
tcp LISTEN 0 4096 [::]:45291 [::]:* users:(("rpc.mountd",pid=1181,fd=11))
tcp LISTEN 0 4096 [::]:5355 [::]:* users:(("systemd-resolve",pid=476,fd=14))
tcp LISTEN 0 50 [::]:139 [::]:* users:(("smbd",pid=1214,fd=30))
tcp LISTEN 0 4096 [::1]:8125 [::]:* users:(("netdata",pid=4105183,fd=68))
tcp LISTEN 0 50 [::]:445 [::]:* users:(("smbd",pid=1214,fd=29))
tcp LISTEN 0 4096 [::]:59555 [::]:* users:(("rpc.mountd",pid=1181,fd=7))
tcp LISTEN 0 511 [::]:80 [::]:* users:(("nginx",pid=1189,fd=8),("nginx",pid=1188,fd=8),("nginx",pid=1187,fd=8),("nginx",pid=1186,fd=8),("nginx",pid=1185,fd=8))
tcp LISTEN 0 4096 [::]:36167 [::]:* users:(("rpc.mountd",pid=1181,fd=15))
tcp LISTEN 0 64 [::]:37743 [::]:*
tcp LISTEN 0 4096 [::]:111 [::]:* users:(("rpcbind",pid=1164,fd=6),("systemd",pid=1,fd=120))
tcp LISTEN 0 4096 *:7443 *:* users:(("orb",pid=722747,fd=14))
tcp LISTEN 0 128 [::]:22 [::]:* users:(("sshd",pid=803,fd=4))
tcp LISTEN 0 4096 [::]:47901 [::]:* users:(("rpc.statd",pid=1178,fd=11))
tcp LISTEN 0 64 [::]:2049 [::]:*
tcp LISTEN 0 4096 [::1]:19999 [::]:* users:(("netdata",pid=4105183,fd=6))
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
lo: 1074671336 1075230 0 0 0 0 0 0 1074671336 1075230 0 0 0 0 0 0
eth0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
wlan0: 16128419591 113315528 0 1149234 0 0 0 8992541 332813345727 237897725 0 6 0 0 0 0
Interface: eth0
Speed: Unknown!
Duplex: Unknown! (255)
Link detected: no
Interface: wlan0
vnstat not installed
--- Firewall Status ---
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
[2025-08-22 22:37:43] [INFO] Running module: collect_container_info
==== CONTAINER INFORMATION ====
Docker not installed or not in PATH
[2025-08-22 22:37:43] [INFO] Running module: collect_software_info
==== SOFTWARE INFORMATION ====
--- Installed Packages ---
Installed Debian/Ubuntu packages:
Package list saved to packages_dpkg.txt (768 packages)
Available Security Updates:
--- Running Services ---
UNIT LOAD ACTIVE SUB DESCRIPTION
avahi-daemon.service loaded active running Avahi mDNS/DNS-SD Stack
bluetooth.service loaded active running Bluetooth service
chrony.service loaded active running chrony, an NTP client/server
cron.service loaded active running Regular background program processing daemon
dbus.service loaded active running D-Bus System Message Bus
getty@tty1.service loaded active running Getty on tty1
mdmonitor.service loaded active running MD array monitor
monit.service loaded active running LSB: service and resource monitoring daemon
netdata.service loaded active running netdata - Real-time performance monitoring
netplan-wpa-wlan0.service loaded active running WPA supplicant for netplan wlan0
nfs-idmapd.service loaded active running NFSv4 ID-name mapping service
nfs-mountd.service loaded active running NFS Mount Daemon
nfsdcld.service loaded active running NFSv4 Client Tracking Daemon
nginx.service loaded active running A high performance web server and a reverse proxy server
openmediavault-engined.service loaded active running The OpenMediaVault engine daemon that processes the RPC request
orb.service loaded active running Orb Sensor
php8.2-fpm.service loaded active running The PHP 8.2 FastCGI Process Manager
rpc-statd.service loaded active running NFS status monitor for NFSv2/3 locking.
rpcbind.service loaded active running RPC bind portmap service
rsyslog.service loaded active running System Logging Service
smbd.service loaded active running Samba SMB Daemon
ssh.service loaded active running OpenBSD Secure Shell server
systemd-journald.service loaded active running Journal Service
systemd-logind.service loaded active running User Login Management
systemd-networkd.service loaded active running Network Configuration
systemd-resolved.service loaded active running Network Name Resolution
systemd-udevd.service loaded active running Rule-based Manager for Device Events and Files
triggerhappy.service loaded active running triggerhappy global hotkey daemon
unattended-upgrades.service loaded active running Unattended Upgrades Shutdown
user@1000.service loaded active running User Manager for UID 1000
wpa_supplicant.service loaded active running WPA supplicant
wsdd.service loaded active running Web Services Dynamic Discovery host daemon
LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.
32 loaded units listed.
UNIT FILE STATE PRESET
anacron.service enabled enabled
apparmor.service enabled enabled
avahi-daemon.service enabled enabled
blk-availability.service enabled enabled
bluetooth.service enabled enabled
chrony.service enabled enabled
console-setup.service enabled enabled
cron.service enabled enabled
dphys-swapfile.service enabled enabled
e2scrub_reap.service enabled enabled
fake-hwclock.service enabled enabled
folder2ram_shutdown.service enabled enabled
folder2ram_startup.service enabled enabled
getty@.service enabled enabled
hciuart.service enabled enabled
keyboard-setup.service enabled enabled
lvm2-monitor.service enabled enabled
mdadm-shutdown.service enabled enabled
netdata.service enabled enabled
nfs-server.service enabled enabled
nginx.service enabled enabled
openmediavault-beep-down.service enabled enabled
openmediavault-beep-up.service enabled enabled
openmediavault-cleanup-monit.service enabled enabled
openmediavault-cleanup-php.service enabled enabled
openmediavault-engined.service enabled enabled
openmediavault-issue.service enabled enabled
orb.service enabled enabled
php8.2-fpm.service enabled enabled
rpi-display-backlight.service enabled enabled
rpi-eeprom-update.service enabled enabled
rsyslog.service enabled enabled
samba-ad-dc.service enabled enabled
smartctl-hdparm.service enabled enabled
smbd.service enabled enabled
ssh.service enabled enabled
sshswitch.service enabled enabled
systemd-network-generator.service enabled enabled
systemd-networkd-wait-online.service enabled disabled
systemd-networkd.service enabled enabled
systemd-pstore.service enabled enabled
systemd-resolved.service enabled enabled
triggerhappy.service enabled enabled
unattended-upgrades.service enabled enabled
wpa_supplicant.service enabled enabled
wsdd.service enabled enabled
46 unit files listed.
--- Running Processes ---
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 247242 100 0.4 12740 4504 ? R 22:37 0:00 ps aux --sort=-%cpu
root 246954 9.7 2.6 38136 24464 ? S 22:37 0:00 /usr/bin/python3 /home/jon/.ansible/tmp/ansible-tmp-1755916660.7313373-1106145-205718655528146/AnsiballZ_command.py
openmed+ 246935 8.1 1.6 213376 15180 ? S 22:37 0:00 php-fpm: pool openmediavault-webgui
netdata 4105435 3.3 0.9 134868 8960 ? SNl Aug21 72:05 /usr/lib/netdata/plugins.d/apps.plugin 1
orb 722747 3.0 4.9 2871256 46036 ? Ssl Jul29 1091:48 /usr/bin/orb sensor
jon 246599 1.7 1.0 19776 9912 ? Ss 22:37 0:00 /lib/systemd/systemd --user
netdata 4105183 1.4 1.7 413300 16368 ? SNsl Aug21 30:55 /usr/sbin/netdata -D
root 247018 1.3 0.3 7856 3356 ? S 22:37 0:00 bash /tmp/linux_system_audit.sh
jon 246621 0.8 0.8 20952 7540 ? S 22:37 0:00 sshd: jon@notty
root 207 0.6 0.0 0 0 ? S Jul23 298:46 [md0_raid1]
root 89 0.4 0.0 0 0 ? I< Jul23 194:40 [kworker/u21:0-brcmf_wq/mmc1:0001:1]
root 246595 0.3 1.0 20132 10092 ? Ss 22:37 0:00 sshd: jon [priv]
netdata 237753 0.3 0.3 4060 2832 ? SN 21:55 0:08 bash /usr/lib/netdata/plugins.d/tc-qos-helper.sh 1
root 1088 0.1 0.3 19016 3412 ? Sl Jul23 79:54 /usr/bin/monit -c /etc/monit/monitrc
root 246953 0.1 2.0 38188 18888 ? S 22:37 0:00 /usr/bin/python3 /home/jon/.ansible/tmp/ansible-tmp-1755916660.7313373-1106145-205718655528146/async_wrapper.py j259876869854 1800 /home/jon/.ansible/tmp/ansible-tmp-1755916660.7313373-1106145-205718655528146/AnsiballZ_command.py _
root 57 0.1 0.0 0 0 ? I< Jul23 64:20 [kworker/1:1H-kblockd]
root 245488 0.1 0.0 0 0 ? I 22:33 0:00 [kworker/0:1-events]
root 1733407 0.1 0.0 0 0 ? I< Aug03 35:12 [kworker/3:0H-kblockd]
avahi 572 0.1 0.3 8612 3360 ? Ss Jul23 49:06 avahi-daemon: running [raspberrypi.local]
systemd-+-agetty
|-avahi-daemon---avahi-daemon
|-bluetoothd
|-chronyd---chronyd
|-cron
|-dbus-daemon
|-mdadm
|-monit-+-mountpoint
| `-{monit}
|-netdata-+-apps.plugin---{apps.plugin}
| |-bash
| |-netdata---{netdata}
| |-nfacct.plugin
| `-42*[{netdata}]
|-nfsdcld
|-nginx---4*[nginx]
|-omv-engined
|-orb---22*[{orb}]
|-php-fpm8.2---3*[php-fpm8.2]
|-python3---python3---python3---bash-+-pstree
| `-tee
|-python3
|-rpc.idmapd
|-rpc.mountd
|-rpc.statd
|-rpcbind
|-rsyslogd---3*[{rsyslogd}]
|-smbd-+-cleanupd
| `-smbd-notifyd
|-sshd---sshd---sshd
|-systemd---(sd-pam)
|-systemd-journal
|-systemd-logind
|-systemd-network
|-systemd-resolve
|-systemd-udevd
|-thd
|-unattended-upgr
`-2*[wpa_supplicant]
[2025-08-22 22:37:48] [INFO] Running module: collect_security_info
==== SECURITY ASSESSMENT ====
--- User Accounts ---
root:x:0:0:root:/root:/bin/bash
jon:x:1000:1000:,,,:/home/jon:/bin/bash
orb:x:991:985::/home/orb:/bin/bash
netdata:x:990:984::/var/lib/netdata:/bin/bash
root
sudo:x:27:jon
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:37 - 22:37 (00:00)
jon pts/0 192.168.50.225 Fri Aug 22 22:36 - 22:36 (00:00)
wtmp begins Wed Jul 23 19:17:15 2025
--- SSH Configuration ---
Protocol 2
Port 22
PermitRootLogin yes
PasswordAuthentication yes
PubkeyAuthentication yes
--- File Permissions and SUID ---
/etc/collectd/collectd.conf.d/load.conf
/etc/collectd/collectd.conf.d/uptime.conf
/etc/collectd/collectd.conf.d/cpu.conf
/etc/collectd/collectd.conf.d/memory.conf
/etc/collectd/collectd.conf.d/rrdcached.conf
/etc/collectd/collectd.conf.d/df.conf
/etc/collectd/collectd.conf.d/interface.conf
/etc/collectd/collectd.conf.d/unixsock.conf
/etc/collectd/collectd.conf.d/syslog.conf
/srv/pillar/omv/tasks.sls
/var/lib/openmediavault/workbench/localstorage.d/admin
/var/lib/openmediavault/fstab_tasks.json
/var/lib/openmediavault/dirtymodules.json
/var/cache/openmediavault/archives/Packages
/usr/lib/dbus-1.0/dbus-daemon-launch-helper
/usr/lib/polkit-1/polkit-agent-helper-1
/usr/lib/openssh/ssh-keysign
/usr/sbin/postdrop
/usr/sbin/unix_chkpwd
/usr/sbin/mount.cifs
/usr/sbin/postqueue
/usr/sbin/mount.nfs
/usr/sbin/postlog
/usr/bin/gpasswd
/usr/bin/expiry
/usr/bin/pkexec
/usr/bin/fusermount3
/usr/bin/mount
/usr/bin/crontab
/usr/bin/chsh
/usr/bin/ping
/usr/bin/sudo
/usr/bin/su
/usr/bin/umount
/usr/bin/dotlockfile
/usr/bin/ntfs-3g
/usr/bin/passwd
/usr/bin/newgrp
/usr/bin/chfn
/usr/bin/ssh-agent
/usr/bin/chage
WARNING: Potentially dangerous SUID binary found: /bin/su
WARNING: Potentially dangerous SUID binary found: /usr/bin/sudo
WARNING: Potentially dangerous SUID binary found: /usr/bin/passwd
WARNING: Potentially dangerous SUID binary found: /usr/bin/chfn
WARNING: Potentially dangerous SUID binary found: /usr/bin/chsh
WARNING: Potentially dangerous SUID binary found: /usr/bin/gpasswd
WARNING: Potentially dangerous SUID binary found: /usr/bin/newgrp
WARNING: Potentially dangerous SUID binary found: /usr/bin/mount
WARNING: Potentially dangerous SUID binary found: /usr/bin/umount
WARNING: Potentially dangerous SUID binary found: /usr/bin/ping
WARNING: Potentially dangerous SUID binary found: /usr/bin/ping6
/run/lock
/srv/dev-disk-by-uuid-f6f44123-cf98-4252-9603-b7a3cd9dc285
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240/t410_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240/audrey_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240/jonathan_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240/t420_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240/surface_backup
/srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240/omv800_backup
/var/lib/php/sessions
/var/cache/salt/minion/roots/hash/base/omv/deploy/monit
--- Cron Jobs ---
total 40
drwxr-xr-x 2 root root 4096 Jun 1 15:23 .
drwxr-xr-x 111 root root 12288 Aug 21 08:45 ..
-rw-r--r-- 1 root root 102 Mar 2 2023 .placeholder
-rw-r--r-- 1 root root 285 Jan 10 2023 anacron
-rw-r--r-- 1 root root 202 Mar 4 2023 e2scrub_all
-rw-r--r-- 1 root root 589 Feb 24 2023 mdadm
-rw-r--r-- 1 root root 674 Jun 1 15:23 openmediavault-borgbackup
-rw-r--r-- 1 root root 712 Jul 13 2022 php
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.daily; }
47 6 * * 7 root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.weekly; }
52 6 1 * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.monthly; }
#
--- Shell History ---
Analyzing: /home/jon/.bash_history
WARNING: Pattern 'token' found in /home/jon/.bash_history
--- Tailscale Configuration ---
Tailscale not installed
[2025-08-22 22:37:59] [INFO] Running module: run_vulnerability_scan
==== VULNERABILITY ASSESSMENT ====
--- Kernel Vulnerabilities ---
6.12.34+rpt-rpi-v8
Current kernel: 6.12.34+rpt-rpi-v8
Kernel major version: 6
Kernel minor version: 12
Risk Level: LOW
Assessment: Kernel version is recent and likely secure
Kernel Security Features:
ASLR (Address Space Layout Randomization): ENABLED
WARNING: Dmesg restriction is disabled
--- Open Ports Security Check ---
Port 53 (DNS) - Ensure properly configured
Port 80 (HTTP) - Consider HTTPS
Port 139 (SMB/NetBIOS) - Potentially risky
Port 445 (SMB/NetBIOS) - Potentially risky
[2025-08-22 22:37:59] [INFO] Running module: collect_env_info
==== ENVIRONMENT AND CONFIGURATION ====
--- Environment Variables ---
SHELL=/bin/bash
HOME=/root
LANG=en_US.UTF-8
USER=root
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
--- Mount Points ---
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=192068k,nr_inodes=48017,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=185720k,mode=755)
/dev/mmcblk0p2 on / type ext4 (rw,noatime,nodiratime)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=31,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=6160)
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime)
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
nfsd on /proc/fs/nfsd type nfsd (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
configfs on /sys/kernel/config type configfs (rw,nosuid,nodev,noexec,relatime)
ramfs on /run/credentials/systemd-sysctl.service type ramfs (ro,nosuid,nodev,noexec,relatime,mode=700)
ramfs on /run/credentials/systemd-sysusers.service type ramfs (ro,nosuid,nodev,noexec,relatime,mode=700)
ramfs on /run/credentials/systemd-tmpfiles-setup-dev.service type ramfs (ro,nosuid,nodev,noexec,relatime,mode=700)
tmpfs on /tmp type tmpfs (rw,relatime)
/dev/mmcblk0p1 on /boot/firmware type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro)
ramfs on /run/credentials/systemd-tmpfiles-setup.service type ramfs (ro,nosuid,nodev,noexec,relatime,mode=700)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/log type ext4 (rw,noatime,nodiratime)
folder2ram on /var/log type tmpfs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/tmp type ext4 (rw,noatime,nodiratime)
folder2ram on /var/tmp type tmpfs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/lib/openmediavault/rrd type ext4 (rw,noatime,nodiratime)
folder2ram on /var/lib/openmediavault/rrd type tmpfs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/spool type ext4 (rw,noatime,nodiratime)
folder2ram on /var/spool type tmpfs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/lib/rrdcached type ext4 (rw,noatime,nodiratime)
folder2ram on /var/lib/rrdcached type tmpfs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/lib/monit type ext4 (rw,noatime,nodiratime)
folder2ram on /var/lib/monit type tmpfs (rw,relatime)
/dev/mmcblk0p2 on /var/folder2ram/var/cache/samba type ext4 (rw,noatime,nodiratime)
folder2ram on /var/cache/samba type tmpfs (rw,relatime)
/dev/md0 on /srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240 type ext4 (rw,relatime,quota,usrquota,grpquota)
/dev/md0 on /export/audrey_backup type ext4 (rw,relatime,quota,usrquota,grpquota)
/dev/md0 on /export/jonathan_backup type ext4 (rw,relatime,quota,usrquota,grpquota)
/dev/md0 on /export/omv800_backup type ext4 (rw,relatime,quota,usrquota,grpquota)
/dev/md0 on /export/surface_backup type ext4 (rw,relatime,quota,usrquota,grpquota)
/dev/md0 on /export/t410_backup type ext4 (rw,relatime,quota,usrquota,grpquota)
/dev/md0 on /export/t420_backup type ext4 (rw,relatime,quota,usrquota,grpquota)
tracefs on /sys/kernel/debug/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=92856k,nr_inodes=23214,mode=700,uid=1000,gid=1000)
Filesystem Size Used Avail Use% Mounted on
udev 188M 0 188M 0% /dev
tmpfs 182M 20M 163M 11% /run
/dev/mmcblk0p2 28G 2.9G 24G 11% /
tmpfs 454M 252K 454M 1% /dev/shm
tmpfs 5.0M 16K 5.0M 1% /run/lock
tmpfs 454M 2.2M 452M 1% /tmp
/dev/mmcblk0p1 510M 72M 439M 15% /boot/firmware
folder2ram 454M 3.2M 451M 1% /var/log
folder2ram 454M 0 454M 0% /var/tmp
folder2ram 454M 268K 454M 1% /var/lib/openmediavault/rrd
folder2ram 454M 3.8M 450M 1% /var/spool
folder2ram 454M 12M 443M 3% /var/lib/rrdcached
folder2ram 454M 4.0K 454M 1% /var/lib/monit
folder2ram 454M 16K 454M 1% /var/cache/samba
/dev/md0 7.3T 306G 7.0T 5% /srv/dev-disk-by-uuid-e91c5052-8b74-4125-9d94-9ec465032240
tmpfs 91M 0 91M 0% /run/user/1000
--- System Limits ---
real-time non-blocking time (microseconds, -R) unlimited
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 1500
max locked memory (kbytes, -l) 116072
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 1500
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
[2025-08-22 22:37:59] [INFO] Generating JSON summary
==== GENERATING SUMMARY ====
[2025-08-22 22:37:59] [Generating JSON summary...]
ERROR: Failed to generate JSON summary.
[2025-08-22 22:37:59] [WARN] JSON summary generation failed, but continuing...
==== AUDIT COMPLETE ====
[2025-08-22 22:37:59] [INFO] Audit completed successfully in 17 seconds
[2025-08-22 22:37:59] [INFO] Results available in: /tmp/system_audit_raspberrypi_20250822_223742
[2025-08-22 22:37:59] [INFO] Enhanced summary created: /tmp/system_audit_raspberrypi_20250822_223742/SUMMARY.txt
[2025-08-22 22:37:59] [INFO] Compressing audit results...

View File

@@ -0,0 +1,768 @@
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-====================================-===================================-============-=================================================================================
ii acl 2.3.1-3 arm64 access control list - utilities
ii adduser 3.134 all add and remove users and groups
ii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files
ii alsa-ucm-conf 1.2.8-1 all ALSA Use Case Manager configuration files
ii alsa-utils 1.2.8-1+rpt1 arm64 Utilities for configuring and using ALSA
ii anacron 2.3-36 arm64 cron-like program that doesn't go by time
ii apparmor 3.0.8-3 arm64 user-space parser utility for AppArmor
ii apt 2.6.1 arm64 commandline package manager
ii apt-listchanges 3.24 all package change history notification tool
ii apt-utils 2.6.1 arm64 package management related utility programs
ii apticron 1.2.5+nmu1 all Simple tool to mail about pending package updates - cron version
ii avahi-daemon 0.8-10+deb12u1 arm64 Avahi mDNS/DNS-SD daemon
ii base-files 12.4+deb12u11 arm64 Debian base system miscellaneous files
ii base-passwd 3.6.1 arm64 Debian base system master password and group files
ii bash 5.2.15-2+b8 arm64 GNU Bourne Again SHell
ii bash-completion 1:2.11-6 all programmable completion for the bash shell
ii beep 1.4.9-1 arm64 advanced PC-speaker beeper
ii binutils 2.40-2 arm64 GNU assembler, linker and binary utilities
ii binutils-aarch64-linux-gnu 2.40-2 arm64 GNU binary utilities, for aarch64-linux-gnu target
ii binutils-common:arm64 2.40-2 arm64 Common files for the GNU assembler, linker and binary utilities
ii bluez 5.66-1+rpt1+deb12u2 arm64 Bluetooth tools and daemons
ii bluez-firmware 1.2-9+rpt3 all Firmware for Bluetooth devices
ii borgbackup 1.4.0-4~bpo12+1 arm64 deduplicating and compressing backup program
ii bsd-mailx 8.1.2-0.20220412cvs-1 arm64 simple mail user agent
ii bsdextrautils 2.38.1-5+deb12u3 arm64 extra utilities from 4.4BSD-Lite
ii bsdmainutils 12.1.8 all Transitional package for more utilities from FreeBSD
ii bsdutils 1:2.38.1-5+deb12u3 arm64 basic utilities from 4.4BSD-Lite
ii btrfs-progs 6.2-1+deb12u1 arm64 Checksumming Copy on Write Filesystem utilities
ii build-essential 12.9 arm64 Informational list of build-essential packages
ii busybox 1:1.35.0-4+b4 arm64 Tiny utilities for small and embedded systems
ii bzip2 1.0.8-5+b1 arm64 high-quality block-sorting file compressor - utilities
ii ca-certificates 20230311+deb12u1 all Common CA certificates
ii chrony 4.3-2+deb12u1 arm64 Versatile implementation of the Network Time Protocol
ii cifs-utils 2:7.0-2 arm64 Common Internet File System utilities
ii collectd 5.12.0-14 arm64 statistics collection and monitoring daemon
ii collectd-core 5.12.0-14 arm64 statistics collection and monitoring daemon (core system)
ii console-setup 1.221rpt1 all console font and keymap setup program
ii console-setup-linux 1.221rpt1 all Linux specific part of console-setup
ii coreutils 9.1-1 arm64 GNU core utilities
ii cpio 2.13+dfsg-7.1 arm64 GNU cpio -- a program to manage archives of files
ii cpp 4:12.2.0-3 arm64 GNU C preprocessor (cpp)
ii cpp-12 12.2.0-14+deb12u1 arm64 GNU C preprocessor
ii cpufrequtils 008-2 arm64 utilities to deal with the cpufreq Linux kernel feature
ii cron 3.0pl1-162 arm64 process scheduling daemon
ii cron-daemon-common 3.0pl1-162 all process scheduling daemon's configuration files
ii curl 7.88.1-10+deb12u12 arm64 command line tool for transferring data with URL syntax
ii dash 0.5.12-2 arm64 POSIX-compliant shell
ii dbus 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (system message bus)
ii dbus-bin 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (command line utilities)
ii dbus-daemon 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (reference message bus)
ii dbus-session-bus-common 1.14.10-1~deb12u1 all simple interprocess messaging system (session bus configuration)
ii dbus-system-bus-common 1.14.10-1~deb12u1 all simple interprocess messaging system (system bus configuration)
ii dbus-user-session 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (systemd --user integration)
ii dc 1.07.1-3 arm64 GNU dc arbitrary precision reverse-polish calculator
ii dconf-cli 0.40.0-4 arm64 simple configuration storage system - utilities
ii dctrl-tools 2.24-3 arm64 Command-line tools to process Debian package information
ii debconf 1.5.82 all Debian configuration management system
ii debconf-i18n 1.5.82 all full internationalization support for debconf
ii debconf-utils 1.5.82 all debconf utilities
ii debian-archive-keyring 2023.3+deb12u2 all GnuPG archive keys of the Debian archive
ii debianutils 5.7-0.5~deb12u1 arm64 Miscellaneous utilities specific to Debian
ii device-tree-compiler 1.6.1-4+b1 arm64 Device Tree Compiler for Flat Device Trees
ii dialog 1.3-20230209-1 arm64 Displays user-friendly dialog boxes from shell scripts
ii diffutils 1:3.8-4 arm64 File comparison utilities
ii dirmngr 2.2.40-1.1 arm64 GNU privacy guard - network certificate management service
ii distro-info-data 0.58+deb12u4 all information about the distributions' releases (data files)
ii dmeventd 2:1.02.185-2 arm64 Linux Kernel Device Mapper event daemon
ii dmidecode 3.4-1 arm64 SMBIOS/DMI table decoder
ii dmsetup 2:1.02.185-2 arm64 Linux Kernel Device Mapper userspace library
ii dos2unix 7.4.3-1 arm64 convert text file line endings between CRLF and LF
ii dosfstools 4.2-1 arm64 utilities for making and checking MS-DOS FAT filesystems
ii dphys-swapfile 20100506-7.1+rpt3 all Autogenerate and use a swap file
ii dpkg 1.22.6~bpo12+rpt3 arm64 Debian package management system
ii dpkg-dev 1.22.6~bpo12+rpt3 all Debian package development tools
ii e2fsprogs 1.47.0-2 arm64 ext2/ext3/ext4 file system utilities
ii ed 1.19-1 arm64 classic UNIX line editor
ii ethtool 1:6.1-1 arm64 display or change Ethernet device settings
ii f2fs-tools 1.15.0-1 arm64 Tools for Flash-Friendly File System
ii fake-hwclock 0.12+nmu1 all Save/restore system clock on machines without working RTC hardware
ii fakeroot 1.31-1.2 arm64 tool for simulating superuser privileges
ii fbset 2.1-33 arm64 framebuffer device maintenance program
ii fdisk 2.38.1-5+deb12u3 arm64 collection of partitioning utilities
ii file 1:5.44-3 arm64 Recognize the type of data in a file using "magic" numbers
ii findutils 4.9.0-4 arm64 utilities for finding files--find, xargs
ii firmware-atheros 1:20240709-2~bpo12+1+rpt3 all Binary firmware for Qualcomm Atheros wireless cards
ii firmware-brcm80211 1:20240709-2~bpo12+1+rpt3 all Binary firmware for Broadcom/Cypress 802.11 wireless cards
ii firmware-libertas 1:20240709-2~bpo12+1+rpt3 all Binary firmware for Marvell wireless cards
ii firmware-mediatek 1:20240709-2~bpo12+1+rpt3 all Binary firmware for MediaTek and Ralink chips for networking, SoCs and media
ii firmware-realtek 1:20240709-2~bpo12+1+rpt3 all Binary firmware for Realtek wired/Wi-Fi/BT adapters
ii flashrom 1.3.0-2.1 arm64 Identify, read, write, erase, and verify BIOS/ROM/flash chips
ii folder2ram 0.4.0 all script-based utility to manage tmpfs folders
ii fontconfig 2.14.1-4 arm64 generic font configuration library - support binaries
ii fontconfig-config 2.14.1-4 arm64 generic font configuration library - configuration
ii fonts-dejavu-core 2.37-6 all Vera font family derivate with additional characters
ii fonts-font-awesome 5.0.10+really4.7.0~dfsg-4.1 all iconic font designed for use with Twitter Bootstrap
ii fonts-glyphicons-halflings 1.009~3.4.1+dfsg-3+deb12u1 all icons made for smaller graphic
ii fsarchiver 0.8.7-1 arm64 file system archiver
ii fuse3 3.14.0-4 arm64 Filesystem in Userspace (3.x version)
ii g++ 4:12.2.0-3 arm64 GNU C++ compiler
ii g++-12 12.2.0-14+deb12u1 arm64 GNU C++ compiler
ii gawk 1:5.2.1-2 arm64 GNU awk, a pattern scanning and processing language
ii gcc 4:12.2.0-3 arm64 GNU C compiler
ii gcc-12 12.2.0-14+deb12u1 arm64 GNU C compiler
ii gcc-12-base:arm64 12.2.0-14+deb12u1 arm64 GCC, the GNU Compiler Collection (base package)
ii gdb 13.1-3 arm64 GNU Debugger
ii gdisk 1.0.9-2.1 arm64 GPT fdisk text-mode partitioning tool
ii gettext-base 0.21-12 arm64 GNU Internationalization utilities for the base system
ii gnupg 2.2.40-1.1 all GNU privacy guard - a free PGP replacement
ii gnupg-l10n 2.2.40-1.1 all GNU privacy guard - localization files
ii gnupg-utils 2.2.40-1.1 arm64 GNU privacy guard - utility programs
ii gpg 2.2.40-1.1 arm64 GNU Privacy Guard -- minimalist public key operations
ii gpg-agent 2.2.40-1.1 arm64 GNU privacy guard - cryptographic agent
ii gpg-wks-client 2.2.40-1.1 arm64 GNU privacy guard - Web Key Service client
ii gpg-wks-server 2.2.40-1.1 arm64 GNU privacy guard - Web Key Service server
ii gpgconf 2.2.40-1.1 arm64 GNU privacy guard - core configuration utilities
ii gpgsm 2.2.40-1.1 arm64 GNU privacy guard - S/MIME version
ii gpgv 2.2.40-1.1 arm64 GNU privacy guard - signature verification tool
ii gpiod 1.6.3-1+b3 arm64 Tools for interacting with Linux GPIO character device - binary
ii grep 3.8-5 arm64 GNU grep, egrep and fgrep
ii groff-base 1.22.4-10 arm64 GNU troff text-formatting system (base system components)
ii gzip 1.12-1 arm64 GNU compression utilities
ii hostname 3.23+nmu1 arm64 utility to set/show the host name or domain name
ii htop 3.2.2-2 arm64 interactive processes viewer
ii init 1.65.2 arm64 metapackage ensuring an init system is installed
ii init-system-helpers 1.65.2 all helper tools for all init systems
ii initramfs-tools 0.142+rpt4+deb12u3 all generic modular initramfs generator (automation)
ii initramfs-tools-core 0.142+rpt4+deb12u3 all generic modular initramfs generator (core tools)
ii iproute2 6.1.0-3 arm64 networking and traffic control tools
ii iptables 1.8.9-2 arm64 administration tools for packet filtering and NAT
ii iputils-ping 3:20221126-1+deb12u1 arm64 Tools to test the reachability of network hosts
ii isc-dhcp-client 4.4.3-P1-2 arm64 DHCP client for automatically obtaining an IP address
ii isc-dhcp-common 4.4.3-P1-2 arm64 common manpages relevant to all of the isc-dhcp packages
ii iso-codes 4.15.0-1 all ISO language, territory, currency, script codes and their translations
ii iw 5.19-1 arm64 tool for configuring Linux wireless devices
ii jc 1.22.5-1 all JSON CLI output utility
ii jfsutils 1.1.15-5 arm64 utilities for managing the JFS filesystem
ii jq 1.6-2.1 arm64 lightweight and flexible command-line JSON processor
ii kbd 2.5.1-1+b1 arm64 Linux console font and keytable utilities
ii keyboard-configuration 1.221rpt1 all system-wide keyboard preferences
ii keyutils 1.6.3-2 arm64 Linux Key Management Utilities
ii klibc-utils 2.0.12-1 arm64 small utilities built with klibc for early boot
ii kmod 30+20221128-1 arm64 tools for managing Linux kernel modules
ii kms++-utils 0~git20231115~065257+9ae90ce-1 arm64 C++ library for kernel mode setting - utilities
ii less 590-2.1~deb12u2 arm64 pager program similar to more
ii libabsl20220623:arm64 20220623.1-1+deb12u2 arm64 extensions to the C++ standard library
ii libacl1:arm64 2.3.1-3 arm64 access control list - shared library
ii libaio1:arm64 0.3.113-4 arm64 Linux kernel AIO access library - shared library
ii libalgorithm-diff-perl 1.201-1 all module to find differences between files
ii libalgorithm-diff-xs-perl:arm64 0.04-8+b1 arm64 module to find differences between files (XS accelerated)
ii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data
ii libaom3:arm64 3.6.0-1+deb12u1 arm64 AV1 Video Codec Library
ii libapparmor1:arm64 3.0.8-3 arm64 changehat AppArmor library
ii libapt-pkg6.0:arm64 2.6.1 arm64 package management runtime library
ii libargon2-1:arm64 0~20171227-0.3+deb12u1 arm64 memory-hard hashing function - runtime library
ii libasan8:arm64 12.2.0-14+deb12u1 arm64 AddressSanitizer -- a fast memory error detector
ii libasound2:arm64 1.2.8-1+rpt1 arm64 shared library for ALSA applications
ii libasound2-data 1.2.8-1+rpt1 all Configuration files and profiles for ALSA drivers
ii libassuan0:arm64 2.5.5-5 arm64 IPC library for the GnuPG components
ii libatasmart4:arm64 0.19-5 arm64 ATA S.M.A.R.T. reading and parsing library
ii libatomic1:arm64 12.2.0-14+deb12u1 arm64 support library providing __atomic built-in functions
ii libatopology2:arm64 1.2.8-1+rpt1 arm64 shared library for handling ALSA topology definitions
ii libattr1:arm64 1:2.5.1-4 arm64 extended attribute handling - shared library
ii libaudit-common 1:3.0.9-1 all Dynamic library for security auditing - common files
ii libaudit1:arm64 1:3.0.9-1 arm64 Dynamic library for security auditing
ii libavahi-client3:arm64 0.8-10+deb12u1 arm64 Avahi client library
ii libavahi-common-data:arm64 0.8-10+deb12u1 arm64 Avahi common data files
ii libavahi-common3:arm64 0.8-10+deb12u1 arm64 Avahi common library
ii libavahi-core7:arm64 0.8-10+deb12u1 arm64 Avahi's embeddable mDNS/DNS-SD library
ii libavif15:arm64 0.11.1-1+deb12u1 arm64 Library for handling .avif files
ii libbabeltrace1:arm64 1.5.11-1+b2 arm64 Babeltrace conversion libraries
ii libbinutils:arm64 2.40-2 arm64 GNU binary utilities (private shared library)
ii libblas3:arm64 3.11.0-2 arm64 Basic Linear Algebra Reference implementations, shared library
ii libblkid1:arm64 2.38.1-5+deb12u3 arm64 block device ID library
rc libblockdev2:arm64 2.28-2 arm64 Library for manipulating block devices
ii libboost-filesystem1.74.0:arm64 1.74.0+ds1-21 arm64 filesystem operations (portable paths, iteration over directories, etc) in C++
ii libboost-log1.74.0 1.74.0+ds1-21 arm64 C++ logging library
ii libboost-program-options1.74.0:arm64 1.74.0+ds1-21 arm64 program options library for C++
ii libboost-regex1.74.0:arm64 1.74.0+ds1-21 arm64 regular expression library for C++
ii libboost-thread1.74.0:arm64 1.74.0+ds1-21 arm64 portable C++ multi-threading
ii libbpf1:arm64 1:1.1.0-1 arm64 eBPF helper library (shared library)
ii libbrotli1:arm64 1.0.9-2+b6 arm64 library implementing brotli encoder and decoder (shared libraries)
ii libbsd0:arm64 0.11.7-2 arm64 utility functions from BSD systems - shared library
ii libbz2-1.0:arm64 1.0.8-5+b1 arm64 high-quality block-sorting file compressor library - runtime
ii libc-bin 2.36-9+rpt2+deb12u12 arm64 GNU C Library: Binaries
ii libc-dev-bin 2.36-9+rpt2+deb12u12 arm64 GNU C Library: Development binaries
ii libc-devtools 2.36-9+rpt2+deb12u12 arm64 GNU C Library: Development tools
ii libc-l10n 2.36-9+rpt2+deb12u12 all GNU C Library: localization files
ii libc6:arm64 2.36-9+rpt2+deb12u12 arm64 GNU C Library: Shared libraries
ii libc6-dbg:arm64 2.36-9+rpt2+deb12u12 arm64 GNU C Library: detached debugging symbols
ii libc6-dev:arm64 2.36-9+rpt2+deb12u12 arm64 GNU C Library: Development Libraries and Header Files
ii libcairo2:arm64 1.16.0-7+rpt1 arm64 Cairo 2D vector graphics library
ii libcamera-ipa:arm64 0.5.0+rpt20250429-1 arm64 complex camera support library (IPA modules)
ii libcamera0.5:arm64 0.5.0+rpt20250429-1 arm64 complex camera support library
ii libcap-ng0:arm64 0.8.3-1+b3 arm64 alternate POSIX capabilities library
ii libcap2:arm64 1:2.66-4+deb12u1 arm64 POSIX 1003.1e capabilities (library)
ii libcap2-bin 1:2.66-4+deb12u1 arm64 POSIX 1003.1e capabilities (utilities)
ii libcbor0.8:arm64 0.8.0-2+b1 arm64 library for parsing and generating CBOR (RFC 7049)
ii libcc1-0:arm64 12.2.0-14+deb12u1 arm64 GCC cc1 plugin for GDB
ii libcom-err2:arm64 1.47.0-2 arm64 common error description library
ii libcpufreq0 008-2 arm64 shared library to deal with the cpufreq Linux kernel feature
ii libcrypt-dev:arm64 1:4.4.33-2 arm64 libcrypt development files
ii libcrypt1:arm64 1:4.4.33-2 arm64 libcrypt shared library
ii libcryptsetup12:arm64 2:2.6.1-4~deb12u2 arm64 disk encryption support - shared library
ii libctf-nobfd0:arm64 2.40-2 arm64 Compact C Type Format library (runtime, no BFD dependency)
ii libctf0:arm64 2.40-2 arm64 Compact C Type Format library (runtime, BFD dependency)
ii libcups2:arm64 2.4.2-3+deb12u8 arm64 Common UNIX Printing System(tm) - Core library
ii libcurl3-gnutls:arm64 7.88.1-10+deb12u12 arm64 easy-to-use client-side URL transfer library (GnuTLS flavour)
ii libcurl4:arm64 7.88.1-10+deb12u12 arm64 easy-to-use client-side URL transfer library (OpenSSL flavour)
ii libdaemon0:arm64 0.14-7.1 arm64 lightweight C library for daemons - runtime library
ii libdatrie1:arm64 0.2.13-2+b1 arm64 Double-array trie library
ii libdav1d6:arm64 1.0.0-2+deb12u1 arm64 fast and small AV1 video stream decoder (shared library)
ii libdb5.3:arm64 5.3.28+dfsg2-1 arm64 Berkeley v5.3 Database Libraries [runtime]
ii libdbi1:arm64 0.9.0-6 arm64 DB Independent Abstraction Layer for C -- shared library
ii libdbus-1-3:arm64 1.14.10-1~deb12u1 arm64 simple interprocess messaging system (library)
ii libdconf1:arm64 0.40.0-4 arm64 simple configuration storage system - runtime library
ii libde265-0:arm64 1.0.11-1+deb12u2 arm64 Open H.265 video codec implementation
ii libdebconfclient0:arm64 0.270 arm64 Debian Configuration Management System (C-implementation library)
ii libdebuginfod-common 0.188-2.1 all configuration to enable the Debian debug info server
ii libdebuginfod1:arm64 0.188-2.1 arm64 library to interact with debuginfod (development files)
ii libdeflate0:arm64 1.14-1 arm64 fast, whole-buffer DEFLATE-based compression and decompression
ii libdevmapper-event1.02.1:arm64 2:1.02.185-2 arm64 Linux Kernel Device Mapper event support library
ii libdevmapper1.02.1:arm64 2:1.02.185-2 arm64 Linux Kernel Device Mapper userspace library
ii libdouble-conversion3:arm64 3.2.1-1 arm64 routines to convert IEEE floats to and from strings
ii libdpkg-perl 1.22.6~bpo12+rpt3 all Dpkg perl modules
ii libdrm-common 2.4.123-1~bpo12+1+rpt1 all Userspace interface to kernel DRM services -- common files
ii libdrm2:arm64 2.4.123-1~bpo12+1+rpt1 arm64 Userspace interface to kernel DRM services -- runtime
ii libdtovl0:arm64 20250514-1~bookworm arm64 Library for manipulating Device Tree overlays
ii libduktape207:arm64 2.7.0-2 arm64 embeddable Javascript engine, library
ii libdvdread8:arm64 6.1.3-1 arm64 library for reading DVDs
ii libdw1:arm64 0.188-2.1 arm64 library that provides access to the DWARF debug information
ii libebml5:arm64 1.4.4-1+deb12u1 arm64 access library for the EBML format (shared library)
ii libedit2:arm64 3.1-20221030-2 arm64 BSD editline and history libraries
ii libelf1:arm64 0.188-2.1 arm64 library to read and write ELF files
ii libestr0:arm64 0.1.11-1 arm64 Helper functions for handling strings (lib)
ii libevent-core-2.1-7:arm64 2.1.12-stable-8 arm64 Asynchronous event notification library (core)
ii libexif12:arm64 0.6.24-1+b1 arm64 library to parse EXIF files
ii libexpat1:arm64 2.5.0-1+deb12u1 arm64 XML parsing C library - runtime library
ii libext2fs2:arm64 1.47.0-2 arm64 ext2/ext3/ext4 file system libraries
ii libfakeroot:arm64 1.31-1.2 arm64 tool for simulating superuser privileges - shared libraries
ii libfastjson4:arm64 1.2304.0-1 arm64 fast json library for C
ii libfdisk1:arm64 2.38.1-5+deb12u3 arm64 fdisk partitioning library
ii libfdt1:arm64 1.6.1-4+b1 arm64 Flat Device Trees manipulation library
ii libffi8:arm64 3.4.4-1 arm64 Foreign Function Interface library runtime
ii libfftw3-single3:arm64 3.3.10-1 arm64 Library for computing Fast Fourier Transforms - Single precision
ii libfido2-1:arm64 1.12.0-2+b1 arm64 library for generating and verifying FIDO 2.0 objects
ii libfile-fcntllock-perl 0.22-4+b1 arm64 Perl module for file locking with fcntl(2)
ii libflac12:arm64 1.4.2+ds-2 arm64 Free Lossless Audio Codec - runtime C library
ii libfmt9:arm64 9.1.0+ds1-2 arm64 fast type-safe C++ formatting library -- library
ii libfontconfig1:arm64 2.14.1-4 arm64 generic font configuration library - runtime
ii libfreetype6:arm64 2.12.1+dfsg-5+deb12u4 arm64 FreeType 2 font engine, shared library files
ii libfribidi0:arm64 1.0.8-2.1 arm64 Free Implementation of the Unicode BiDi algorithm
ii libftdi1-2:arm64 1.5-6+b2 arm64 C Library to control and program the FTDI USB controllers
ii libfuse2:arm64 2.9.9-6+b1 arm64 Filesystem in Userspace (library)
ii libfuse3-3:arm64 3.14.0-4 arm64 Filesystem in Userspace (library) (3.x version)
ii libgav1-1:arm64 0.18.0-1+b1 arm64 AV1 decoder developed by Google -- runtime library
ii libgcc-12-dev:arm64 12.2.0-14+deb12u1 arm64 GCC support library (development files)
ii libgcc-s1:arm64 12.2.0-14+deb12u1 arm64 GCC support library
ii libgcrypt20:arm64 1.10.1-3 arm64 LGPL Crypto library - runtime library
ii libgd3:arm64 2.3.3-9 arm64 GD Graphics Library
ii libgdbm-compat4:arm64 1.23-3 arm64 GNU dbm database routines (legacy support runtime version)
ii libgdbm6:arm64 1.23-3 arm64 GNU dbm database routines (runtime version)
ii libglib2.0-0:arm64 2.74.6-2+deb12u6 arm64 GLib library of C routines
ii libglib2.0-data 2.74.6-2+deb12u6 all Common files for GLib library
ii libgmp10:arm64 2:6.2.1+dfsg1-1.1 arm64 Multiprecision arithmetic library
ii libgnutls30:arm64 3.7.9-2+deb12u5 arm64 GNU TLS library - main runtime library
ii libgomp1:arm64 12.2.0-14+deb12u1 arm64 GCC OpenMP (GOMP) support library
ii libgpg-error0:arm64 1.46-1 arm64 GnuPG development runtime library
ii libgpiod2:arm64 1.6.3-1+b3 arm64 C library for interacting with Linux GPIO device - shared libraries
ii libgpiolib0:arm64 20250514-1~bookworm arm64 GPIO library for Raspberry Pi devices
ii libgprofng0:arm64 2.40-2 arm64 GNU Next Generation profiler (runtime library)
ii libgraphite2-3:arm64 1.3.14-1 arm64 Font rendering engine for Complex Scripts -- library
ii libgssapi-krb5-2:arm64 1.20.1-2+deb12u3 arm64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii libharfbuzz0b:arm64 6.0.0+dfsg-3 arm64 OpenType text shaping engine (shared library)
ii libheif1:arm64 1.15.1-1+deb12u1 arm64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library
ii libhogweed6:arm64 3.8.1-2 arm64 low level cryptographic library (public-key cryptos)
ii libhwasan0:arm64 12.2.0-14+deb12u1 arm64 AddressSanitizer -- a fast memory error detector
ii libicu72:arm64 72.1-3+deb12u1 arm64 International Components for Unicode
ii libidn2-0:arm64 2.3.3-1+b1 arm64 Internationalized domain names (IDNA2008/TR46) library
ii libinih1:arm64 55-1 arm64 simple .INI file parser
ii libip4tc2:arm64 1.8.9-2 arm64 netfilter libip4tc library
ii libip6tc2:arm64 1.8.9-2 arm64 netfilter libip6tc library
ii libisl23:arm64 0.25-1.1 arm64 manipulating sets and relations of integer points bounded by linear constraints
ii libitm1:arm64 12.2.0-14+deb12u1 arm64 GNU Transactional Memory Library
ii libiw30:arm64 30~pre9-14 arm64 Wireless tools - library
ii libjansson4:arm64 2.14-2 arm64 C library for encoding, decoding and manipulating JSON data
ii libjaylink0:arm64 0.3.1-1 arm64 library for interacting with J-Link programmers
ii libjbig0:arm64 2.1-6.1 arm64 JBIGkit libraries
ii libjim0.81:arm64 0.81+dfsg0-2 arm64 small-footprint implementation of Tcl - shared library
ii libjpeg62-turbo:arm64 1:2.1.5-2 arm64 libjpeg-turbo JPEG runtime library
ii libjq1:arm64 1.6-2.1 arm64 lightweight and flexible command-line JSON processor - shared library
ii libjs-bootstrap 3.4.1+dfsg-3+deb12u1 all HTML, CSS and JS framework
ii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications
ii libjs-sphinxdoc 5.3.0-4 all JavaScript support for Sphinx documentation
ii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript's functional programming helper library
ii libjson-c5:arm64 0.16-2 arm64 JSON manipulation library - shared library
ii libk5crypto3:arm64 1.20.1-2+deb12u3 arm64 MIT Kerberos runtime libraries - Crypto Library
ii libkeyutils1:arm64 1.6.3-2 arm64 Linux Key Management Utilities (library)
ii libklibc:arm64 2.0.12-1 arm64 minimal libc subset for use with initramfs
ii libkmod2:arm64 30+20221128-1 arm64 libkmod shared library
ii libkms++0:arm64 0~git20231115~065257+9ae90ce-1 arm64 C++ library for kernel mode setting
ii libkrb5-3:arm64 1.20.1-2+deb12u3 arm64 MIT Kerberos runtime libraries
ii libkrb5support0:arm64 1.20.1-2+deb12u3 arm64 MIT Kerberos runtime libraries - Support library
ii libksba8:arm64 1.6.3-2 arm64 X.509 and CMS support library
ii libldap-2.5-0:arm64 2.5.13+dfsg-5 arm64 OpenLDAP libraries
ii libldap-common 2.5.13+dfsg-5 all OpenLDAP common files for libraries
ii libldb2:arm64 2:2.6.2+samba4.17.12+dfsg-0+deb12u1 arm64 LDAP-like embedded database - shared library
ii liblerc4:arm64 4.0.0+ds-2 arm64 Limited Error Raster Compression library
ii liblgpio1:arm64 0.2.2-1~rpt1 arm64 Control GPIO pins via gpiochip devices - shared libraries
ii liblinear4:arm64 2.3.0+dfsg-5 arm64 Library for Large Linear Classification
ii liblmdb0:arm64 0.9.24-1 arm64 Lightning Memory-Mapped Database shared library
ii liblocale-gettext-perl 1.07-5 arm64 module using libc functions for internationalization in Perl
ii liblockfile-bin 1.17-1+b1 arm64 support binaries for and cli utilities based on liblockfile
ii liblockfile1:arm64 1.17-1+b1 arm64 NFS-safe locking library
ii liblognorm5:arm64 2.0.6-4 arm64 log normalizing library
ii liblsan0:arm64 12.2.0-14+deb12u1 arm64 LeakSanitizer -- a memory leak detector (runtime)
ii liblttng-ust-common1:arm64 2.13.5-1 arm64 LTTng 2.0 Userspace Tracer (common library)
ii liblttng-ust-ctl5:arm64 2.13.5-1 arm64 LTTng 2.0 Userspace Tracer (trace control library)
ii liblttng-ust1:arm64 2.13.5-1 arm64 LTTng 2.0 Userspace Tracer (tracing libraries)
ii liblua5.3-0:arm64 5.3.6-2 arm64 Shared library for the Lua interpreter version 5.3
ii libluajit-5.1-2:arm64 2.1.0~beta3+git20220320+dfsg-4.1 arm64 Just in time compiler for Lua - library version
ii libluajit-5.1-common 2.1.0~beta3+git20220320+dfsg-4.1 all Just in time compiler for Lua - common files
ii liblvm2cmd2.03:arm64 2.03.16-2 arm64 LVM2 command library
ii liblz4-1:arm64 1.9.4-1 arm64 Fast LZ compression algorithm library - runtime
ii liblzma5:arm64 5.4.1-1 arm64 XZ-format compression library
ii liblzo2-2:arm64 2.10-2 arm64 data compression library
ii libmagic-mgc 1:5.44-3 arm64 File type determination library using "magic" numbers (compiled magic file)
ii libmagic1:arm64 1:5.44-3 arm64 Recognize the type of data in a file using "magic" numbers - library
ii libmatroska7:arm64 1.7.1-1 arm64 extensible open standard audio/video container format (shared library)
ii libmd0:arm64 1.0.4-2 arm64 message digest functions from BSD systems - shared library
ii libmnl0:arm64 1.0.4-3 arm64 minimalistic Netlink communication library
ii libmount1:arm64 2.38.1-5+deb12u3 arm64 device mounting library
ii libmpc3:arm64 1.3.1-1 arm64 multiple precision complex floating-point library
ii libmpfr6:arm64 4.2.0-1 arm64 multiple precision floating-point computation
ii libmtp-common 1.1.20-1 all Media Transfer Protocol (MTP) common files
ii libmtp-runtime 1.1.20-1 arm64 Media Transfer Protocol (MTP) runtime tools
ii libmtp9:arm64 1.1.20-1 arm64 Media Transfer Protocol (MTP) library
ii libncurses6:arm64 6.4-4 arm64 shared libraries for terminal handling
ii libncursesw6:arm64 6.4-4 arm64 shared libraries for terminal handling (wide character support)
ii libnetfilter-acct1:arm64 1.0.3-3 arm64 Netfilter acct library
ii libnetfilter-conntrack3:arm64 1.0.9-3 arm64 Netfilter netlink-conntrack library
ii libnetplan0:arm64 0.106-2+deb12u1 arm64 YAML network configuration abstraction runtime library
ii libnettle8:arm64 3.8.1-2 arm64 low level cryptographic library (symmetric and one-way cryptos)
ii libnewt0.52:arm64 0.52.23-1+b1 arm64 Not Erik's Windowing Toolkit - text mode windowing with slang
ii libnfnetlink0:arm64 1.0.2-2 arm64 Netfilter netlink library
ii libnfsidmap1:arm64 1:2.6.2-4+deb12u1 arm64 NFS idmapping library
ii libnftables1:arm64 1.0.6-2+deb12u2 arm64 Netfilter nftables high level userspace API library
ii libnftnl11:arm64 1.2.4-2 arm64 Netfilter nftables userspace API library
ii libnghttp2-14:arm64 1.52.0-1+deb12u2 arm64 library implementing HTTP/2 protocol (shared library)
ii libnl-3-200:arm64 3.7.0-0.2+b1 arm64 library for dealing with netlink sockets
ii libnl-genl-3-200:arm64 3.7.0-0.2+b1 arm64 library for dealing with netlink sockets - generic netlink
ii libnl-route-3-200:arm64 3.7.0-0.2+b1 arm64 library for dealing with netlink sockets - route interface
ii libnorm1:arm64 1.5.9+dfsg-2 arm64 NACK-Oriented Reliable Multicast (NORM) library
ii libnpth0:arm64 1.6-3 arm64 replacement for GNU Pth using system threads
ii libnsl-dev:arm64 1.3.0-2 arm64 libnsl development files
ii libnsl2:arm64 1.3.0-2 arm64 Public client interface for NIS(YP) and NIS+
ii libnss-mdns:arm64 0.15.1-3 arm64 NSS module for Multicast DNS name resolution
ii libnss-myhostname:arm64 252.38-1~deb12u1 arm64 nss module providing fallback resolution for the current hostname
ii libnss-resolve:arm64 252.38-1~deb12u1 arm64 nss module to resolve names via systemd-resolved
ii libnss-systemd:arm64 252.38-1~deb12u1 arm64 nss module providing dynamic user and group name resolution
ii libntfs-3g89:arm64 1:2022.10.3-1+deb12u2 arm64 read/write NTFS driver for FUSE (runtime library)
ii libnuma1:arm64 2.0.18-1~rpt1 arm64 Libraries for controlling NUMA policy
ii libogg0:arm64 1.3.5-3 arm64 Ogg bitstream library
ii libonig5:arm64 6.9.8-1 arm64 regular expressions library
ii libossp-uuid16:arm64 1.6.2-1.5+b11 arm64 OSSP uuid ISO-C and C++ - shared library
ii libp11-kit0:arm64 0.24.1-2 arm64 library for loading and coordinating access to PKCS#11 modules - runtime
ii libpam-chksshpwd:arm64 1.5.2-6+rpt2+deb12u1 arm64 PAM module to enable SSH password checking support
ii libpam-modules:arm64 1.5.2-6+rpt2+deb12u1 arm64 Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.5.2-6+rpt2+deb12u1 arm64 Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.5.2-6+rpt2+deb12u1 all Runtime support for the PAM library
ii libpam-systemd:arm64 252.38-1~deb12u1 arm64 system and service manager - PAM module
ii libpam0g:arm64 1.5.2-6+rpt2+deb12u1 arm64 Pluggable Authentication Modules library
ii libpango-1.0-0:arm64 1.50.12+ds-1 arm64 Layout and rendering of internationalized text
ii libpangocairo-1.0-0:arm64 1.50.12+ds-1 arm64 Layout and rendering of internationalized text
ii libpangoft2-1.0-0:arm64 1.50.12+ds-1 arm64 Layout and rendering of internationalized text
rc libparted-fs-resize0:arm64 3.5-3 arm64 disk partition manipulator - shared FS resizing library
ii libparted2:arm64 3.5-3 arm64 disk partition manipulator - shared library
ii libpcap0.8:arm64 1.10.3-1 arm64 system interface for user-level packet capture
ii libpci3:arm64 1:3.9.0-4 arm64 PCI utilities (shared library)
ii libpcre2-16-0:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library - 16 bit runtime files
ii libpcre2-8-0:arm64 10.42-1 arm64 New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre3:arm64 2:8.39-15 arm64 Old Perl 5 Compatible Regular Expression Library - runtime files
ii libpcsclite1:arm64 1.9.9-2 arm64 Middleware to access a smart card using PC/SC (library)
ii libperl5.36:arm64 5.36.0-7+deb12u2 arm64 shared Perl library
ii libpgm-5.3-0:arm64 5.3.128~dfsg-2 arm64 OpenPGM shared library
ii libpigpio-dev 1.79-1+rpt1 arm64 Client tools for Raspberry Pi GPIO control
ii libpigpio1 1.79-1+rpt1 arm64 Library for Raspberry Pi GPIO control
ii libpigpiod-if-dev 1.79-1+rpt1 arm64 Development headers for client libraries for Raspberry Pi GPIO control
ii libpigpiod-if1 1.79-1+rpt1 arm64 Client library for Raspberry Pi GPIO control (deprecated)
ii libpigpiod-if2-1 1.79-1+rpt1 arm64 Client library for Raspberry Pi GPIO control
ii libpipeline1:arm64 1.5.7-1 arm64 Unix process pipeline manipulation library
ii libpisp-common 1.2.1-1 all Helper library for the PiSP hardware block (data files)
ii libpisp1:arm64 1.2.1-1 arm64 Helper library for the PiSP hardware block (runtime)
ii libpixman-1-0:arm64 0.44.0-3+rpt1 arm64 pixel-manipulation library for X and cairo
ii libpkgconf3:arm64 1.8.1-1 arm64 shared library for pkgconf
ii libpng16-16:arm64 1.6.39-2 arm64 PNG library - runtime (version 1.6)
ii libpolkit-agent-1-0:arm64 122-3 arm64 polkit Authentication Agent API
ii libpolkit-gobject-1-0:arm64 122-3 arm64 polkit Authorization API
ii libpopt0:arm64 1.19+dfsg-1 arm64 lib for parsing cmdline parameters
ii libproc2-0:arm64 2:4.0.2-3 arm64 library for accessing process information from /proc
ii libpsl5:arm64 0.21.2-1 arm64 Library for Public Suffix List (shared libraries)
ii libpugixml1v5:arm64 1.13-0.2 arm64 Light-weight C++ XML processing library
ii libpython3-stdlib:arm64 3.11.2-1+b1 arm64 interactive high-level object-oriented language (default python3 version)
ii libpython3.11:arm64 3.11.2-6+deb12u6 arm64 Shared Python runtime library (version 3.11)
ii libpython3.11-minimal:arm64 3.11.2-6+deb12u6 arm64 Minimal subset of the Python language (version 3.11)
ii libpython3.11-stdlib:arm64 3.11.2-6+deb12u6 arm64 Interactive high-level object-oriented language (standard library, version 3.11)
ii libqt5core5a:arm64 5.15.8+dfsg-11+deb12u3 arm64 Qt 5 core module
ii librav1e0:arm64 0.5.1-6 arm64 Fastest and safest AV1 encoder - shared library
ii libreadline8:arm64 8.2-1.3 arm64 GNU readline and history libraries, run-time libraries
ii librrd8:arm64 1.7.2-4+b8 arm64 time-series data storage and display system (runtime library)
ii librtmp1:arm64 2.4+20151223.gitfa8646d.1-2+b2 arm64 toolkit for RTMP streams (shared library)
ii libsamplerate0:arm64 0.2.2-3 arm64 Audio sample rate conversion library
ii libsasl2-2:arm64 2.1.28+dfsg-10 arm64 Cyrus SASL - authentication abstraction library
ii libsasl2-modules:arm64 2.1.28+dfsg-10 arm64 Cyrus SASL - pluggable authentication modules
ii libsasl2-modules-db:arm64 2.1.28+dfsg-10 arm64 Cyrus SASL - pluggable authentication modules (DB)
ii libseccomp2:arm64 2.5.4-1+deb12u1 arm64 high level interface to Linux seccomp filter
ii libselinux1:arm64 3.4-1+b6 arm64 SELinux runtime shared libraries
ii libsemanage-common 3.4-1 all Common files for SELinux policy management libraries
ii libsemanage2:arm64 3.4-1+b5 arm64 SELinux policy management library
ii libsepol2:arm64 3.4-2.1 arm64 SELinux library for manipulating binary security policies
ii libsigsegv2:arm64 2.14-1 arm64 Library for handling page faults in a portable way
ii libslang2:arm64 2.3.3-3 arm64 S-Lang programming library - runtime version
ii libsmartcols1:arm64 2.38.1-5+deb12u3 arm64 smart column output alignment library
ii libsodium23:arm64 1.0.18-1 arm64 Network communication, cryptography and signaturing library
ii libsource-highlight-common 3.1.9-4.2 all architecture-independent files for source highlighting library
ii libsource-highlight4v5:arm64 3.1.9-4.2+b3 arm64 source highlighting library
ii libsqlite3-0:arm64 3.40.1-2+deb12u1 arm64 SQLite 3 shared library
ii libss2:arm64 1.47.0-2 arm64 command-line interface parsing library
ii libssh2-1:arm64 1.10.0-3+b1 arm64 SSH2 client-side library
ii libssl3:arm64 3.0.16-1~deb12u1+rpt1 arm64 Secure Sockets Layer toolkit - shared libraries
ii libstdc++-12-dev:arm64 12.2.0-14+deb12u1 arm64 GNU Standard C++ Library v3 (development files)
ii libstdc++6:arm64 12.2.0-14+deb12u1 arm64 GNU Standard C++ Library v3
ii libsvtav1enc1:arm64 1.4.1+dfsg-1 arm64 Scalable Video Technology for AV1 (libsvtav1enc shared library)
ii libsystemd-shared:arm64 252.38-1~deb12u1 arm64 systemd shared private library
ii libsystemd0:arm64 252.38-1~deb12u1 arm64 systemd utility library
ii libtalloc2:arm64 2.4.0-f2 arm64 hierarchical pool based memory allocator
ii libtasn1-6:arm64 4.19.0-2+deb12u1 arm64 Manage ASN.1 structures (runtime)
ii libtdb1:arm64 1.4.8-2 arm64 Trivial Database - shared library
ii libtevent0:arm64 0.14.1-1 arm64 talloc-based event loop library - shared library
ii libtext-charwidth-perl:arm64 0.04-11 arm64 get display widths of characters on the terminal
ii libtext-iconv-perl:arm64 1.7-8 arm64 module to convert between character sets in Perl
ii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap
ii libthai-data 0.1.29-1 all Data files for Thai language support library
ii libthai0:arm64 0.1.29-1 arm64 Thai language support library
ii libtiff6:arm64 4.5.0-6+deb12u2 arm64 Tag Image File Format (TIFF) library
ii libtinfo6:arm64 6.4-4 arm64 shared low-level terminfo library for terminal handling
ii libtirpc-common 1.3.3+ds-1 all transport-independent RPC library - common files
ii libtirpc-dev:arm64 1.3.3+ds-1 arm64 transport-independent RPC library - development files
ii libtirpc3:arm64 1.3.3+ds-1 arm64 transport-independent RPC library
ii libtsan2:arm64 12.2.0-14+deb12u1 arm64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii libubsan1:arm64 12.2.0-14+deb12u1 arm64 UBSan -- undefined behaviour sanitizer (runtime)
ii libuchardet0:arm64 0.0.7-1 arm64 universal charset detection library - shared library
ii libudev1:arm64 252.38-1~deb12u1 arm64 libudev shared library
ii libunistring2:arm64 1.0-2 arm64 Unicode string library for C
ii libunwind8:arm64 1.6.2-3 arm64 library to determine the call-chain of a program - runtime
ii liburcu8:arm64 0.13.2-1 arm64 userspace RCU (read-copy-update) library
ii liburing2:arm64 2.3-3 arm64 Linux kernel io_uring access library - shared library
ii libusb-1.0-0:arm64 2:1.0.26-1 arm64 userspace USB programming library
ii libuuid1:arm64 2.38.1-5+deb12u3 arm64 Universally Unique ID library
ii libuv1:arm64 1.44.2-1+deb12u1 arm64 asynchronous event notification library - runtime library
ii libv4l-0:arm64 1.22.1-5+b2 arm64 Collection of video4linux support libraries
ii libv4l2rds0:arm64 1.22.1-5+b2 arm64 Video4Linux Radio Data System (RDS) decoding library
ii libv4lconvert0:arm64 1.22.1-5+b2 arm64 Video4linux frame format conversion library
ii libvorbis0a:arm64 1.3.7-1 arm64 decoder library for Vorbis General Audio Compression Codec
ii libwbclient0:arm64 2:4.17.12+dfsg-0+deb12u1 arm64 Samba winbind client library
ii libwebp7:arm64 1.2.4-0.2+deb12u1 arm64 Lossy compression of digital photographic images
ii libwrap0:arm64 7.6.q-32 arm64 Wietse Venema's TCP wrappers library
ii libx11-6:arm64 2:1.8.4-2+deb12u2 arm64 X11 client-side library
ii libx11-data 2:1.8.4-2+deb12u2 all X11 client-side library
ii libx265-199:arm64 3.5-2+b1 arm64 H.265/HEVC video stream encoder (shared library)
ii libxau6:arm64 1:1.0.9-1 arm64 X11 authorisation library
ii libxcb-render0:arm64 1.15-1 arm64 X C Binding, render extension
ii libxcb-shm0:arm64 1.15-1 arm64 X C Binding, shm extension
ii libxcb1:arm64 1.15-1 arm64 X C Binding
ii libxdmcp6:arm64 1:1.1.2-3 arm64 X11 Display Manager Control Protocol library
ii libxext6:arm64 2:1.3.4-1+b1 arm64 X11 miscellaneous extension library
ii libxml2:arm64 2.9.14+dfsg-1.3~deb12u2 arm64 GNOME XML library
ii libxmuu1:arm64 2:1.1.3-3 arm64 X11 miscellaneous micro-utility library
ii libxpm4:arm64 1:3.5.12-1.1+deb12u1 arm64 X11 pixmap library
ii libxrender1:arm64 1:0.9.10-1.1 arm64 X Rendering Extension client library
ii libxslt1.1:arm64 1.1.35-1+deb12u2 arm64 XSLT 1.0 processing library - runtime library
ii libxtables12:arm64 1.8.9-2 arm64 netfilter xtables library
ii libxxhash0:arm64 0.8.1-1 arm64 shared library for xxhash
ii libyaml-0-2:arm64 0.2.5-1 arm64 Fast YAML 1.1 parser and emitter library
ii libyuv0:arm64 0.0~git20230123.b2528b0-1 arm64 Library for YUV scaling (shared library)
ii libzmq5:arm64 4.3.4-6 arm64 lightweight messaging kernel (shared library)
ii libzstd1:arm64 1.5.4+dfsg2-5 arm64 fast lossless compression algorithm
ii linux-base 4.12~bpo12+1 all Linux image base package
ii linux-headers-6.12.25+rpt-common-rpi 1:6.12.25-1+rpt1 all Common header files for Linux 6.12.25+rpt-rpi
ii linux-headers-6.12.25+rpt-rpi-2712 1:6.12.25-1+rpt1 arm64 Header files for Linux 6.12.25+rpt-rpi-2712
ii linux-headers-6.12.25+rpt-rpi-v8 1:6.12.25-1+rpt1 arm64 Header files for Linux 6.12.25+rpt-rpi-v8
ii linux-headers-6.12.34+rpt-common-rpi 1:6.12.34-1+rpt1~bookworm all Common header files for Linux 6.12.34+rpt-rpi
ii linux-headers-6.12.34+rpt-rpi-2712 1:6.12.34-1+rpt1~bookworm arm64 Header files for Linux 6.12.34+rpt-rpi-2712
ii linux-headers-6.12.34+rpt-rpi-v8 1:6.12.34-1+rpt1~bookworm arm64 Header files for Linux 6.12.34+rpt-rpi-v8
ii linux-headers-rpi-2712 1:6.12.34-1+rpt1~bookworm arm64 Header files for Linux rpi-2712 configuration (meta-package)
ii linux-headers-rpi-v8 1:6.12.34-1+rpt1~bookworm arm64 Header files for Linux rpi-v8 configuration (meta-package)
ii linux-image-6.12.25+rpt-rpi-2712 1:6.12.25-1+rpt1 arm64 Linux 6.12 for Raspberry Pi 2712, Raspberry Pi
ii linux-image-6.12.25+rpt-rpi-v8 1:6.12.25-1+rpt1 arm64 Linux 6.12 for Raspberry Pi v8, Raspberry Pi
ii linux-image-6.12.34+rpt-rpi-2712 1:6.12.34-1+rpt1~bookworm arm64 Linux 6.12 for Raspberry Pi 2712, Raspberry Pi
ii linux-image-6.12.34+rpt-rpi-v8 1:6.12.34-1+rpt1~bookworm arm64 Linux 6.12 for Raspberry Pi v8, Raspberry Pi
ii linux-image-rpi-2712 1:6.12.34-1+rpt1~bookworm arm64 Linux for Raspberry Pi 2712 (meta-package)
ii linux-image-rpi-v8 1:6.12.34-1+rpt1~bookworm arm64 Linux for Raspberry Pi v8 (meta-package)
ii linux-kbuild-6.12.25+rpt 1:6.12.25-1+rpt1 arm64 Kbuild infrastructure for Linux 6.12.25+rpt
ii linux-kbuild-6.12.34+rpt 1:6.12.34-1+rpt1~bookworm arm64 Kbuild infrastructure for Linux 6.12.34+rpt
ii linux-libc-dev 1:6.12.34-1+rpt1~bookworm all Linux support headers for userspace development
ii locales 2.36-9+rpt2+deb12u12 all GNU C Library: National Language (locale) data [support]
ii login 1:4.13+dfsg1-1+deb12u1 arm64 system login tools
ii logrotate 3.21.0-1 arm64 Log rotation utility
ii logsave 1.47.0-2 arm64 save the output of a command in a log file
ii lsb-release 12.0-1 all Linux Standard Base version reporting utility (minimal implementation)
ii lsof 4.95.0-1 arm64 utility to list open files
ii lua-lpeg:arm64 1.0.2-2 arm64 LPeg library for the Lua language
ii lua5.1 5.1.5-9 arm64 Simple, extensible, embeddable programming language
ii luajit 2.1.0~beta3+git20220320+dfsg-4.1 arm64 Just in time compiler for Lua programming language version 5.1
ii lvm2 2.03.16-2 arm64 Linux Logical Volume Manager
ii make 4.3-4.1 arm64 utility for directing compilation
ii man-db 2.11.2-2 arm64 tools for reading manual pages
ii manpages 6.03-2 all Manual pages about using a GNU/Linux system
ii manpages-dev 6.03-2 all Manual pages about using GNU/Linux for development
ii mawk 1.3.4.20200120-3.1 arm64 Pattern scanning and text processing language
ii mdadm 4.2-5 arm64 Tool to administer Linux MD arrays (software RAID)
ii media-types 10.0.0 all List of standard media types and their usual file extension
ii mkvtoolnix 74.0.0-1 arm64 Set of command-line tools to work with Matroska files
ii monit 1:5.33.0-1 arm64 utility for monitoring and managing daemons or similar programs
ii mount 2.38.1-5+deb12u3 arm64 tools for mounting and manipulating filesystems
ii nano 7.2-1+deb12u1 arm64 small, friendly text editor inspired by Pico
ii ncal 12.1.8 arm64 display a calendar and the date of Easter
ii ncdu 1.18-0.2 arm64 ncurses disk usage viewer
ii ncurses-base 6.4-4 all basic terminal type definitions
ii ncurses-bin 6.4-4 arm64 terminal-related programs and man pages
ii ncurses-term 6.4-4 all additional terminal type definitions
ii net-tools 2.10-0.1+deb12u2 arm64 NET-3 networking toolkit
ii netbase 6.4 all Basic TCP/IP networking system
ii netdata 1.37.1-2 all real-time performance monitoring (metapackage)
ii netdata-core 1.37.1-2 arm64 real-time performance monitoring (core)
ii netdata-plugins-bash 1.37.1-2 all real-time performance monitoring (bash plugins)
ii netdata-web 1.37.1-2 all real-time performance monitoring (web)
ii netplan.io 0.106-2+deb12u1 arm64 YAML network configuration abstraction for various backends
ii nfs-common 1:2.6.2-4+deb12u1 arm64 NFS support files common to client and server
ii nfs-kernel-server 1:2.6.2-4+deb12u1 arm64 support for NFS kernel server
ii nftables 1.0.6-2+deb12u2 arm64 Program to control packet filtering rules by Netfilter project
ii nginx 1.22.1-9+deb12u2 arm64 small, powerful, scalable web/proxy server
ii nginx-common 1.22.1-9+deb12u2 all small, powerful, scalable web/proxy server - common files
ii nmap 7.93+dfsg1-1 arm64 The Network Mapper
ii nmap-common 7.93+dfsg1-1 all Architecture independent files for nmap
ii ntfs-3g 1:2022.10.3-1+deb12u2 arm64 read/write NTFS driver for FUSE
ii openmediavault 7.7.12-2 all openmediavault - The open network attached storage solution
ii openmediavault-backup 7.1.5 all backup plugin for OpenMediaVault.
ii openmediavault-borgbackup 7.0.16 all borgbackup plugin for OpenMediaVault.
ii openmediavault-flashmemory 7.0.1 all folder2ram plugin for openmediavault
ii openmediavault-keyring 1.0.2-2 all GnuPG archive keys of the openmediavault archive
ii openmediavault-md 7.0.5-1 all openmediavault Linux MD (Multiple Device) plugin
ii openmediavault-omvextrasorg 7.0.2 all OMV-Extras.org Package Repositories for OpenMediaVault
ii openmediavault-sharerootfs 7.0-1 all openmediavault share root filesystem plugin
ii openmediavault-snapraid 7.0.13 all snapraid plugin for OpenMediaVault.
ii openssh-client 1:9.2p1-2+deb12u6 arm64 secure shell (SSH) client, for secure access to remote machines
ii openssh-server 1:9.2p1-2+deb12u6 arm64 secure shell (SSH) server, for secure access from remote machines
ii openssh-sftp-server 1:9.2p1-2+deb12u6 arm64 secure shell (SSH) sftp server module, for SFTP access from remote machines
ii openssl 3.0.16-1~deb12u1+rpt1 arm64 Secure Sockets Layer toolkit - cryptographic utility
ii orb 1.2.0 arm64 Orb is the next big thing in connectivity measurement!
ii p7zip 16.02+dfsg-8 arm64 7zr file archiver with high compression ratio
ii p7zip-full 16.02+dfsg-8 arm64 7z and 7za file archivers with high compression ratio
ii parted 3.5-3 arm64 disk partition manipulator
ii passwd 1:4.13+dfsg1-1+deb12u1 arm64 change and administer password and group data
ii pastebinit 1.6.2-1+rpt2 all command-line pastebin client
ii patch 2.7.6-7 arm64 Apply a diff file to an original
ii pci.ids 0.0~2023.04.11-1 all PCI ID Repository
ii pciutils 1:3.9.0-4 arm64 PCI utilities
ii perl 5.36.0-7+deb12u2 arm64 Larry Wall's Practical Extraction and Report Language
ii perl-base 5.36.0-7+deb12u2 arm64 minimal Perl system
ii perl-modules-5.36 5.36.0-7+deb12u2 all Core Perl modules
ii php-bcmath 2:8.2+93 all Bcmath module for PHP [default]
ii php-cgi 2:8.2+93 all server-side, HTML-embedded scripting language (CGI binary) (default)
ii php-common 2:93 all Common files for PHP packages
ii php-fpm 2:8.2+93 all server-side, HTML-embedded scripting language (FPM-CGI binary) (default)
ii php-mbstring 2:8.2+93 all MBSTRING module for PHP [default]
ii php-pam 2.2.4-1+deb12u1 arm64 pam module for PHP 8.2
ii php-xml 2:8.2+93 all DOM, SimpleXML, WDDX, XML, and XSL module for PHP [default]
ii php-yaml 2.2.2+2.1.0+2.0.4+1.3.2-6 arm64 YAML-1.1 parser and emitter for PHP
ii php8.2-bcmath 8.2.29-1~deb12u1 arm64 Bcmath module for PHP
ii php8.2-cgi 8.2.29-1~deb12u1 arm64 server-side, HTML-embedded scripting language (CGI binary)
ii php8.2-cli 8.2.29-1~deb12u1 arm64 command-line interpreter for the PHP scripting language
ii php8.2-common 8.2.29-1~deb12u1 arm64 documentation, examples and common module for PHP
ii php8.2-fpm 8.2.29-1~deb12u1 arm64 server-side, HTML-embedded scripting language (FPM-CGI binary)
ii php8.2-mbstring 8.2.29-1~deb12u1 arm64 MBSTRING module for PHP
ii php8.2-opcache 8.2.29-1~deb12u1 arm64 Zend OpCache module for PHP
ii php8.2-readline 8.2.29-1~deb12u1 arm64 readline module for PHP
ii php8.2-xml 8.2.29-1~deb12u1 arm64 DOM, SimpleXML, XML, and XSL module for PHP
ii php8.2-yaml 2.2.2+2.1.0+2.0.4+1.3.2-6 arm64 YAML-1.1 parser and emitter for PHP
ii pi-bluetooth 0.1.20 all Raspberry Pi 3 bluetooth
ii pigpio 1.79-1+rpt1 arm64 Raspberry Pi GPIO control transitional package.
ii pigpio-tools 1.79-1+rpt1 arm64 Client tools for Raspberry Pi GPIO control
ii pigpiod 1.79-1+rpt1 arm64 Client tools for Raspberry Pi GPIO control
ii pinentry-curses 1.2.1-1 arm64 curses-based PIN or pass-phrase entry dialog for GnuPG
ii pkexec 122-3 arm64 run commands as another user with polkit authorization
ii pkg-config:arm64 1.8.1-1 arm64 manage compile and link flags for libraries (transitional package)
ii pkgconf:arm64 1.8.1-1 arm64 manage compile and link flags for libraries
ii pkgconf-bin 1.8.1-1 arm64 manage compile and link flags for libraries (binaries)
ii policykit-1 122-3 arm64 transitional package for polkitd and pkexec
ii polkitd 122-3 arm64 framework for managing administrative policies and privileges
ii polkitd-pkla 122-3 arm64 Legacy "local authority" (.pkla) backend for polkitd
ii postfix 3.7.11-0+deb12u1 arm64 High-performance mail transport agent
ii procps 2:4.0.2-3 arm64 /proc file system utilities
ii psmisc 23.6-1 arm64 utilities that use the proc file system
ii publicsuffix 20230209.2326-1 all accurate, machine-readable list of domain name suffixes
ii python-apt-common 2.6.0 all Python interface to libapt-pkg (locales)
ii python-is-python3 3.11.2-1+deb12u1 all symlinks /usr/bin/python to python3
ii python3 3.11.2-1+b1 arm64 interactive high-level object-oriented language (default python3 version)
ii python3-apt 2.6.0 arm64 Python 3 interface to libapt-pkg
ii python3-cached-property 1.5.2-1 all Provides cached-property for decorating methods in classes (Python 3)
ii python3-certifi 2022.9.24-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)
ii python3-cffi-backend:arm64 1.15.1-5+b1 arm64 Foreign Function Interface for Python 3 calling C code - runtime
ii python3-chardet 5.1.0+dfsg-2 all Universal Character Encoding Detector (Python3)
ii python3-charset-normalizer 3.0.1-2 all charset, encoding and language detection (Python 3)
ii python3-click 8.1.3-2 all Wrapper around optparse for command line utilities - Python 3.x
ii python3-colorama 0.4.6-2 all Cross-platform colored terminal text in Python - Python 3.x
ii python3-colorzero 2.0-2 all Construct, convert, and manipulate colors in a Pythonic manner.
ii python3-dateutil 2.8.2-2 all powerful extensions to the standard Python 3 datetime module
ii python3-dbus 1.3.2-4+b1 arm64 simple interprocess messaging system (Python 3 interface)
ii python3-debconf 1.5.82 all interact with debconf from Python 3
ii python3-dialog 3.5.1-3 all Python module for making simple terminal-based user interfaces
ii python3-distro 1.8.0-1 all Linux OS platform information API
ii python3-distro-info 1.5+deb12u1 all information about distributions' releases (Python 3 module)
ii python3-distutils 3.11.2-3 all distutils package for Python 3.x
ii python3-dnspython 2.3.0-1 all DNS toolkit for Python 3
ii python3-gnupg 0.4.9-1 all Python wrapper for the GNU Privacy Guard (Python 3.x)
ii python3-gpiozero 2.0.1-0+rpt1 all Simple API for controlling devices attached to a Pi's GPIO pins
ii python3-idna 3.3-1+deb12u1 all Python IDNA2008 (RFC 5891) handling (Python 3)
ii python3-jinja2 3.1.2-1+deb12u2 all small but fast and easy to use stand-alone template engine
ii python3-jmespath 1.0.1-1 all JSON Matching Expressions (Python 3)
ii python3-ldb 2:2.6.2+samba4.17.12+dfsg-0+deb12u1 arm64 Python 3 bindings for LDB
ii python3-lgpio 0.2.2-1~rpt1 arm64 Control GPIO pins via gpiochip devices - python3 bindings
ii python3-lib2to3 3.11.2-3 all Interactive high-level object-oriented language (lib2to3)
ii python3-libgpiod:arm64 1.6.3-1+b3 arm64 Python bindings for libgpiod (Python 3)
ii python3-llfuse:arm64 1.4.1+dfsg-2+b3 arm64 Python 3 bindings for the low-level FUSE API
ii python3-looseversion 1.0.2-2 all A backwards/forwards-compatible fork of distutils.version.LooseVersion (Python 3)
ii python3-lxml:arm64 4.9.2-1+b1 arm64 pythonic binding for the libxml2 and libxslt libraries
ii python3-markdown-it 2.1.0-5 all Python port of markdown-it and some its associated plugins
ii python3-markupsafe 2.1.2-1+b1 arm64 HTML/XHTML/XML string library
ii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package
ii python3-minimal 3.11.2-1+b1 arm64 minimal subset of the Python language (default python3 version)
ii python3-msgpack 1.0.3-2+b1 arm64 Python 3 implementation of MessagePack format
ii python3-natsort 8.0.2-2 all Natural sorting for Python (Python3)
ii python3-netifaces:arm64 0.11.0-2+b1 arm64 portable network interface information - Python 3.x
ii python3-packaging 23.0-1 all core utilities for python3 packages
ii python3-pigpio 1.79-1+rpt1 all Python module which talks to the pigpio daemon (Python 3)
ii python3-pip-whl 23.0.1+dfsg-1+rpt1 all Python package installer (pip wheel)
ii python3-pkg-resources 66.1.1-1+deb12u1 all Package Discovery and Resource Access using pkg_resources
ii python3-polib 1.1.1-1 all Python 3 library to parse and manage gettext catalogs
ii python3-psutil 5.9.4-1+b1 arm64 module providing convenience functions for managing processes (Python3)
ii python3-py 1.11.0-1 all Advanced Python development support library (Python 3)
ii python3-pycryptodome 3.11.0+dfsg1-4 arm64 cryptographic Python library (Python 3)
ii python3-pygments 2.14.0+dfsg-1 all syntax highlighting package written in Python 3
ii python3-pyudev 0.24.0-1 all Python3 bindings for libudev
ii python3-requests 2.28.1+dfsg-1 all elegant and simple HTTP library for Python3, built for human beings
ii python3-rich 13.3.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more
ii python3-rpi-lgpio 0.6-0~rpt1 all Compatibility shim for lgpio emulating the RPi.GPIO API
ii python3-ruamel.yaml 0.17.21-1 all roundtrip YAML parser/emitter (Python 3 module)
ii python3-ruamel.yaml.clib:arm64 0.2.7-1+b2 arm64 C version of reader, parser and emitter for ruamel.yaml
ii python3-samba 2:4.17.12+dfsg-0+deb12u1 arm64 Python 3 bindings for Samba
ii python3-setuptools-whl 66.1.1-1+deb12u1 all Python Distutils Enhancements (wheel package)
ii python3-six 1.16.0-4 all Python 2 and 3 compatibility library
ii python3-smbus2 0.4.2-1 arm64 another pure Python implementation of the python-smbus package
ii python3-spidev 20200602~200721-1+bookworm arm64 Bindings for Linux SPI access through spidev (Python 3)
ii python3-systemd 235-1+b2 arm64 Python 3 bindings for systemd
ii python3-talloc:arm64 2.4.0-f2 arm64 hierarchical pool based memory allocator - Python3 bindings
ii python3-tdb 1.4.8-2 arm64 Python3 bindings for TDB
ii python3-toml 0.10.2-1 all library for Tom's Obvious, Minimal Language - Python 3.x
ii python3-urllib3 1.26.12-1+deb12u1 all HTTP library with thread-safe connection pooling for Python3
ii python3-venv 3.11.2-1+b1 arm64 venv module for python3 (default python3 version)
ii python3-xmltodict 0.13.0-1 all Makes working with XML feel like you are working with JSON (Python 3)
ii python3-yaml 6.0-3+b2 arm64 YAML parser and emitter for Python3
ii python3-zmq 24.0.1-4+b1 arm64 Python3 bindings for 0MQ library
ii python3.11 3.11.2-6+deb12u6 arm64 Interactive high-level object-oriented language (version 3.11)
ii python3.11-minimal 3.11.2-6+deb12u6 arm64 Minimal subset of the Python language (version 3.11)
ii python3.11-venv 3.11.2-6+deb12u6 arm64 Interactive high-level object-oriented language (pyvenv binary, version 3.11)
ii quota 4.06-1+b2 arm64 disk quota management tools
ii quotatool 1:1.6.2-6 arm64 non-interactive command line tool to edit disk quotas
ii raspberrypi-archive-keyring 2021.1.1+rpt1 all GnuPG archive keys of the Raspberry Pi OS archive
ii raspberrypi-sys-mods 20250605~bookworm arm64 System tweaks for the Raspberry Pi
ii raspi-config 20250707 all Raspberry Pi configuration tool
ii raspi-firmware 1:1.20250430-4~bookworm all Raspberry Pi family GPU firmware and bootloaders
ii raspi-gpio 0.20231127 arm64 Dump the state of the BCM270x GPIOs
ii raspi-utils 20250514-1~bookworm all Collection of scripts and simple applications
ii raspi-utils-core 20250514-1~bookworm arm64 Collection of scripts and simple applications
ii raspi-utils-dt 20250514-1~bookworm arm64 Device Tree overlay utilities
ii raspi-utils-eeprom 20250514-1~bookworm arm64 Tools for creating and managing EEPROMs for HAT+ and HAT board
ii raspi-utils-otp 20250514-1~bookworm all Tools for reading and setting Raspberry Pi OTP bits
ii raspinfo 20250514-1~bookworm all Prints information about the Raspberry Pi for bug reports
ii readline-common 8.2-1.3 all GNU readline and history libraries, common files
ii rfkill 2.38.1-5+deb12u3 arm64 tool for enabling and disabling wireless devices
ii rpcbind 1.2.6-6+b1 arm64 converts RPC program numbers into universal addresses
ii rpcsvc-proto 1.4.3-1 arm64 RPC protocol compiler and definitions
ii rpi-eeprom 28.2-1 all Raspberry Pi 4/5 boot EEPROM updater
ii rpi-update 20230904 all Raspberry Pi firmware updating tool
ii rpicam-apps-lite 1.7.0-1 arm64 rpicam-apps-lite
ii rrdcached 1.7.2-4+b8 arm64 data caching daemon for RRDtool
ii rrdtool 1.7.2-4+b8 arm64 time-series data storage and display system (programs)
ii rsync 3.2.7-1+deb12u2 arm64 fast, versatile, remote (and local) file-copying tool
ii rsyslog 8.2302.0-1+deb12u1 arm64 reliable system and kernel logging daemon
ii runit-helper 2.15.2 all dh-runit implementation detail
ii salt-common 3006.0+ds-1+240.1 all shared libraries that salt requires for all packages
ii salt-minion 3006.0+ds-1+240.1 all client package for salt, the distributed remote execution system
ii samba 2:4.17.12+dfsg-0+deb12u1 arm64 SMB/CIFS file, print, and login server for Unix
ii samba-common 2:4.17.12+dfsg-0+deb12u1 all common files used by both the Samba server and client
ii samba-common-bin 2:4.17.12+dfsg-0+deb12u1 arm64 Samba common files used by both the server and the client
ii samba-libs:arm64 2:4.17.12+dfsg-0+deb12u1 arm64 Samba core libraries
ii samba-vfs-modules:arm64 2:4.17.12+dfsg-0+deb12u1 arm64 Samba Virtual FileSystem plugins
ii sdparm 1.12-1 arm64 Output and modify SCSI device parameters
ii sed 4.9-1 arm64 GNU stream editor for filtering/transforming text
ii sensible-utils 0.0.17+nmu1 all Utilities for sensible alternative selection
ii sgml-base 1.31 all SGML infrastructure and SGML catalog file support
ii shared-mime-info 2.2-1 arm64 FreeDesktop.org shared MIME database and spec
ii smartmontools 7.3-1+b1 arm64 control and monitor storage systems using S.M.A.R.T.
ii snapraid 12.3-1 arm64 backup program for disk arrays
ii ssh 1:9.2p1-2+deb12u6 all secure shell client and server (metapackage)
ii ssh-import-id 5.10-1 all securely retrieve an SSH public key and install it locally
ii sshpass 1.09-1 arm64 Non-interactive ssh password authentication
ii ssl-cert 1.1.2 all simple debconf wrapper for OpenSSL
ii strace 6.1-0.1 arm64 System call tracer
ii sudo 1.9.13p3-1+deb12u2 arm64 Provide limited super user privileges to specific users
ii systemd 252.38-1~deb12u1 arm64 system and service manager
ii systemd-resolved 252.38-1~deb12u1 arm64 systemd DNS resolver
ii systemd-sysv 252.38-1~deb12u1 arm64 system and service manager - SysV compatibility symlinks
rc systemd-timesyncd 252.38-1~deb12u1 arm64 minimalistic service to synchronize local time with NTP servers
ii sysvinit-utils 3.06-4 arm64 System-V-like utilities
ii tar 1.34+dfsg-1.2+deb12u1 arm64 GNU version of the tar archiving utility
ii tasksel 3.73 all tool for selecting tasks for installation on Debian systems
ii tasksel-data 3.73 all official tasks used for installation of Debian systems
ii tdb-tools 1.4.8-2 arm64 Trivial Database - bundled binaries
ii tree 2.1.0-1 arm64 displays an indented directory tree, in color
ii triggerhappy 0.5.0-1.1+b2 arm64 global hotkey daemon for Linux
ii tzdata 2025b-0+deb12u1 all time zone and daylight-saving time data
ii ucf 3.0043+nmu1+deb12u1 all Update Configuration File(s): preserve user changes to config files
ii udev 252.38-1~deb12u1 arm64 /dev/ and hotplug management daemon
ii unattended-upgrades 2.9.1+nmu3 all automatic installation of security upgrades
ii unzip 6.0-28 arm64 De-archiver for .zip files
ii usb-modeswitch 2.6.1-3+b1 arm64 mode switching tool for controlling "flip flop" USB devices
ii usb-modeswitch-data 20191128-5 all mode switching data for usb-modeswitch
ii usbutils 1:014-1+deb12u1 arm64 Linux USB utilities
ii userconf-pi 0.11 all Raspberry Pi tool to rename a user
ii usr-is-merged 37~deb12u1 all Transitional package to assert a merged-/usr system
ii util-linux 2.38.1-5+deb12u3 arm64 miscellaneous system utilities
ii util-linux-extra 2.38.1-5+deb12u3 arm64 interactive login tools
ii uuid 1.6.2-1.5+b11 arm64 Universally Unique Identifier Command-Line Tool
ii v4l-utils 1.22.1-5+b2 arm64 Collection of command line video4linux utilities
ii vim-common 2:9.0.1378-2+deb12u2 all Vi IMproved - Common files
ii vim-tiny 2:9.0.1378-2+deb12u2 arm64 Vi IMproved - enhanced vi editor - compact version
ii wget 1.21.3-1+deb12u1 arm64 retrieves files from the web
ii whiptail 0.52.23-1+b1 arm64 Displays user-friendly dialog boxes from shell scripts
ii wireless-regdb 2025.02.20-1~deb12u1 all wireless regulatory database for Linux
ii wireless-tools 30~pre9-14 arm64 Tools for manipulating Linux Wireless Extensions
ii wpasupplicant 2:2.10-12+deb12u2 arm64 client support for WPA and WPA2 (IEEE 802.11i)
ii wsdd 2:0.7.0-2.1 all Python Web Services Discovery Daemon, Windows Net Browsing
ii xauth 1:1.1.2-1 arm64 X authentication utility
ii xdg-user-dirs 0.18-1 arm64 tool to manage well known user directories
ii xfsprogs 6.1.0-1 arm64 Utilities for managing the XFS filesystem
ii xkb-data 2.35.1-1 all X Keyboard Extension (XKB) configuration data
ii xml-core 0.18+nmu1 all XML infrastructure and XML catalog file support
ii xmlstarlet 1.6.1-3 arm64 command line XML toolkit
ii xz-utils 5.4.1-1 arm64 XZ-format compression utilities
ii zip 3.0-13 arm64 Archiver for .zip files
ii zlib1g:arm64 1:1.2.13.dfsg-1+rpt1 arm64 compression library - runtime
ii zstd 1.5.4+dfsg2-5 arm64 fast lossless compression algorithm -- CLI tool

View File

@@ -0,0 +1,31 @@
=== COMPREHENSIVE AUDIT SUMMARY ===
Generated: Fri Aug 22 10:33:13 PM EDT 2025
Script Version: 2.0
Hostname: surface
FQDN: surface
IP Addresses: 192.168.50.254 100.67.40.97 172.17.0.1 172.19.0.1 172.20.0.1 172.18.0.1 fd56:f1f9:1afc:8f71:b128:1450:b541:2a71 fd56:f1f9:1afc:8f71:e7d0:a11f:5d7d:7c1d fd7a:115c:a1e0::e334:2861
=== SYSTEM INFORMATION ===
OS: Ubuntu 24.04.3 LTS
Kernel: 6.15.1-surface-2
Architecture: x86_64
Uptime: up 5 hours, 22 minutes
=== SECURITY STATUS ===
SSH Root Login: unknown
UFW Status: inactive
Failed SSH Attempts: 4
=== CONTAINER STATUS ===
Docker: Installed
Podman: Not installed
Running Containers: 9
=== FILES GENERATED ===
total 444
drwxr-xr-x 2 root root 4096 Aug 22 22:33 .
drwxrwxrwt 25 root root 20480 Aug 22 22:32 ..
-rw-r--r-- 1 root root 82867 Aug 22 22:33 audit.log
-rw-r--r-- 1 root root 329988 Aug 22 22:32 packages_dpkg.txt
-rw-r--r-- 1 root root 1268 Aug 22 22:33 results.json
-rw-r--r-- 1 root root 658 Aug 22 22:33 SUMMARY.txt

View File

@@ -0,0 +1,61 @@
{
"scan_info": {
"timestamp": "2025-08-22T22:33:13-04:00",
"hostname": "surface",
"scanner_version": "2.0",
"scan_duration": "46s"
},
"system": {
"hostname": "surface",
"fqdn": "surface",
"ip_addresses": "192.168.50.254,100.67.40.97,172.17.0.1,172.19.0.1,172.20.0.1,172.18.0.1,fd56:f1f9:1afc:8f71:b128:1450:b541:2a71,fd56:f1f9:1afc:8f71:e7d0:a11f:5d7d:7c1d,fd7a:115c:a1e0::e334:2861,",
"os": "Ubuntu 24.04.3 LTS",
"kernel": "6.15.1-surface-2",
"architecture": "x86_64",
"uptime": "up 5 hours, 22 minutes"
},
"containers": {
"docker_installed": true,
"podman_installed": false,
"running_containers": 9
},
"security": {
"ssh_root_login": "unknown",
"ufw_status": "inactive",
"failed_ssh_attempts": 4,
"open_ports": [
"22",
"80",
"111",
"443",
"631",
"932",
"2019",
"3306",
"4789",
"5353",
"7946",
"8080",
"8090",
"8125",
"8443",
"8888",
"11434",
"19999",
"33184",
"34990",
"35213",
"36975",
"38383",
"45735",
"45885",
"48612",
"49045",
"51071",
"55205",
"55873",
"60218",
"60407"
]
}
}

View File

@@ -0,0 +1,31 @@
=== Application Configs ===
/etc/grub2-efi.cfg
/etc/grub2.cfg
/etc/opensc-x86_64.conf
/etc/resolv.conf
/etc/NetworkManager/NetworkManager.conf
/etc/PackageKit/CommandNotFound.conf
/etc/PackageKit/PackageKit.conf
/etc/PackageKit/Vendor.conf
/etc/UPower/UPower.conf
/etc/abrt/abrt-action-save-package-data.conf
/etc/abrt/abrt.conf
/etc/abrt/gpg_keys.conf
/etc/alsa/alsactl.conf
/etc/alsa/state-daemon.conf
/etc/anaconda/anaconda.conf
/etc/audit/auditd.conf
/etc/authselect/authselect.conf
/etc/authselect/nsswitch.conf
/etc/avahi/avahi-daemon.conf
/etc/bluetooth/network.conf
/etc/bluetooth/input.conf
/etc/bluetooth/main.conf
/etc/containers/registries.conf
/etc/containers/toolbox.conf
/etc/cups/classes.conf
/etc/cups/client.conf
/etc/cups/cups-browsed.conf
/etc/cups/cups-files.conf
/etc/cups/cupsd.conf
/etc/cups/snmp.conf

View File

@@ -0,0 +1,6 @@
Starting Data Discovery on fedora at Sat Aug 23 10:01:29 PM EDT 2025
Output: /tmp/data_discovery_fedora_20250823_220129
========================================
1. Database Locations
2. Docker Data Locations
3. Critical Configuration Files

View File

@@ -0,0 +1,19 @@
--- PostgreSQL ---
--- MySQL/MariaDB ---
--- SQLite ---
/var/lib/PackageKit/transactions.db
/var/lib/colord/mapping.db
/var/lib/colord/storage.db
/var/lib/dnf/history.sqlite
/var/lib/dnf/history.sqlite-shm
/var/lib/dnf/history.sqlite-wal
/var/lib/fwupd/pending.db
/var/lib/plocate/plocate.db
/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db
/var/lib/docker/volumes/metadata.db
/var/lib/docker/buildkit/containerdmeta.db
/var/lib/docker/buildkit/snapshots.db
/var/lib/docker/buildkit/metadata_v2.db
/var/lib/docker/buildkit/cache.db
/var/lib/docker/buildkit/history.db
/opt/android-studio/bin/brokenPlugins.db

View File

@@ -0,0 +1,5 @@
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 3 3 1.208GB 0B (0%)
Containers 3 1 2.733kB 0B (0%)
Local Volumes 18 3 1.533GB 1.119GB (73%)
Build Cache 69 0 4.745GB 4.745GB

View File

@@ -0,0 +1,301 @@
Docker volume details:
Volume: 0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f
[
{
"CreatedAt": "2025-07-24T11:48:58-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f/_data",
"Name": "0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f",
"Options": null,
"Scope": "local"
}
]
---
Volume: 2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3
[
{
"CreatedAt": "2025-07-24T11:24:45-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3/_data",
"Name": "2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3",
"Options": null,
"Scope": "local"
}
]
---
Volume: 51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1
[
{
"CreatedAt": "2025-07-26T21:57:49-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1/_data",
"Name": "51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1",
"Options": null,
"Scope": "local"
}
]
---
Volume: 203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc
[
{
"CreatedAt": "2025-07-24T11:48:53-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc/_data",
"Name": "203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc",
"Options": null,
"Scope": "local"
}
]
---
Volume: 675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0
[
{
"CreatedAt": "2025-06-01T19:46:10-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0/_data",
"Name": "675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0",
"Options": null,
"Scope": "local"
}
]
---
Volume: be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2
[
{
"CreatedAt": "2025-07-26T21:57:49-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2/_data",
"Name": "be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2",
"Options": null,
"Scope": "local"
}
]
---
Volume: c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa
[
{
"CreatedAt": "2025-07-26T22:00:27-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa/_data",
"Name": "c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa",
"Options": null,
"Scope": "local"
}
]
---
Volume: coding_immich-model-cache
[
{
"CreatedAt": "2025-07-25T12:36:38-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "be3f959279dd07187f7ccc94653cbc40bc8c6648f093a530518bc3ff7f0c7685",
"com.docker.compose.project": "coding",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "immich-model-cache"
},
"Mountpoint": "/var/lib/docker/volumes/coding_immich-model-cache/_data",
"Name": "coding_immich-model-cache",
"Options": null,
"Scope": "local"
}
]
---
Volume: coding_immich-pgdata
[
{
"CreatedAt": "2025-07-25T12:36:38-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "7af96f2dae00b714d54565cf84af1547834ba8e3ccd226fcdc8c96bd3e583023",
"com.docker.compose.project": "coding",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "immich-pgdata"
},
"Mountpoint": "/var/lib/docker/volumes/coding_immich-pgdata/_data",
"Name": "coding_immich-pgdata",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_grafana_data
[
{
"CreatedAt": "2025-07-25T12:37:07-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "6688529f3263bb1ab67cb8e35af0c2acaaab0f1410fe6545c26a751043d708c2",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "grafana_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_grafana_data/_data",
"Name": "docker_grafana_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_mongodb_data
[
{
"CreatedAt": "2025-07-24T11:24:45-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "31bd50b512ef3a378e1f3536a27c84bdcd585be7206a19428256d16b331c3152",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "mongodb_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_mongodb_data/_data",
"Name": "docker_mongodb_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_postgres_data
[
{
"CreatedAt": "2025-07-23T13:14:13-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "fc9c3243864dd27a923dba18ebe0743bc1bd63150910bb22573d03430e222307",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "postgres_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_postgres_data/_data",
"Name": "docker_postgres_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_prometheus_data
[
{
"CreatedAt": "2025-07-25T12:37:07-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "c98c8616d8d605e1f65187d17f05260a4f85d90bd6b3d593a90f189fdd89d06f",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "prometheus_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_prometheus_data/_data",
"Name": "docker_prometheus_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_redis_data
[
{
"CreatedAt": "2025-07-24T11:24:45-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "4d42b72039b56d337e6236e86498c1bad103c5f26aedf48c34019c813797225c",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "redis_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_redis_data/_data",
"Name": "docker_redis_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7
[
{
"CreatedAt": "2025-06-01T19:45:47-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7/_data",
"Name": "f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7",
"Options": null,
"Scope": "local"
}
]
---
Volume: raggraph_neo4j_data
[
{
"CreatedAt": "2025-05-28T08:59:16-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "ecdb959c693df091c947e0e4ac1e27dab9f87c367af3beee3b233a2f541452f4",
"com.docker.compose.project": "raggraph",
"com.docker.compose.version": "2.36.0",
"com.docker.compose.volume": "neo4j_data"
},
"Mountpoint": "/var/lib/docker/volumes/raggraph_neo4j_data/_data",
"Name": "raggraph_neo4j_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: raggraph_neo4j_logs
[
{
"CreatedAt": "2025-05-28T08:59:16-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "c0047c768f81bb034e9d72470b81bff79ba4b60ab1996a8ba2d92b5f8a5ec5c9",
"com.docker.compose.project": "raggraph",
"com.docker.compose.version": "2.36.0",
"com.docker.compose.volume": "neo4j_logs"
},
"Mountpoint": "/var/lib/docker/volumes/raggraph_neo4j_logs/_data",
"Name": "raggraph_neo4j_logs",
"Options": null,
"Scope": "local"
}
]
---
Volume: raggraph_neo4j_plugins
[
{
"CreatedAt": "2025-05-28T08:59:16-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "76b28164e831ff38581d4553898549d9c7a72bcc8e08c076b75fdf4e1bbbed7f",
"com.docker.compose.project": "raggraph",
"com.docker.compose.version": "2.36.0",
"com.docker.compose.volume": "neo4j_plugins"
},
"Mountpoint": "/var/lib/docker/volumes/raggraph_neo4j_plugins/_data",
"Name": "raggraph_neo4j_plugins",
"Options": null,
"Scope": "local"
}
]
---

View File

@@ -0,0 +1,19 @@
VOLUME NAME DRIVER MOUNTPOINT
0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f local /var/lib/docker/volumes/0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f/_data
2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3 local /var/lib/docker/volumes/2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3/_data
51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1 local /var/lib/docker/volumes/51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1/_data
203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc local /var/lib/docker/volumes/203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc/_data
675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0 local /var/lib/docker/volumes/675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0/_data
be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2 local /var/lib/docker/volumes/be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2/_data
c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa local /var/lib/docker/volumes/c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa/_data
coding_immich-model-cache local /var/lib/docker/volumes/coding_immich-model-cache/_data
coding_immich-pgdata local /var/lib/docker/volumes/coding_immich-pgdata/_data
docker_grafana_data local /var/lib/docker/volumes/docker_grafana_data/_data
docker_mongodb_data local /var/lib/docker/volumes/docker_mongodb_data/_data
docker_postgres_data local /var/lib/docker/volumes/docker_postgres_data/_data
docker_prometheus_data local /var/lib/docker/volumes/docker_prometheus_data/_data
docker_redis_data local /var/lib/docker/volumes/docker_redis_data/_data
f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7 local /var/lib/docker/volumes/f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7/_data
raggraph_neo4j_data local /var/lib/docker/volumes/raggraph_neo4j_data/_data
raggraph_neo4j_logs local /var/lib/docker/volumes/raggraph_neo4j_logs/_data
raggraph_neo4j_plugins local /var/lib/docker/volumes/raggraph_neo4j_plugins/_data

View File

@@ -0,0 +1,31 @@
=== Application Configs ===
/etc/grub2-efi.cfg
/etc/grub2.cfg
/etc/opensc-x86_64.conf
/etc/resolv.conf
/etc/NetworkManager/NetworkManager.conf
/etc/PackageKit/CommandNotFound.conf
/etc/PackageKit/PackageKit.conf
/etc/PackageKit/Vendor.conf
/etc/UPower/UPower.conf
/etc/abrt/abrt-action-save-package-data.conf
/etc/abrt/abrt.conf
/etc/abrt/gpg_keys.conf
/etc/alsa/alsactl.conf
/etc/alsa/state-daemon.conf
/etc/anaconda/anaconda.conf
/etc/audit/auditd.conf
/etc/authselect/authselect.conf
/etc/authselect/nsswitch.conf
/etc/avahi/avahi-daemon.conf
/etc/bluetooth/network.conf
/etc/bluetooth/input.conf
/etc/bluetooth/main.conf
/etc/containers/registries.conf
/etc/containers/toolbox.conf
/etc/cups/classes.conf
/etc/cups/client.conf
/etc/cups/cups-browsed.conf
/etc/cups/cups-files.conf
/etc/cups/cupsd.conf
/etc/cups/snmp.conf

View File

@@ -0,0 +1,6 @@
Starting Data Discovery on fedora at Sat Aug 23 10:23:52 PM EDT 2025
Output: /tmp/data_discovery_fedora_20250823_222352
========================================
1. Database Locations
2. Docker Data Locations
3. Critical Configuration Files

View File

@@ -0,0 +1,19 @@
--- PostgreSQL ---
--- MySQL/MariaDB ---
--- SQLite ---
/var/lib/PackageKit/transactions.db
/var/lib/colord/mapping.db
/var/lib/colord/storage.db
/var/lib/dnf/history.sqlite
/var/lib/dnf/history.sqlite-shm
/var/lib/dnf/history.sqlite-wal
/var/lib/fwupd/pending.db
/var/lib/plocate/plocate.db
/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db
/var/lib/docker/volumes/metadata.db
/var/lib/docker/buildkit/containerdmeta.db
/var/lib/docker/buildkit/snapshots.db
/var/lib/docker/buildkit/metadata_v2.db
/var/lib/docker/buildkit/cache.db
/var/lib/docker/buildkit/history.db
/opt/android-studio/bin/brokenPlugins.db

View File

@@ -0,0 +1,5 @@
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 3 3 1.208GB 0B (0%)
Containers 3 1 2.733kB 0B (0%)
Local Volumes 18 3 1.533GB 1.119GB (73%)
Build Cache 69 0 4.745GB 4.745GB

View File

@@ -0,0 +1,301 @@
Docker volume details:
Volume: 0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f
[
{
"CreatedAt": "2025-07-24T11:48:58-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f/_data",
"Name": "0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f",
"Options": null,
"Scope": "local"
}
]
---
Volume: 2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3
[
{
"CreatedAt": "2025-07-24T11:24:45-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3/_data",
"Name": "2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3",
"Options": null,
"Scope": "local"
}
]
---
Volume: 51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1
[
{
"CreatedAt": "2025-07-26T21:57:49-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1/_data",
"Name": "51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1",
"Options": null,
"Scope": "local"
}
]
---
Volume: 203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc
[
{
"CreatedAt": "2025-07-24T11:48:53-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc/_data",
"Name": "203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc",
"Options": null,
"Scope": "local"
}
]
---
Volume: 675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0
[
{
"CreatedAt": "2025-06-01T19:46:10-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0/_data",
"Name": "675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0",
"Options": null,
"Scope": "local"
}
]
---
Volume: be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2
[
{
"CreatedAt": "2025-07-26T21:57:49-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2/_data",
"Name": "be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2",
"Options": null,
"Scope": "local"
}
]
---
Volume: c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa
[
{
"CreatedAt": "2025-07-26T22:00:27-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa/_data",
"Name": "c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa",
"Options": null,
"Scope": "local"
}
]
---
Volume: coding_immich-model-cache
[
{
"CreatedAt": "2025-07-25T12:36:38-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "be3f959279dd07187f7ccc94653cbc40bc8c6648f093a530518bc3ff7f0c7685",
"com.docker.compose.project": "coding",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "immich-model-cache"
},
"Mountpoint": "/var/lib/docker/volumes/coding_immich-model-cache/_data",
"Name": "coding_immich-model-cache",
"Options": null,
"Scope": "local"
}
]
---
Volume: coding_immich-pgdata
[
{
"CreatedAt": "2025-07-25T12:36:38-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "7af96f2dae00b714d54565cf84af1547834ba8e3ccd226fcdc8c96bd3e583023",
"com.docker.compose.project": "coding",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "immich-pgdata"
},
"Mountpoint": "/var/lib/docker/volumes/coding_immich-pgdata/_data",
"Name": "coding_immich-pgdata",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_grafana_data
[
{
"CreatedAt": "2025-07-25T12:37:07-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "6688529f3263bb1ab67cb8e35af0c2acaaab0f1410fe6545c26a751043d708c2",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "grafana_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_grafana_data/_data",
"Name": "docker_grafana_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_mongodb_data
[
{
"CreatedAt": "2025-07-24T11:24:45-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "31bd50b512ef3a378e1f3536a27c84bdcd585be7206a19428256d16b331c3152",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "mongodb_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_mongodb_data/_data",
"Name": "docker_mongodb_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_postgres_data
[
{
"CreatedAt": "2025-07-23T13:14:13-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "fc9c3243864dd27a923dba18ebe0743bc1bd63150910bb22573d03430e222307",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "postgres_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_postgres_data/_data",
"Name": "docker_postgres_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_prometheus_data
[
{
"CreatedAt": "2025-07-25T12:37:07-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "c98c8616d8d605e1f65187d17f05260a4f85d90bd6b3d593a90f189fdd89d06f",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "prometheus_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_prometheus_data/_data",
"Name": "docker_prometheus_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: docker_redis_data
[
{
"CreatedAt": "2025-07-24T11:24:45-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "4d42b72039b56d337e6236e86498c1bad103c5f26aedf48c34019c813797225c",
"com.docker.compose.project": "docker",
"com.docker.compose.version": "2.38.2",
"com.docker.compose.volume": "redis_data"
},
"Mountpoint": "/var/lib/docker/volumes/docker_redis_data/_data",
"Name": "docker_redis_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7
[
{
"CreatedAt": "2025-06-01T19:45:47-04:00",
"Driver": "local",
"Labels": {
"com.docker.volume.anonymous": ""
},
"Mountpoint": "/var/lib/docker/volumes/f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7/_data",
"Name": "f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7",
"Options": null,
"Scope": "local"
}
]
---
Volume: raggraph_neo4j_data
[
{
"CreatedAt": "2025-05-28T08:59:16-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "ecdb959c693df091c947e0e4ac1e27dab9f87c367af3beee3b233a2f541452f4",
"com.docker.compose.project": "raggraph",
"com.docker.compose.version": "2.36.0",
"com.docker.compose.volume": "neo4j_data"
},
"Mountpoint": "/var/lib/docker/volumes/raggraph_neo4j_data/_data",
"Name": "raggraph_neo4j_data",
"Options": null,
"Scope": "local"
}
]
---
Volume: raggraph_neo4j_logs
[
{
"CreatedAt": "2025-05-28T08:59:16-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "c0047c768f81bb034e9d72470b81bff79ba4b60ab1996a8ba2d92b5f8a5ec5c9",
"com.docker.compose.project": "raggraph",
"com.docker.compose.version": "2.36.0",
"com.docker.compose.volume": "neo4j_logs"
},
"Mountpoint": "/var/lib/docker/volumes/raggraph_neo4j_logs/_data",
"Name": "raggraph_neo4j_logs",
"Options": null,
"Scope": "local"
}
]
---
Volume: raggraph_neo4j_plugins
[
{
"CreatedAt": "2025-05-28T08:59:16-04:00",
"Driver": "local",
"Labels": {
"com.docker.compose.config-hash": "76b28164e831ff38581d4553898549d9c7a72bcc8e08c076b75fdf4e1bbbed7f",
"com.docker.compose.project": "raggraph",
"com.docker.compose.version": "2.36.0",
"com.docker.compose.volume": "neo4j_plugins"
},
"Mountpoint": "/var/lib/docker/volumes/raggraph_neo4j_plugins/_data",
"Name": "raggraph_neo4j_plugins",
"Options": null,
"Scope": "local"
}
]
---

View File

@@ -0,0 +1,19 @@
VOLUME NAME DRIVER MOUNTPOINT
0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f local /var/lib/docker/volumes/0c31f3704137a3c4b0d2acc8070b5c2a432e785536274638736245d94f19ac1f/_data
2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3 local /var/lib/docker/volumes/2cb6254e43f1a79bb9434eb6d35194328dbbb1b9c1cdc259fe0cbb829166cea3/_data
51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1 local /var/lib/docker/volumes/51b29b24122015eeb7902f2b59ee6ffa36986d9055d582d88a45a7b8d571e8d1/_data
203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc local /var/lib/docker/volumes/203e339e501e528c426ed6bc8757d9da8449d7e1f344c92759945a3eedb349cc/_data
675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0 local /var/lib/docker/volumes/675098f711eec0e5dc7fde8a9246ac34b07ae8783e1b2d4c076acebb37cc03c0/_data
be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2 local /var/lib/docker/volumes/be2fdd310d999c397b05a9c24247d14f09dc5aa18a45c6eaf6515590907d40d2/_data
c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa local /var/lib/docker/volumes/c9fdee8b81debd68a68755c390c8d9941539953f73fcf7f308d59d6ab494f4fa/_data
coding_immich-model-cache local /var/lib/docker/volumes/coding_immich-model-cache/_data
coding_immich-pgdata local /var/lib/docker/volumes/coding_immich-pgdata/_data
docker_grafana_data local /var/lib/docker/volumes/docker_grafana_data/_data
docker_mongodb_data local /var/lib/docker/volumes/docker_mongodb_data/_data
docker_postgres_data local /var/lib/docker/volumes/docker_postgres_data/_data
docker_prometheus_data local /var/lib/docker/volumes/docker_prometheus_data/_data
docker_redis_data local /var/lib/docker/volumes/docker_redis_data/_data
f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7 local /var/lib/docker/volumes/f28d9e11738602e7371c14b6894cd2f3cb7a84376eeb1ab587d94b2405048da7/_data
raggraph_neo4j_data local /var/lib/docker/volumes/raggraph_neo4j_data/_data
raggraph_neo4j_logs local /var/lib/docker/volumes/raggraph_neo4j_logs/_data
raggraph_neo4j_plugins local /var/lib/docker/volumes/raggraph_neo4j_plugins/_data

View File

@@ -0,0 +1,3 @@
jonathan sshd pts/4 2025-08-23 21:34 (100.96.2.115)
jonathan seat0 2025-08-16 10:27
jonathan tty2 2025-08-16 10:27

View File

@@ -0,0 +1,89 @@
root:x:0:
bin:x:1:
daemon:x:2:
sys:x:3:
adm:x:4:
tty:x:5:
disk:x:6:
lp:x:7:
mem:x:8:
kmem:x:9:
wheel:x:10:jonathan
cdrom:x:11:
mail:x:12:
man:x:15:
dialout:x:18:jonathan
floppy:x:19:
games:x:20:
utmp:x:22:
tape:x:33:
kvm:x:36:qemu
video:x:39:
ftp:x:50:
lock:x:54:
audio:x:63:
users:x:100:
input:x:104:
render:x:105:
sgx:x:106:
nobody:x:65534:
dbus:x:81:
utempter:x:35:
apache:x:48:
tss:x:59:
avahi:x:70:
geoclue:x:999:
usbmuxd:x:113:
systemd-journal:x:190:netdata
systemd-oom:x:998:
qemu:x:107:
polkitd:x:114:
printadmin:x:997:
dip:x:40:
brlapi:x:996:
jackuser:x:995:
rtkit:x:172:
chrony:x:994:
dnsmasq:x:993:
gluster:x:992:
rpc:x:32:
pipewire:x:991:
unbound:x:990:
nm-openconnect:x:989:
rpcuser:x:29:
wsdd:x:988:
libvirt:x:987:jonathan
sssd:x:986:
openvpn:x:985:
nm-openvpn:x:984:
flatpak:x:983:
colord:x:982:
abrt:x:173:
gdm:x:42:
gnome-initial-setup:x:981:
vboxsf:x:980:
sshd:x:74:
power:x:979:
tcpdump:x:72:
plocate:x:978:
gamemode:x:977:
gnome-remote-desktop:x:976:
passim:x:975:
systemd-coredump:x:974:
systemd-network:x:192:
systemd-resolve:x:193:
systemd-timesync:x:973:
jonathan:x:1000:
qat:x:972:
clock:x:103:
screen:x:84:
x2gouser:x:971:
wbpriv:x:88:
orb:x:970:
docker:x:969:jonathan
mysql:x:968:
nginx:x:967:
postgres:x:26:
valkey:x:966:
davfs2:x:965:jonathan
netdata:x:964:

View File

@@ -0,0 +1,12 @@
jonathan pts/4 100.96.2.115 Sat Aug 23 21:34 still logged in
jonathan pts/5 100.96.2.115 Sat Aug 23 13:35 - 16:43 (03:08)
jonathan pts/4 100.96.2.115 Sat Aug 23 12:03 - 15:03 (02:59)
jonathan pts/4 100.96.2.115 Sat Aug 23 09:00 - 12:03 (03:03)
jonathan pts/4 100.96.2.115 Sat Aug 23 08:56 - 09:00 (00:03)
jonathan pts/4 100.96.2.115 Sat Aug 23 08:31 - 08:56 (00:25)
jonathan pts/4 100.96.2.115 Fri Aug 22 22:30 - 01:59 (03:29)
jonathan pts/4 100.96.2.115 Thu Aug 21 22:23 - 22:30 (00:06)
jonathan pts/4 100.96.2.115 Thu Aug 21 21:53 - 22:23 (00:30)
jonathan pts/4 100.96.2.115 Thu Aug 21 21:23 - 21:52 (00:29)
wtmp begins Sun Mar 23 11:37:35 2025

View File

@@ -0,0 +1,5 @@
Starting Security Discovery on fedora at Sat Aug 23 09:59:55 PM EDT 2025
Output: /tmp/security_discovery_fedora_20250823_215955
============================================
1. User Accounts & Access
2. SSH Configuration

View File

@@ -0,0 +1,58 @@
root:x:0:0:Super User:/root:/bin/bash
bin:x:1:1:bin:/bin:/usr/sbin/nologin
daemon:x:2:2:daemon:/sbin:/usr/sbin/nologin
adm:x:3:4:adm:/var/adm:/usr/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/usr/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/usr/sbin/nologin
operator:x:11:0:operator:/root:/usr/sbin/nologin
games:x:12:100:games:/usr/games:/usr/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/usr/sbin/nologin
nobody:x:65534:65534:Kernel Overflow User:/:/usr/sbin/nologin
dbus:x:81:81:System Message Bus:/:/usr/sbin/nologin
apache:x:48:48:Apache:/usr/share/httpd:/sbin/nologin
tss:x:59:59:Account used for TPM access:/:/usr/sbin/nologin
avahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologin
geoclue:x:999:999:User for geoclue:/var/lib/geoclue:/sbin/nologin
usbmuxd:x:113:113:usbmuxd user:/:/sbin/nologin
systemd-oom:x:998:998:systemd Userspace OOM Killer:/:/usr/sbin/nologin
qemu:x:107:107:qemu user:/:/sbin/nologin
polkitd:x:114:114:User for polkitd:/:/sbin/nologin
rtkit:x:172:172:RealtimeKit:/:/sbin/nologin
chrony:x:997:994:chrony system user:/var/lib/chrony:/sbin/nologin
dnsmasq:x:996:993:Dnsmasq DHCP and DNS server:/var/lib/dnsmasq:/usr/sbin/nologin
gluster:x:995:992:GlusterFS daemons:/run/gluster:/sbin/nologin
rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin
pipewire:x:994:991:PipeWire System Daemon:/run/pipewire:/usr/sbin/nologin
unbound:x:993:990:Unbound DNS resolver:/var/lib/unbound:/sbin/nologin
nm-openconnect:x:992:989:NetworkManager user for OpenConnect:/:/sbin/nologin
rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin
wsdd:x:991:988:Web Services Dynamic Discovery host daemon:/:/sbin/nologin
sssd:x:990:986:User for sssd:/run/sssd:/sbin/nologin
openvpn:x:989:985:OpenVPN:/etc/openvpn:/sbin/nologin
nm-openvpn:x:988:984:Default user for running openvpn spawned by NetworkManager:/:/sbin/nologin
flatpak:x:987:983:Flatpak system helper:/:/usr/sbin/nologin
colord:x:986:982:User for colord:/var/lib/colord:/sbin/nologin
abrt:x:173:173::/etc/abrt:/sbin/nologin
gdm:x:42:42:GNOME Display Manager:/var/lib/gdm:/usr/sbin/nologin
gnome-initial-setup:x:985:981::/run/gnome-initial-setup/:/sbin/nologin
vboxadd:x:984:1::/var/run/vboxadd:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/usr/share/empty.sshd:/usr/sbin/nologin
tcpdump:x:72:72:tcpdump:/:/usr/sbin/nologin
gnome-remote-desktop:x:976:976:GNOME Remote Desktop:/var/lib/gnome-remote-desktop:/usr/sbin/nologin
passim:x:975:975:Local Caching Server:/usr/share/empty:/usr/sbin/nologin
systemd-coredump:x:974:974:systemd Core Dumper:/:/usr/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/usr/sbin/nologin
systemd-resolve:x:193:193:systemd Resolver:/:/usr/sbin/nologin
systemd-timesync:x:973:973:systemd Time Synchronization:/:/usr/sbin/nologin
jonathan:x:1000:1000:Jonathan:/home/jonathan:/bin/bash
x2gouser:x:972:971:x2go:/var/lib/x2go:/sbin/nologin
orb:x:971:970::/home/orb:/bin/bash
mysql:x:968:968:MariaDB and MySQL Server:/var/lib/mysql:/usr/sbin/nologin
nginx:x:967:967:Nginx web server:/var/lib/nginx:/sbin/nologin
postgres:x:26:26:PostgreSQL Server:/var/lib/pgsql:/bin/bash
valkey:x:966:966:Valkey Database Server:/dev/null:/sbin/nologin
davfs2:x:965:965:User account for davfs2:/var/cache/davfs2:/sbin/nologin
netdata:x:964:964:NetData User:/var/log/netdata:/sbin/nologin

View File

@@ -0,0 +1,3 @@
jonathan sshd pts/4 2025-08-23 21:34 (100.96.2.115)
jonathan seat0 2025-08-16 10:27
jonathan tty2 2025-08-16 10:27

View File

@@ -0,0 +1,89 @@
root:x:0:
bin:x:1:
daemon:x:2:
sys:x:3:
adm:x:4:
tty:x:5:
disk:x:6:
lp:x:7:
mem:x:8:
kmem:x:9:
wheel:x:10:jonathan
cdrom:x:11:
mail:x:12:
man:x:15:
dialout:x:18:jonathan
floppy:x:19:
games:x:20:
utmp:x:22:
tape:x:33:
kvm:x:36:qemu
video:x:39:
ftp:x:50:
lock:x:54:
audio:x:63:
users:x:100:
input:x:104:
render:x:105:
sgx:x:106:
nobody:x:65534:
dbus:x:81:
utempter:x:35:
apache:x:48:
tss:x:59:
avahi:x:70:
geoclue:x:999:
usbmuxd:x:113:
systemd-journal:x:190:netdata
systemd-oom:x:998:
qemu:x:107:
polkitd:x:114:
printadmin:x:997:
dip:x:40:
brlapi:x:996:
jackuser:x:995:
rtkit:x:172:
chrony:x:994:
dnsmasq:x:993:
gluster:x:992:
rpc:x:32:
pipewire:x:991:
unbound:x:990:
nm-openconnect:x:989:
rpcuser:x:29:
wsdd:x:988:
libvirt:x:987:jonathan
sssd:x:986:
openvpn:x:985:
nm-openvpn:x:984:
flatpak:x:983:
colord:x:982:
abrt:x:173:
gdm:x:42:
gnome-initial-setup:x:981:
vboxsf:x:980:
sshd:x:74:
power:x:979:
tcpdump:x:72:
plocate:x:978:
gamemode:x:977:
gnome-remote-desktop:x:976:
passim:x:975:
systemd-coredump:x:974:
systemd-network:x:192:
systemd-resolve:x:193:
systemd-timesync:x:973:
jonathan:x:1000:
qat:x:972:
clock:x:103:
screen:x:84:
x2gouser:x:971:
wbpriv:x:88:
orb:x:970:
docker:x:969:jonathan
mysql:x:968:
nginx:x:967:
postgres:x:26:
valkey:x:966:
davfs2:x:965:jonathan
netdata:x:964:

View File

@@ -0,0 +1,12 @@
jonathan pts/4 100.96.2.115 Sat Aug 23 21:34 still logged in
jonathan pts/5 100.96.2.115 Sat Aug 23 13:35 - 16:43 (03:08)
jonathan pts/4 100.96.2.115 Sat Aug 23 12:03 - 15:03 (02:59)
jonathan pts/4 100.96.2.115 Sat Aug 23 09:00 - 12:03 (03:03)
jonathan pts/4 100.96.2.115 Sat Aug 23 08:56 - 09:00 (00:03)
jonathan pts/4 100.96.2.115 Sat Aug 23 08:31 - 08:56 (00:25)
jonathan pts/4 100.96.2.115 Fri Aug 22 22:30 - 01:59 (03:29)
jonathan pts/4 100.96.2.115 Thu Aug 21 22:23 - 22:30 (00:06)
jonathan pts/4 100.96.2.115 Thu Aug 21 21:53 - 22:23 (00:30)
jonathan pts/4 100.96.2.115 Thu Aug 21 21:23 - 21:52 (00:29)
wtmp begins Sun Mar 23 11:37:35 2025

View File

@@ -0,0 +1,5 @@
Starting Security Discovery on fedora at Sat Aug 23 10:00:01 PM EDT 2025
Output: /tmp/security_discovery_fedora_20250823_220001
============================================
1. User Accounts & Access
2. SSH Configuration

View File

@@ -0,0 +1,58 @@
root:x:0:0:Super User:/root:/bin/bash
bin:x:1:1:bin:/bin:/usr/sbin/nologin
daemon:x:2:2:daemon:/sbin:/usr/sbin/nologin
adm:x:3:4:adm:/var/adm:/usr/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/usr/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/usr/sbin/nologin
operator:x:11:0:operator:/root:/usr/sbin/nologin
games:x:12:100:games:/usr/games:/usr/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/usr/sbin/nologin
nobody:x:65534:65534:Kernel Overflow User:/:/usr/sbin/nologin
dbus:x:81:81:System Message Bus:/:/usr/sbin/nologin
apache:x:48:48:Apache:/usr/share/httpd:/sbin/nologin
tss:x:59:59:Account used for TPM access:/:/usr/sbin/nologin
avahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologin
geoclue:x:999:999:User for geoclue:/var/lib/geoclue:/sbin/nologin
usbmuxd:x:113:113:usbmuxd user:/:/sbin/nologin
systemd-oom:x:998:998:systemd Userspace OOM Killer:/:/usr/sbin/nologin
qemu:x:107:107:qemu user:/:/sbin/nologin
polkitd:x:114:114:User for polkitd:/:/sbin/nologin
rtkit:x:172:172:RealtimeKit:/:/sbin/nologin
chrony:x:997:994:chrony system user:/var/lib/chrony:/sbin/nologin
dnsmasq:x:996:993:Dnsmasq DHCP and DNS server:/var/lib/dnsmasq:/usr/sbin/nologin
gluster:x:995:992:GlusterFS daemons:/run/gluster:/sbin/nologin
rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin
pipewire:x:994:991:PipeWire System Daemon:/run/pipewire:/usr/sbin/nologin
unbound:x:993:990:Unbound DNS resolver:/var/lib/unbound:/sbin/nologin
nm-openconnect:x:992:989:NetworkManager user for OpenConnect:/:/sbin/nologin
rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin
wsdd:x:991:988:Web Services Dynamic Discovery host daemon:/:/sbin/nologin
sssd:x:990:986:User for sssd:/run/sssd:/sbin/nologin
openvpn:x:989:985:OpenVPN:/etc/openvpn:/sbin/nologin
nm-openvpn:x:988:984:Default user for running openvpn spawned by NetworkManager:/:/sbin/nologin
flatpak:x:987:983:Flatpak system helper:/:/usr/sbin/nologin
colord:x:986:982:User for colord:/var/lib/colord:/sbin/nologin
abrt:x:173:173::/etc/abrt:/sbin/nologin
gdm:x:42:42:GNOME Display Manager:/var/lib/gdm:/usr/sbin/nologin
gnome-initial-setup:x:985:981::/run/gnome-initial-setup/:/sbin/nologin
vboxadd:x:984:1::/var/run/vboxadd:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/usr/share/empty.sshd:/usr/sbin/nologin
tcpdump:x:72:72:tcpdump:/:/usr/sbin/nologin
gnome-remote-desktop:x:976:976:GNOME Remote Desktop:/var/lib/gnome-remote-desktop:/usr/sbin/nologin
passim:x:975:975:Local Caching Server:/usr/share/empty:/usr/sbin/nologin
systemd-coredump:x:974:974:systemd Core Dumper:/:/usr/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/usr/sbin/nologin
systemd-resolve:x:193:193:systemd Resolver:/:/usr/sbin/nologin
systemd-timesync:x:973:973:systemd Time Synchronization:/:/usr/sbin/nologin
jonathan:x:1000:1000:Jonathan:/home/jonathan:/bin/bash
x2gouser:x:972:971:x2go:/var/lib/x2go:/sbin/nologin
orb:x:971:970::/home/orb:/bin/bash
mysql:x:968:968:MariaDB and MySQL Server:/var/lib/mysql:/usr/sbin/nologin
nginx:x:967:967:Nginx web server:/var/lib/nginx:/sbin/nologin
postgres:x:26:26:PostgreSQL Server:/var/lib/pgsql:/bin/bash
valkey:x:966:966:Valkey Database Server:/dev/null:/sbin/nologin
davfs2:x:965:965:User account for davfs2:/var/cache/davfs2:/sbin/nologin
netdata:x:964:964:NetData User:/var/log/netdata:/sbin/nologin