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
#!/bin/bash | |
# Slick Progress Bar | |
# Created by: Ian Brown ([email protected]) | |
# Please share with me your modifications | |
# Note: From http://stackoverflow.com/questions/11592583/bash-progress-bar | |
# Functions | |
PUT(){ echo -en "\033[${1};${2}H";} | |
DRAW(){ echo -en "\033%";echo -en "\033(0";} | |
WRITE(){ echo -en "\033(B";} | |
HIDECURSOR(){ echo -en "\033[?25l";} |
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
#! /bin/bash | |
# | |
# Script to detect vulnerable log4j to CVE-2021-44228 | |
# | |
# Autor: Gustavo Oliveira Hoyer | |
# | |
# Last update: 22/12/2021 - 08:19 | |
# | |
# Minum version required |
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
#!/bin/bash | |
# This is a Gitlab Pagination Example on Bash for the forks API endpoint. | |
# | |
# Reference for the Gitlab API`s on 10.8.7: https://gitlab.com/gitlab-org/gitlab-foss/-/blob/v10.8.7/doc/api/README.md | |
script_banner() | |
{ | |
echo "+----------------------------------------------------------------------------------+" |