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
### Keybase proof | |
I hereby claim: | |
* I am makyotox on github. | |
* I am makyotox (https://keybase.io/makyotox) on keybase. | |
* I have a public key ASCAEs11ChEnEa7pV4OCWz4x3pfdyKvTN5NQY3V20aHDPQo | |
To claim this, I am signing this object: |
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 | |
# Usage : ./scanio.sh <save file> | |
# Example: ./scanio.sh cname_list.txt | |
# Premium | |
function ech() { | |
spinner=( "|" "/" "-" "\\" ) | |
while true; do | |
for i in ${spinner[@]}; do | |
echo -ne "\r[$i] $1" |
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
version: "2" | |
services: | |
elasticsearch: | |
image: elasticsearch:6.8.8 | |
environment: | |
- http.host=0.0.0.0 | |
- discovery.type=single-node | |
ulimits: | |
nofile: | |
soft: 65536 |
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
## Installation script for OpenVAS/Greenbone 20.08 on Ubuntu 20.08 | |
## Tested for PatrowlEngines | |
## See https://patrowl.io | |
## Based on: | |
# https://kifarunix.com/install-and-setup-gvm-11-on-ubuntu-20-04/#create-gvm-service-unit-file | |
# https://github.com/yu210148/gvm_install/blob/master/install_gvm.sh | |
apt-get update && apt-get upgrade | |
useradd -r -d /opt/gvm -c "GVM User" -s /bin/bash gvm | |
mkdir /opt/gvm |