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 | |
# aire.sh | |
# Este script utiliza las siguientes herramientas: | |
# macchanger, aircrack-ng | |
# | |
# sudo apt-get install macchanger aircrack-ng | |
# | |
# Su finalidad es semi-automatizar el crackeo de WEP keys (únicamente WEP, no WPA) | |
# con una poca interveción del usuario |
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/sh | |
# bash file by r00t_w33d | |
# Find my internet IP address with and without TOR routing | |
# Dependences: curl, tor (running on the 9050 port) | |
echo "Finding IP address\n" | |
IPAGE='http://www.whatismyip.com/automation/n09230945.asp' | |
echo "at -> \t $IPAGE\n\nRetriving IP..." | |
RAWIP="`curl --progress-bar $IPAGE`" | |
echo "\nRetriving IP trough TOR..." |
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 | |
# Instala el crazy emesene desde repositorios alternativos | |
# Fuente de referencia: www.pcdigital.org | |
USUARIO=`id -nu` | |
if [ "$(id -u)" == "0" ]; then | |
# verificando ke no existan los repos a agregar | |
RES=`cat /etc/apt/sources.list | grep bjfs | wc -l` | |
if [ $RES -eq 0 ]; then | |
echo "Agregando repositorios y llaves..." |
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 | |
################################################################## | |
# | |
# Script elaborado para cambiar la MAC address ^^ | |
# | |
# Dependencias: macchanger | |
# | |
# Author twitter: @r00t_w33d | |
################################################################# |
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
=begin | |
( ) /\ _ ( | |
\ | ( \ ( \.( ) _____ | |
\ \ \ ` ` ) \ ( ___ / _ \ | |
(_` \+ . x ( .\ \/ \____-----------/ (o) \_ | |
- .- \+ ; ( O \____ | |
(__ +- .( -'.- <. \_____________ ` \ / | |
(_____ ._._: <_ - <- _- _ VVVVVVV VV V\ \/ | |
. /./.+- . .- / +-- - . (--_AAAAAAA__A_/ | | |
(__ ' /x / x _/ ( \______________//_ \_______ |
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 | |
# Descripción: | |
# Script para convertir archivos de texto en | |
# archivos mp3 con voz robótica xD | |
# Uso: | |
# ./convierte.sh in.txt out.mp3 | |
# Requiere: | |
# (espeak, lame) | |
# sudo apt-get install espeak lame | |
# sudo chmod +x convierte.sh |
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 | |
# ban_ip.sh | |
# | |
# Uso (como root): | |
# ./ban_ip direccion_IP | |
# Ejemplo: | |
# ./ban_ip 200.213.34.65 | |
# Notas: Es necesario darle permisos de ejecución | |
# chmod +x ban_ip.sh |
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
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
# Copyright GNU/GPL 3.0 Fitorec <[email protected]> | |
# Modify by r00t_w33d | |
# twitterGetReplies.py | |
# ____ _ _ .--. | |
# | __ |(_) | | ___ ____ ___ ____ | o_o | | |
# | | _ | ||_ _|/ _ \ / __// _ \ / __/ | :_/ | | |
# | __ || | | || (_) || | | __/| (__ // \ \ | |
# |_| |_| | | \___/ |_| \___/ \___( (| | ) |
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 | |
#Czyta dane z pliku | |
cnd=$(cat ~/weather) | |
#Ustawia czcionkę obrazkową, odpowiadającą aktualnej pogoda. | |
if echo "$cnd" | grep -E -i -q 'partly cloudy'; then | |
echo 'c' | |
elif echo "$cnd" | grep -E -i -q 'fair|sunny'; then | |
echo 'A' |
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
# Create own window instead of using desktop (required in nautilus) | |
own_window yes | |
own_window_type override | |
own_window_transparent yes | |
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager | |
# Xft Configuration | |
use_xft yes | |
xftfont Posca Mad Thrasherz:size=9 | |
xftalpha 0.8 | |
# Otras configuraciones |
NewerOlder