https://github.com/marcuwynu23/nmap-action
github action
https://github.com/marcuwynu23/nmap-action
Last synced: 7 months ago
JSON representation
github action
- Host: GitHub
- URL: https://github.com/marcuwynu23/nmap-action
- Owner: marcuwynu23
- Created: 2025-02-20T01:13:36.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-20T02:16:58.000Z (8 months ago)
- Last Synced: 2025-02-20T02:26:37.462Z (8 months ago)
- Language: JavaScript
- Size: 173 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### How to use:
```yml
name: "Run Nmap Scan"on:
push:
branches:
- mainpermissions:
contents: read
issues: write # ✅ Required for issue creationjobs:
nmap_scan:
runs-on: ubuntu-lateststeps:
- name: Checkout repository
uses: actions/checkout@v3- name: Install Nmap
run: sudo apt-get update && sudo apt-get install -y nmap- name: Run Nmap Scan
uses: marcuwynu23/nmap-action@v1.0.0
with:
target: "cloudmateria.com"
issue_title: "🚨 Nmap Security Scan Alert"
fail_action: "true"
allow_issue_writing: "true"
```