Linux Flash Player 9 Beta 2

Blogged by webmilhouse as Linux — webmilhouse Wed 22 Nov 2006 7:54 am

Adobe just released their next beta of Flash Player 9 for Linux. Works great on my Ubuntu. Just download the tar.gz from the website and plop into ~/.mozilla/plugins/ .

http://labs.adobe.com/downloads/flashplayer9.html

Ubuntu 6.10 on IBM Thinkpad T42

Blogged by webmilhouse as Linux, wireless — webmilhouse Thu 9 Nov 2006 7:07 am

I have been running the new Ubuntu 6.10 for a few weeks now on my Thinkpad T42, and it is rock solid so far.

The only issues I have been having is switching the network settings through the Administration -> Networking application. It does not want to see my 802.1x wireless connection by default, so instead I had to do the following:

sudo vim /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp

auto eth1
iface eth1 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf.local

And my wpa_supplicant.conf.local file looks like this:

# WPA-PSK/TKIP
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1

#For WPA-PSK network
network={
ssid="SSID"
key_mgmt=WPA-PSK
proto=WPA
pairwise=TKIP
group=TKIP
psk="encrypted_password"  }

# For 802.1x network
network={
ssid="SSID"
proto=WPA
key_mgmt=WPA-EAP
pairwise=TKIP
group=TKIP
eap=TLS
identity="myemail@email.com"
ca_cert="/home/me/certs/myca.pem"
client_cert="/home/me/certs/my.pub"
private_key="/home/me/certs/my.pem"
private_key_passwd="mypassword"
priority=1  }

#For any network
network={
ssid=""
key_mgmt=NONE
}

Hitch-Hacker’s Guide to the Galaxy

Blogged by webmilhouse as Security — webmilhouse Mon 6 Nov 2006 8:38 am

Jay Beale, of Bastille Linux fame, has posted a skills challenge using themes from the HitchHiker’s Guide to the Galaxy on his Ethical Hacker website. It is a short story with clues to answer 5 questions at the end, with some fun basic web hacking skills along the way.
Here is the actual post detailing the challenge.  Fun!

Proudly powered by wordpress 2.7 - Theme based on Back in Black 2 by neuro, modded by me.