-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Wenxin Zhang <[email protected]>
- Loading branch information
1 parent
c189546
commit e82bac5
Showing
8 changed files
with
408 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Code Scan | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped | ||
paths-ignore: | ||
- "**.md" | ||
workflow_dispatch: | ||
|
||
# If there is a new commit, the previous jobs will be canceled | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
DOCKER_CONFIG_NAME: "commonDockerConfig" | ||
REPO_NAME: "code-scan" | ||
REPO_TAG: "1.0" | ||
DOCKER_FILE_NAME: "code-scan" | ||
CONTAINER_NAME: "code-scan" | ||
|
||
jobs: | ||
code-scan: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
job_name: ["bandit", "hadolint"] | ||
fail-fast: false | ||
steps: | ||
- name: Checkout out Repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Docker Build | ||
run: | | ||
docker build -f ${{ github.workspace }}/.github/workflows/docker/${{ env.DOCKER_FILE_NAME }}.dockerfile -t ${{ env.REPO_NAME }}:${{ env.REPO_TAG }} . | ||
- name: Docker Run | ||
run: | | ||
if [[ $(docker ps -a | grep -i '${{ env.CONTAINER_NAME }}'$) ]]; then | ||
docker stop ${{ env.CONTAINER_NAME }} | ||
docker rm -vf ${{ env.CONTAINER_NAME }} || true | ||
fi | ||
docker run -dit --memory="4g" --memory-reservation="1g" --disable-content-trust --privileged --name=${{ env.CONTAINER_NAME }} --shm-size="1g" \ | ||
-v ${{ github.workspace }}:/GenAIEval \ | ||
${{ env.REPO_NAME }}:${{ env.REPO_TAG }} | ||
- name: Code scan check | ||
run: | | ||
docker exec ${{ env.CONTAINER_NAME }} \ | ||
bash -c "bash /GenAIEval/.github/workflows/scripts/codeScan/${{ matrix.job_name }}.sh" | ||
- name: Publish pipeline artifact | ||
if: ${{ !cancelled() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.job_name }} | ||
path: ${{ github.workspace }}/.github/workflows/scripts/codeScan/${{ matrix.job_name }}.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# | ||
# Copyright (c) 2024 Intel Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
ARG UBUNTU_VER=22.04 | ||
FROM ubuntu:${UBUNTU_VER} as devel | ||
|
||
ENV LANG C.UTF-8 | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \ | ||
aspell \ | ||
aspell-en \ | ||
build-essential \ | ||
python3 \ | ||
python3-pip \ | ||
python3-dev \ | ||
python3-distutils \ | ||
wget | ||
|
||
RUN ln -sf $(which python3) /usr/bin/python | ||
|
||
RUN python -m pip install --no-cache-dir bandit==1.7.8 | ||
RUN wget -O /bin/hadolint https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64 | ||
RUN chmod +x /bin/hadolint | ||
|
||
WORKDIR / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2024 Intel Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
source /GenAIEval/.github/workflows/scripts/change_color | ||
log_dir=/GenAIEval/.github/workflows/scripts/codeScan | ||
python -m bandit -r -lll -iii /GenAIEval >${log_dir}/bandit.log | ||
exit_code=$? | ||
|
||
$BOLD_YELLOW && echo " ----------------- Current log file output start --------------------------" | ||
cat ${log_dir}/bandit.log | ||
$BOLD_YELLOW && echo " ----------------- Current log file output end --------------------------" && $RESET | ||
|
||
if [ ${exit_code} -ne 0 ]; then | ||
$BOLD_RED && echo "Error!! Please Click on the artifact button to download and check error details." && $RESET | ||
exit 1 | ||
fi | ||
|
||
$BOLD_PURPLE && echo "Congratulations, Bandit check passed!" && $LIGHT_PURPLE && echo " You can click on the artifact button to see the log details." && $RESET | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
|
||
# -------------- general approach start---------------- | ||
|
||
# 1. import this file: | ||
# source path/change_color.sh | ||
# 2. use COLOR/BG: | ||
# $VARIABLE_NAME && out_put_content && $RESET | ||
# 3. COLOR + BG: | ||
# $COLOR/BG_VARIABLE_NAME && $BG/COLOR_VARIABLE_NAME && out_put_content && $RESET | ||
# 4. custom | ||
# abbreviation(change number) | ||
# txt number range (30, 37) | ||
# bg number range (40, 47) | ||
# special effects number range (1, 7) | ||
# echo -en \\E[number1 + ; + number2 + ; + number3 + m" | ||
# e.g - BG_GRAY+LIGHT_RED = "echo -en \\E[47;31m" | ||
|
||
# -------------- general approach end----------------== | ||
|
||
# general setting | ||
# ------------- light_color start---------------- | ||
# black | ||
LIGHT_BLACK="echo -en \\E[30m" | ||
# red | ||
LIGHT_RED="echo -en \\E[31m" | ||
# green | ||
LIGHT_GREEN="echo -en \\E[32m" | ||
# yellow | ||
LIGHT_YELLOW="echo -en \\E[33m" | ||
# blue | ||
LIGHT_BLUE="echo -en \\E[34m" | ||
# purple | ||
LIGHT_PURPLE="echo -en \\E[35m" | ||
# cyan | ||
LIGHT_CYAN="echo -en \\E[36m" | ||
# gray | ||
LIGHT_GRAY="echo -en \\E[37m" | ||
# ------------- light_color end---------------- | ||
|
||
# ------------- bold_color start---------------- | ||
# black | ||
BOLD_BLACK="echo -en \\E[1;30m" | ||
# red | ||
BOLD_RED="echo -en \\E[1;31m" | ||
# green | ||
BOLD_GREEN="echo -en \\E[1;32m" | ||
# yellow | ||
BOLD_YELLOW="echo -en \\E[1;33m" | ||
# blue | ||
BOLD_BLUE="echo -en \\E[1;34m" | ||
# purple | ||
BOLD_PURPLE="echo -en \\E[1;35m" | ||
# cyan | ||
BOLD_CYAN="echo -en \\E[1;36m" | ||
# gray | ||
BOLD_GRAY="echo -en \\E[1;37m" | ||
# ------------- bold_color end---------------- | ||
|
||
# ------------- background_color start---------------- | ||
# black | ||
BG_BLACK="echo -en \\E[40m" | ||
# red | ||
BG_RED="echo -en \\E[41m" | ||
# green | ||
BG_GREEN="echo -en \\E[42m" | ||
# yellow | ||
BG_YELLOW="echo -en \\E[43m" | ||
# blue | ||
BG_BLUE="echo -en \\E[44m" | ||
# purple | ||
BG_PURPLE="echo -en \\E[45m" | ||
# cyan | ||
BG_CYAN="echo -en \\E[46m" | ||
# gray | ||
BG_GRAY="echo -en \\E[47m" | ||
# ------------- background_color end---------------- | ||
|
||
# close | ||
RESET="echo -en \\E[0m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2024 Intel Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
source ${workspace}/.github/workflows/scripts/change_color | ||
log_dir=${workspace}/.github/workflows/scripts/codeScan | ||
|
||
|
||
echo "---Updating definition (DAT) files ---" | ||
DEFS_URL=https://update.nai.com/products/commonupdater/current/vscandat1000/dat/0000 | ||
echo "Finding latest defs at $DEFS_URL/avvdat.ini..." \ | ||
&& wget -q $DEFS_URL/avvdat.ini \ | ||
&& echo "SUCCESS" || fail | ||
|
||
inifile="avvdat.ini" | ||
filename=`awk -F"=" '$2 ~ /avvdat.*zip/ { print $2 } ' $inifile` | ||
filename2="$(echo -e "${filename}" | tr -d '[:space:]')" | ||
|
||
if [ -z "$filename2" ] | ||
then | ||
echo "Cannot get defs information from INI file:" | ||
cat $inifile | ||
fail | ||
fi | ||
|
||
echo "Downloading latest defs from $DEFS_URL/$filename2..." \ | ||
&& wget -q $DEFS_URL/$filename2 \ | ||
&& echo "SUCCESS" || fail | ||
|
||
echo "Extracting latest defs..." \ | ||
&& unzip -o $filename2 -d /usr/local/uvscan \ | ||
&& echo "SUCCESS" || fail | ||
|
||
echo "--- Scanning ---" | ||
ENV_SCAN_OPTS="--analyze --mime --program --recursive --unzip --threads 4 --summary --verbose --html=${workspace}/.github/workflows/scripts/codeScan/report.html" | ||
echo "Scan Options: $ENV_SCAN_OPTS" | ||
|
||
rm -r ${workspace}/avvdat* | ||
rm -r ${workspace}/.git | ||
uvscan $ENV_SCAN_OPTS ${workspace} 2>&1 | tee ${log_dir}/trellix.log | ||
|
||
|
||
if [[ $(grep "Possibly Infected" ${log_dir}/trellix.log | sed 's/[^0-9]//g') != 0 ]]; then | ||
$BOLD_RED && echo "Error!! Please Click on the artifact button to download and check error details." && $RESET | ||
exit 1 | ||
fi | ||
|
||
$BOLD_PURPLE && echo "Congratulations, Trellix Scan passed!" && $LIGHT_PURPLE && echo " You can click on the artifact button to see the log details." && $RESET | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Trellix Command Line Scanner | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "35 1 * * 6" | ||
|
||
jobs: | ||
Trellix: | ||
runs-on: trellix | ||
steps: | ||
- name: Clean Up Working Directory | ||
run: sudo rm -rf ${{github.workspace}}/* | ||
|
||
- name: Checkout out Repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Trellix Scanner | ||
env: | ||
workspace: ${{ github.workspace }} | ||
run: bash .github/workflows/scripts/codeScan/trellix.sh | ||
|
||
- name: Publish pipeline artifact | ||
if: ${{ !cancelled() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ${{ github.workspace }}/.github/workflows/scripts/codeScan/report.html |
Oops, something went wrong.