nuclei-templates/.github/workflows/templates-sync.yml

37 lines
1.6 KiB
YAML
Raw Normal View History

2023-12-14 04:10:00 +00:00
name: Sync Repositories Workflow
on:
push:
paths:
- '.new-additions'
2024-04-25 11:56:38 +00:00
- 'http/cves/2023/CVE-2023-1892.yaml'
2024-04-26 08:54:05 +00:00
- 'http/cves/2023/CVE-2023-2227.yaml'
2024-04-23 14:05:47 +00:00
- 'http/cves/2023/CVE-2023-2948.yaml'
2024-04-23 13:57:27 +00:00
- 'http/cves/2023/CVE-2023-2949.yaml'
2024-04-23 13:48:28 +00:00
- 'http/cves/2023/CVE-2023-31446.yaml'
2024-04-23 14:22:20 +00:00
- 'http/cves/2023/CVE-2023-4973.yaml'
2024-04-25 11:21:00 +00:00
- 'http/cves/2024/CVE-2024-1183.yaml'
2024-04-23 19:00:21 +00:00
- 'http/cves/2024/CVE-2024-31621.yaml'
2024-04-25 11:18:17 +00:00
- 'http/cves/2024/CVE-2024-32399.yaml'
2024-04-26 08:41:01 +00:00
- 'http/default-logins/crushftp/crushftp-anonymous-login.yaml'
2024-04-26 08:46:32 +00:00
- 'http/default-logins/crushftp/crushftp-default-login.yaml'
2024-04-22 11:45:17 +00:00
- 'http/exposed-panels/bmc/bmc-remedy-sso-panel.yaml'
2024-04-23 13:29:40 +00:00
- 'http/exposed-panels/bonobo-server-panel.yaml'
2024-04-23 13:52:38 +00:00
- 'http/exposed-panels/cassia-bluetooth-gateway-panel.yaml'
2024-04-23 13:55:50 +00:00
- 'http/exposed-panels/femtocell-panel.yaml'
2024-04-26 08:54:05 +00:00
- 'http/exposed-panels/monitorr-panel.yaml'
2024-04-22 11:48:40 +00:00
- 'http/exposed-panels/tixeo-panel.yaml'
2024-04-23 14:05:47 +00:00
- 'http/misconfiguration/installer/sabnzbd-installer.yaml'
2024-04-23 13:48:28 +00:00
- 'http/misconfiguration/titannit-web-exposure.yaml'
2024-04-23 13:34:13 +00:00
- 'http/vulnerabilities/titan/titannit-web-ssrf.yaml'
2024-04-26 09:00:44 +00:00
- 'network/detection/aix-websm-detect.yaml'
- 'network/detection/bluecoat-telnet-proxy-detect.yaml'
2023-12-14 04:10:00 +00:00
workflow_dispatch:
jobs:
triggerRemoteWorkflow:
2024-03-02 09:35:40 +00:00
if: github.repository == 'projectdiscovery/nuclei-templates'
2024-03-04 09:34:20 +00:00
runs-on: ubuntu-latest
2023-12-14 04:10:00 +00:00
steps:
- name: Trigger Remote Workflow with curl
run: |
curl -i -s -k -X 'POST' -H 'Host: api.github.com' -H "Authorization: token ${{ secrets.GTOKEN }}" --data-binary $'{\"ref\":\"main\"}' 'https://api.github.com/repos/projectdiscovery/early-templates/actions/workflows/reposync.yml/dispatches'