Crack / Hack a WIFI Using an IPhone / Ipod Touch

This video shows Aircrack running on an iPod Touch/iPhone.

Getting the actual network data capture to the iPhone / iPod is not shown and thereby the capture of the needed IVs isn’t possible, but according to the author of the video, capturing of IVs will be available soon. The video thereby just shows that it is possible to crack the WEP IVs with an iPod Touch or iPhone using pre-captured IVs. It will the interesting to see the next step ;-)

Related posts:

  1. Review: HTC Touch Cruise and HTC Polaris 100
  2. Crack Cisco VPN (hack)
  3. Howto crack (or hack) a wireless network with Wired Equivalent Privacy (WEP)
  4. Hack Wireless WPA Network
  5. Hack Wireless WEP Network
  6. Howto Hack a Wireless WEP Network
  7. iPhone Background Package
  8. Nokia iPhone theme
  9. Nokia iPhone skin
  10. How To Insert SIM Card In iPhone

Comments

Brother Printer Drivers and Ubuntu Linux 64 Bit

Ubuntu is born with packages for Brother printers.

The following packages is available:

brother-cups-wrapper-ac - Cups Wrapper drivers for ac brother printers
brother-cups-wrapper-bh7 - Cups Wrapper drivers for bh7 brother printers
brother-cups-wrapper-common - Common files for Brother cups wrapper packages
brother-cups-wrapper-extra - Cups Wrapper drivers for extra brother printers
brother-cups-wrapper-laser - Cups Wrapper drivers for laser brother printers
brother-cups-wrapper-laser1 - Cups Wrapper drivers for laser1 brother printers
brother-cups-wrapper-mfc9420cn - Cups Wrapper drivers for mfc9420cn brother printers
brother-lpr-drivers-ac  - LPR drivers for ac brother printers
brother-lpr-drivers-bh7 - LPR drivers for bh7 brother printers
brother-lpr-drivers-common - Common files for brother-lpr-drivers packages
brother-lpr-drivers-extra - LPR drivers for extra brother printers
brother-lpr-drivers-laser - LPR drivers for laser brother printers
brother-lpr-drivers-laser1 - LPR drivers for laser1 brother printers
brother-lpr-drivers-mfc9420cn- LPR driver for mfc9420cn brother printer

brother-cups-wrapper contains the 5 existing cups wrapper from Brother, under a PLG License.

brother-lpr-drivers contains all the LPR drivers, distributed under the Brother Software Open License Agreement

The -extra package contains all drivers that does not have a opensource tarballs. These drivers use the same binary cups wrapper as bh7 package.

The -common package contains shared files between various packages. -common only prevent conflicts for bh7/extra packages files and laser/laser1.

Related posts:

  1. Brother HL-1430 Printer Driver Download
  2. Brother HL-1430 Printer Toner Cartridge Guide
  3. /dev/hello_world: A Simple Introduction to Device Drivers under Linux
  4. dos2unix on Ubuntu and Debian
  5. Ubuntu: Print to PDF or PDF Export
  6. Ubuntu Howto: Install Oracle
  7. Block referer spam easily
  8. Intel Open Source Graphics Drivers
  9. Howto duplicate a debian setup
  10. Howto install Sun Java on Debian Sarge

Comments

Generate random MAC address for e.g. Xen guests

The following tiny python script can be used to generates a MAC address for different purposes e.g. Xen guest.

#! /usr/bin/python
# macgen.py script generates a MAC address for Xen guests
#
import random
mac = [ 0x00, 0x16, 0x3e,
random.randint(0x00, 0x7f),
random.randint(0x00, 0xff),
random.randint(0x00, 0xff) ]
print ':'.join(map(lambda x: "%02x" % x, mac))

Related posts:

  1. Howto Access via ssh a Virtualbox Guest machine
  2. Automatic Generate JUnit Tests
  3. Credit Card Number Generator
  4. Wordpress plugins
  5. Troubleshooting CGI premature end of script headers on Plesk
  6. Floating Windmills in the North Sea to Generate Sustainable Electricity
  7. Howto Create Generate a Certificate Signing Request
  8. Eclipse IDE
  9. Ubuntu Howto: Install Xen

Comments

How to mount bin / cue image files in Linux

Mounting iso-files in Linux is quite straight forward and simple e.g. using the mounter function in Ubuntu straight from the context menu or by using a command line like this: mount -o loop image.iso /mnt.

Anyway mounting bin/cue image files is not that straight forward as they’ll need conversion to iso before mounting, however the process is quite simple, but it need a small application called bchunk. The bchunk package contains a UNIX/C rewrite of the BinChunker program. BinChunker converts a CD image in a .bin/.cue format (sometimes .raw/.cue) into a set of .iso and .cdr/.wav tracks. The .bin/.cue format is used by some non-UNIX CD-writing software (read crap windows software), but is not supported on most other CD-writing programs.

$ sudo aptitude install bchunk

In order to convert a bin/cue image set:

$ bchunk image.bin image.cue image.iso

Then to mount the iso image using this command:
mount -o loop image.iso /mnt

Related posts:

  1. Migrate existing Ext3 filesystems to Ext4
  2. How to Mount a Remote Filesystem Using SSH and sshfs
  3. Howto: Resize Xen Loop Disk Image
  4. Linux I/O Redirection
  5. What is the coolest thing you can do using Linux that you can’t do with Windows or on a Mac?
  6. Linux Howto: Find the most recently changed files (recursively)
  7. Monitor Configuration Files
  8. Rethinking the GUI (Graphical User Interface) and the CLI (Command Line Interface)
  9. dos2unix on Ubuntu and Debian
  10. /dev/hello_world: A Simple Introduction to Device Drivers under Linux

Comments (1)

iTunes on Linux (Ubuntu)

iTunes 9

I bought the new iPhone 3GS and in order to use the phone I needed to actually activate the phone using Apple iTunes. Nomally iTunes and Ubuntu is a no-go, however using the latest wine from the Ubuntu it is possible out of the box – I’ really impressed of the wine project.

What you need

Check that you got the at least the following wine version:

$ dpkg -l | grep wine | awk '{ print $2, " ",$3}'
wine             1.1.29~winehq0~ubuntu~9.04-0ubuntu2
wine-gecko    1.0.0-0ubuntu1

If not, then install wine:

$ sudo aptitude install wine wine-gecko

Then download iTunes 8.x (important to download version 8.x otherwise it doesn’t work out of the box)

$ wget wget http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes8/061-6717.20090715.XsE4R/iTunesSetup.exe

Then just run the install process
$ wine iTunesSetup.exe

And finally start iTunes.

Related posts:

  1. Ubuntu Howto: Install Oracle
  2. Howto: Office 2007 on Linux with Wine
  3. Ubuntu Howto: Install Sun Java
  4. Howto use WEP encryption with Ubuntu Linux
  5. Safari on Linux
  6. Ubuntu and Ruby
  7. Ubuntu Howto: Install Ruby and Ruby on Rails
  8. Ubuntu Netboot and Netinstall with PXE
  9. Howto Install Oracle on Debian
  10. Ubuntu Howto: Install Xen

Comments (17)

Track file downloads and outgoing links with Google Analytics

Using this Google Analytics Extender Javascript you can easily track file downloads and outgoing links with Google Analytics.

/*
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

	// cross-browser implementation of add event listener
	function addListener(element, type, expression)
	{
		if (window.addEventListener)
		{
			// W3C standard
			element.addEventListener(type, expression, false);
			return true;
		}
		else if (window.attachEvent)
		{
			// MS IE way
			element.attachEvent("on" + type, expression);
			return true;
		}
		else
		{
			return false;
		}
	}

	// cross-compatible GA tracker
	function trackEvent(descriptor)
	{
		try
		{
			// newer GA versions
			if (typeof pageTracker != "undefined")
			{
				pageTracker._trackPageview(descriptor);
			}
			// old urchin versions
			else if (typeof urchinTracker != "undefined")
			{
				urchinTracker(descriptor);
			}
		}
		catch (exception)
		{
			// alert('Exception: ' + exception);
		}
	}

	// parses any event fired
	function parseEvent(evt)
	{
		// cross-browser code to get the element related to the event
		var e = window.event ? evt.srcElement : evt.target;

		// the element is a traditional a-href link
		if (e.nodeName == "A")
		{
			// external links  - href should not point at the same hostname
			if (typeof e.href != "undefined" && e.href.indexOf(location.host) == -1)
			{
				// replace all non-alphanumeric characters and combine to a string
				var url = e.href.replace(/[^0-9|a-z|A-Z]/g, "_");
				var str = "/outgoing/-" + url;
				trackEvent(str);
			}

			// file downloads - href contains a known download file extension
			if (typeof e.href != "undefined" && e.href.match(/\.(doc|pdf|xls|ppt|zip|txt|vsd|vxd|js|css|rar|exe|wma|mov|avi|wmv|mp3)$/))
			{
				// replace all non-alphanumeric characters and combine to a string
				var url = e.href.replace(/[^0-9|a-z|A-Z]/g, "_");
				var str = "/download/-" + url;
				trackEvent(str);
			}
		}
		// track if it is an button event
		else if (e.type == "button" )
		{
				// replace all non-alphanumeric characters and combine to a string
				var name = e.name.replace(/[^0-9|a-z|A-Z]/g, "_");
				var value = e.value.replace(/[^0-9|a-z|A-Z]/g, "_");
				var str = "/event/-" + name + "-" + value;
				trackEvent(str);
		}
	}

	// add a single click listener to the document
	addListener(document, "click", parseEvent);

Download the code here.

Related posts:

  1. Convert Hex Color to RGB
  2. Google Gives Away Web App Security Tool
  3. array2object and object2array (PHP)
  4. PHP Professional Tip #1 – Type Hinting
  5. Numeric Array Sort in Javascript
  6. How To Autorun Programs From USB Flash Disk Drive
  7. Windows Vista and Symbolic Links
  8. Bash Shell: Object Oriented
  9. Dalvik: How Google routed around Sun’s IP-based licensing restrictions on Java ME
  10. First benchmarks of the ext4 file system

Comments (2)

How To Insert SIM Card In iPhone

Comments (1)

Garmin Mobile XT 5 on Nokia N95

Transform your GPS smartphone into the complete mobile travel toolkit with Garmin Mobile XT. Simply plug the data card into your compatible phone for spoken turn-by-turn directions to points of interest, phone book contacts, location-tagged photographs and Google Local destinations with the latest maps for Europe.

There is torrents floating around on the net, which enables you to download the software needed.

Look for torrents containing: (Google search)
- Garmin Mobile XT 5 for Symbian 3rd edition devices
- Europe Map 2010.1 v13.10 (Map ID : 449)

Garmin Mobile XT 5 for Symbian 3rd edition devices is reported to work on a Nokia N95.

Related posts:

  1. Garmin Mobile XT on N5800 – Europe Map 2010.1
  2. Tap, Bug and Spy on a Mobile Phone – Nokia, Samsung, LG, Blackberry
  3. TomTom Navigator Symbian S60 – Nokia N95, E66, E71 and others
  4. How to reset a Nokia
  5. Nokia E50 and Microsoft Outlook Sync
  6. Google Talk on my mobile phone
  7. How to get FC5 on everyone’s mouth
  8. Google Maps for mobile with My Location (GSM Positioning)
  9. Nokia iPhone skin
  10. Nokia iPhone theme

Comments

« Previous entries Next Page » Next Page »