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 | |
BLUE='\033[0;36m' | |
RED='\033[0;31m' | |
PURPLE='\033[0;35m' | |
NC='\033[0m' # No Color | |
echo -e "${BLUE}Let's install radare. Please execute the configuration script before. For more information please visit https://www.radare.org/r/down.html${NC}" | |
echo -e "${BLUE}Getting the tar file${NC}" | |
wget https://github.com/radare/radare2/archive/3.2.1.tar.gz |
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 | |
BLUE='\033[0;36m' | |
RED='\033[0;31m' | |
PURPLE='\033[0;35m' | |
NC='\033[0m' # No Color | |
echo -e "${BLUE}Let's install suricata. Please execute the configuration script before.${NC}" | |
echo -e "${BLUE}Installing dependencies...${NC}" | |
sudo apt-get install wget build-essential libpcre3-dev libpcre3-dbg automake autoconf libtool libpcap-dev libnet1-dev libyaml-dev zlib1g-dev libcap-ng-dev libjansson-dev |
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 | |
BLUE='\033[0;36m' | |
RED='\033[0;31m' | |
PURPLE='\033[0;35m' | |
NC='\033[0m' # No Color | |
FILE="/tmp/out.$$" | |
GREP="/bin/grep" |
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 | |
BLUE='\033[0;36m' | |
RED='\033[0;31m' | |
NC='\033[0m' # No Color | |
#based in OWASP wiki | |
if [[ -z "$1" || -z "$2" ]]; then | |
echo "./tls.sh host directory" |
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
PAGE 62,132 | |
TITLE _HLV_ | |
SUBTTL Layout (C) 1990 164A12565AA18213165556D3125C4B962712 | |
.RADIX 16 | |
.LALL | |
TRUE EQU 1 | |
FALSE EQU 0 | |
MONTH EQU 9D |
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 | |
L1="'This brief, my lord." | |
L2="Nor I, my lord, in faith." | |
L21="We have sworn, my lord, already." | |
L3="I hear him coming: let's withdraw, my lord." | |
L4="Wilt please you go, my lord?" | |
L5="What, my lord?" | |
LINE="." | |
exit1="exit" |
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 | |
#by @terceranexus6 | |
#this is a haiku writer | |
read -p"write firt line: " LINEA1 | |
read -p"write second line: " LINEA2 | |
read -p"write third line: " LINEA3 | |
read -p"name of the haiku (add .txt): " NOMBRE | |
touch $NOMBRE |