Skip to content

Commit

Permalink
Adding Reversing Lab Sacanner
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore7snehil committed Oct 18, 2024
1 parent 814caf4 commit d693ab5
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: RL-Secure
run-name: rl-scanner

on:
merge_group:
workflow_dispatch:
push:
branches: ['master']

permissions:
contents: read

jobs:
rl-scanner:
runs-on: ubuntu-latest

permissions:
pull-requests: write
id-token: write

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Configure Ruby
uses: ./.github/actions/setup
with:
ruby-version: 3.2

- name: Build RubyGems
shell: bash
run: |
gem build *.gemspec
- name: Output build artifact
id: output_build_artifact
run: |
echo "scanfile=$(ls *.gem)" >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install boto3 requests
- name: Get Artifact Version
id: get_version
run: echo "version=$(cat .version)" >> $GITHUB_ENV

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.PRODSEC_TOOLS_ARN }}
aws-region: us-east-1
mask-aws-account-id: true

- name: Install rl-wrapper
env:
WRAPPER_INDEX_URL: "https://${{ secrets.PRODSEC_TOOLS_USER }}:${{ secrets.PRODSEC_TOOLS_TOKEN }}@a0us.jfrog.io/artifactory/api/pypi/python-local/simple"
run: |
pip install rl-wrapper --index-url $WRAPPER_INDEX_URL
- name: Run Reversing Labs Wrapper Scanner
env:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
WRAPPER_INDEX_URL: "https://${{ secrets.PRODSEC_TOOLS_USER }}:${{ secrets.PRODSEC_TOOLS_TOKEN }}@a0us.jfrog.io/artifactory/api/pypi/python-local/simple"
PYTHONUNBUFFERED: 1
run: |
pip install rl-wrapper --index-url "$WRAPPER_INDEX_URL" && \
rl-wrapper \
--artifact "${{ steps.output_build_artifact.outputs.scanfile }}" \
--version "${{ steps.get_version.outputs.version }}" \
--name "${{ github.event.repository.name }}" \
--repository "${{ github.repository }}" \
--commit "${{ github.sha }}" \
--build-env "github_actions" \
--suppress_output
continue-on-error: true

0 comments on commit d693ab5

Please sign in to comment.