Showing posts with label Mac. Show all posts
Showing posts with label Mac. Show all posts

Friday, December 29, 2006

Sniffing On Ethernet Undetected

All you need is a MAC and a dev and you can sniff without sending packets.

So I have been in some tight spots where I had to sniff a password or two off the wire, or sniff some packets off the wire undetected and based on the packets content do something.

So I tried a few things and this is what worked..

Learn more..

Sunday, November 19, 2006

Apple - Japanese Mac Ads

No comments...





Tuesday, November 14, 2006

Change your mac address!

Came here searching for changing your machine address ? What are you upto? Naughty Boy!

It's fairly simple though - Use a program called macchanger on Linux

On Ubuntu,

sudo apt-get install macchanger

You are ready!

Write a simple script like this

# --- Script Starts ---
#!/bin/bash
/etc/init.d/network stop
macchanger --mac=$1 eth0
/etc/init.d/network start
# --- Script Ends ---

After giving your script the execute permission, invoke your shellscript using

./script_name your_mac_address

Saturday, October 14, 2006

Install Mac & Win Fonts on Ubuntu

Installing TrueType fonts is very easy on Ubuntu. On your desktop or in a file-browser window, just type Ctrl-L to access the Open Location window; then type fonts:/// and click Open. You will then see a list of all the fonts you currently have access to on your system. Drag your new TrueType font from your desktop or file manager into the font-list window, and it will be automatically installed and made available to applications through Defoma the next time they start up.

It's actually not quite that simple if the fonts come from a Macintosh system, because Mac OS embeds extra font information using a special format that Linux can't read directly. Before you drag Mac OS fonts into your fonts:/// folder, you need to convert them with a utility called fondu, which you can install with the following command:

sudo apt-get install fondu

Then copy your Mac OS font directory to your Linux machine and run:

fondu *

Source: Ubuntu Hacks