Skip to content

Instantly share code, notes, and snippets.

View MaKyOtOx's full-sized avatar
🤹‍♂️
Focusing

Nicolas Mattiocco MaKyOtOx

🤹‍♂️
Focusing
View GitHub Profile
### 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:
@MaKyOtOx
MaKyOtOx / scanio.sh
Created November 22, 2019 16:14 — forked from haccer/scanio.sh
PoC script to mass-locate vulnerable subdomains using results from Rapid7's Project Sonar
#!/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"
version: "2"
services:
elasticsearch:
image: elasticsearch:6.8.8
environment:
- http.host=0.0.0.0
- discovery.type=single-node
ulimits:
nofile:
soft: 65536
@MaKyOtOx
MaKyOtOx / gist:cd3157e3aae5a250c2cfcfb8ff0caf63
Created October 12, 2020 14:20
Install OpenVAS (Greenbone) 20.08 on Ubuntu 20.04
## 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