This file contains hidden or 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 | |
#author : Raul Calvo Laorden ([email protected]) | |
#description : Script to get WPA-EAP Identities, EAP certs, HTTP passwords, Handshakes, DNS queries, NBTNS queries and LLMNR queries | |
#date : 2021-06-24 | |
#usage : bash pcapFilter.sh -f <pcap/folder> [options] | |
#----------------------------------------------------------------------------------------------------------- | |
red=`tput setaf 1` | |
green=`tput setaf 2` |
This file contains hidden or 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
if [ "$#" -ne 1 ]; then | |
echo "Illegal number of parameters" | |
exit 1 | |
fi | |
URL=$1 | |
DefFolder="/wp-admin/ /wp-includes/ /wp-content/ /wp-update/ /feed/ /comments/feed/" | |
DefFile="/robots.txt /sitemap.xml /wp-includes/version.php /wp-login.php?action=register /wp-includes/cache.php /wp-config.php /wp-login.php /xmlrpc.php /wp-cron.php /version.php" | |
DefFileV="/readme.html /license.txt /feed/ /comments/feed/ /wp-includes/version.php /wp-links-opml.php /feed/rdf/ /feed/atom/" |
This file contains hidden or 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 | |
#author : Raul Calvo Laorden ([email protected]) | |
#description : Script en bash utilizando transmission para obtener IPs descargando un fichero torrent | |
#date : 2018-04-30 | |
#usage : bash torrentScript.sh [options] | |
#----------------------------------------------------------------------------------------------------------- | |
trap ctrl_c INT |
This file contains hidden or 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 | |
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: Raul Calvo | |
# Required-Start: $syslog | |
# Required-Stop: $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Inicia captura automaticamente en la interfaz con mac x | |
# Description: |
This file contains hidden or 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 | |
#author : Raul Calvo Laorden ([email protected]) | |
#description : Script that downloads files with Transmission and saves all peers in a sqlite3 database. | |
#date : 2018-03-26 | |
#usage : bash torrentDaemon.sh [options] | |
#----------------------------------------------------------------------------------------------------------- | |
PCENTMAX=8 #8% max |
This file contains hidden or 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 | |
### BEGIN INIT INFO | |
# Provides: Raul Calvo Laorden | |
# Required-Start: $syslog | |
# Required-Stop: $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Script that scans the network to discover hosts and services on a computer network. | |
# Description: Script that scans the network to discover hosts and services on a computer network. |