Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
action-octoscan — 📦 :octocat: GitHub Actionsのセキュリティスキャンを実行するGitHub Actionです。 | Kitploit
ツール/GitHubGitHub/synacktiv/action-octoscan
脆弱性スキャナー静的コード分析 (SAST)コード分析DevSecOps設定ミス
GitHubsynacktiv/action-octoscan

action-octoscan

📦 :octocat: GitHub Actionsのセキュリティスキャンを実行するGitHub Actionです。

リポジトリを見る
261年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
ウェブサイト
📦 :octocat:

action octoscan

A GitHub Action that performs a security scan of your GitHub actions.

This action is based on octoscan


  • 🤸 Usage
  • Customizing
    • inputs
    • outputs
    • Permissions

🤸 Usage

Here is a basic example of how to use this action. This will work for both push and pull_request events.

root@kitploit:~
---
name: Octoscan

on:
  workflow_dispatch:
  pull_request:
    paths:
      - '.github/workflows/*'
  push:
    paths:
      - '.github/workflows/*'

permissions:
  security-events: write
  actions: read
  contents: read

jobs:
  octoscan:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - id: octoscan
        name: Run octoscan
        uses: synacktiv/action-octoscan@v1

      - name: Upload SARIF file to GitHub
        uses: github/codeql-action/upload-sarif@v3
        with:
          sarif_file: "${{steps.octoscan.outputs.sarif_output}}"
          category: octoscan

Security results can the be reviewed in the code security tab if you have write access on the target repository: コードセキュリティ

Or directly in the pull request: コードセキュリティ

Customizing

inputs

Inputs are based on the options of octoscan, you can find them here.

The following are optional as step.with keys:

💡 enable_rules と disable_rules を同時に使用することはできません。

outputs

The following outputs can be accessed via ${{ steps.<step-id>.outputs }} from this action

NameTypeDescription
sarif_outputStringSARIF 出力を含むファイルの名前。

Permissions

このアクションでは、GitHub 統合トークンに以下の権限が必要です:

root@kitploit:~
permissions:
  security-events: write
  actions: read
  contents: read

security-events is used to push the output of octoscan to GitHub code scanning.

ツールをダウンロード
NameTypeDescription
workdirStringルートディレクトリからの相対パスで表した作業ディレクトリ。
filter_triggersString特定のトリガーでワークフローをスキャンします(カンマ区切りリスト: "push,pull_request_target"、または事前設定: external/allnopr)。デフォルトは external です。
filter_runBoolean式インジェクションを run シェルスクリプト内でのみ検索します。デフォルトは true です。
ignoreString無視したいエラーメッセージに一致する正規表現。
disable_rulesString特定のルールを無効にします。"," で区切ります。enable_rules と併用できません。
enable_rulesString特定のルールを有効にします。これにより他のすべてのルールが無効になります。"," で区切ります。disable_rules と併用できません。