add bearer (1st sast tool)
This commit is contained in:
parent
381616f682
commit
29d1c32e9d
5 changed files with 113 additions and 1 deletions
16
scripts/config_sast.sh
Normal file
16
scripts/config_sast.sh
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
# --------------------------------------
|
||||
# Настройка SAST анализаторов
|
||||
# --------------------------------------
|
||||
|
||||
echo "Установка curl"
|
||||
|
||||
sudo apt update
|
||||
sudo apt install -y curl
|
||||
|
||||
echo "Создание директории для результатов анализа"
|
||||
mkdir -p sast_results
|
||||
|
||||
echo "Установка bearer"
|
||||
|
||||
curl -sfL https://raw.githubusercontent.com/Bearer/bearer/main/contrib/install.sh | sh
|
||||
Loading…
Add table
Add a link
Reference in a new issue