Archive for September, 2005

BlogChalk (!?)

Dug up from about c.2002
BlogChalking allows you to search for local blogs based on localized meta information in your template.

META:

<meta name=”blogchalk” content=”English, Australia, Victoria, Melbourne, ElthamMob , Male, 20-50!” />

<meta name=”blogchalk” content=”Language, Country, State, Location, Name, Sex, Age!” />

INLINE:
Google! DayPop! This is my blogchalk: English, Australia, Victoria, Melbourne, ElthamMob, Male, 20-50!
(Note obligatory exclamation points.)

modernised to:
My Blogchalk: English, Australia, Victoria, Melbourne, ElthamMob, Male, 20-50, Old Time Radio, Scouting, Outdoors

 

Next we have location tags: To tag a single webpage with the location S 37°43.666 E 145°8.582′E include the following HTML in the head portion of the page. [1]

<meta name=”ICBM” content=”-37.72777, 145.14304″ />
<meta name=”geo.position” content=”-37.72777;145.14304″ />
<meta name=”geo.placename” content=”Eltham, VIC, AU” />
<meta name=”geo.region” content=”AU” />

While you are at it you can add an RFC-1876 location entry to your DNS;

example.com. LOC 37 43 39.978 S 145 8 34.929 E 52m

[1] mapper.ofdoom.com
[2] Geographic registration of HTML documents
[2] http://geotags.com/geo/ – Geo Tags for HTML Resource Discovery

I ask you, have you ever known what it is to be an orphan?

Stop! I think I see where we are getting confused.
When you said “orphan”, did you mean “orphan”,a person
who has lost his parents, or “often”, frequently?

The Major General,
The Pirates of Penzance [1]

The Major General

AGRA has managed to collect a fair amount of stranded *choss* during its life as the sniffer box, and it is time to see if I can clean it up. The package manager apt-get is pretty handy but doesn’t cover all of the bases … I need to kill off the orphans.

 

Deborphan:
deborphan finds packages installed on your Debian/GNU system that have no other packages depending on them. Its primary goal (and default action) is to trace unused libraries. A dialog frontend, orphaner, is included in the package for easy removal of packages. [2]Author: Peter Palfrader (Weasel)

Ok, this is pretty cool, how do we use it?

Removing unnecessary packages with deborphan
Posted by Steve in the Packages section on Thu 5 May 2005 at 17:42 [3]

Over time most Debian installations acquire packages which are no longer required - they’ve just been pulled in to satisfy dependencies of software you’ve since removed. Whilst there are many ways to fix this, the deborphan package is probably the simplest.

deborphan looks for orphaned packages, that is packages which are not required by any other package upon your system.

For example, if you install the game late as follows you’ll see that you’ve pulled in a new package late-data:

 

 root@debian-box:~# apt-get install late

 Reading Package Lists... Done

 Building Dependency Tree... Done

 The following extra packages will be installed:

   late-data

 The following NEW packages will be installed:

   late late-data

 

If you later decide to remove the late package you could do that easily :

 

 dpkg --purge late

 

But you’ve left the late-data package upon your system, redundent and orphaned. You could manually remove this, but what about other similar packages you might have lying around, getting needlessly upgraded and wasting disk space?

Enter deborphan. Install it:

 

 root@debian-box:~# apt-get install deborphan

 

Once installed simply run it to display a list of the packages it thinks you don’t need upon your system:

 

 usr@debian-box:~$ deborphan

 libsdl-image1.2

 

(Note that you don’t need root privileges to use this tool, it merely reads the installed package lists – it won’t remove any packages itself, merely tell you what it thinks you should remove).

As we can see it’s decided that the libsdl-image1.2 package isn’t required, because no currently installed package depends upon its presence.

There are some other options you can give to the command, which increase it’s ability to spot things. These are the “–guess-foo” options. By default it will only list packages which are in the libraries section of the Debian archive, as these are the most likely candidates for removal.

In addition to showing removable library packages it allows you to display potentially orphaned data packages:

 

 usr@debian-box:~$ deborphan --guess-data

 late-data

 

The manpage shows this option as well as other “guessing” options, and you can read it by invoking:

 

 man deborphan

 

If you wish to see all the packages which aren’t required you could run:

 

 usr@debian-box:~$ deborphan --guess-all

 libxpm-dev

 libxp-dev

 xprt-xprintorg

 libxrandr-dev

 libxtst-dev

 pm-dev

 late-data

 libjpeg-progs

 libxmuu-dev

 libxtrap-dev

 libhtml-parser-perl

 libxmu-dev

 

Most of the packages it reports are development packages, not required per se, but required if you wish to build things from source and link against package libraries.

As with most common jobs in Debian there are alternative methods of cleaning up your system, such as the cruft package.

Additionally some of the package managers such as aptitude and dselect allow you to handle orphaned packages – but I’ve always thought deborphan was a very underated tool!

There are a few things that will be identified that are not safe to delete eg. shellutils & textutils; you can allow for these exceptions;

 	apt-get remove $(deborphan |grep -v shellutils |grep -v textutils)

You can also ad them to Deborphan’s “white list”

 	deborphan -A shellutils

A faster method if you have a white list;

 	deborphan | xargs apt-get --purge remove -y

It is probably worthwhile fixing any dependancies at the same time;

 	apt-get install -f
agra:~# apt-get remove $(deborphan |grep -v shellutils |grep -v textutils)

Reading Package Lists... Done

Building Dependency Tree... Done

The following packages will be REMOVED:

  lesstif1 libaiksaurusgtk0c102 libcapplet0 libcapplet1 libcroco2 libdb4.0

  libdevmapper1.00 libdns11 libexif9 libgal19 libgc1 libgdbmg1 libghttp1

  libgimp1.2 libgnome-vfs0 libgnutls10 libgnutls5 libgnutls7 libgssapi1-heimdal

  libgtkhtml20 libgtkxmhtml1 libgtop1 libgucharmap3 libgucharmap4 libhowl0

  libident libidn9 libkeynote0 libmagick5.5.7 libmimelib1 libmm13 libmpeg1

  libmysqlclient10 libnspr4 libnss3 libots0 libpam-cracklib libpanel-applet0

  libpcap0 libpisock4 libpsiconv5 libqt2 libraw1394-5 libsasl7 libslp1

  libssl0.9.6 libwmf0.2-2 libwpd4 libwraster2 libwv2-1 libxslt1 libzvt2

  libzvt2.0-0 xlibmesa3

0 upgraded, 0 newly installed, 54 to remove and 0 not upgraded.

Need to get 0B of archives.

After unpacking 37.8MB disk space will be freed.

Do you want to continue? [Y/n]

agra:~#

...

{several itterations}

...

agra:~# apt-get install -f

Reading Package Lists... Done

Building Dependency Tree... Done

0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

agra:~# deborphan

agra:~#

Much better :)

I ask you, have you ever known what it is to be an orphan?

- The Major General,The Pirates of Penzance [1]

[1] The Pirates of Penzance: Vocal Score by W. S. Gilbert, Arthur Sir Sullivan
[2] http://freshmeat.net/projects/deborphan/ [freshmeat]
[3] http://www.debian-administration.org/articles/134 [debian-administration.org]

Satellite phone traffic jumped 3,000% during the Katrina response …

Something to be considered in a DISPLAN is the destruction of the landbased telecom’s network. Celluar phones rely on the cell stations, the cells rely on power and at least to some extent the wired telecom network.

Calls by military and emergency workers caused satellite phone traffic to spike to 3,000 percent of usual levels after Katrina … To get more airwave frequency to accommodate that volume, Iridium had to get approval from the FCC and other similar agencies around the world.
- Greg Ewert, Iridium Satellite LLC. [1]

 Crisis Communications Network Criticized
September 23, 2005 [Washington Post]

Federal Communications Commission (FCC) Chairman Kevin J. Martin has called for a mobile and wireless communications system to allow first responders to coordinate in an emergency, blaming mismanagement of the Hurricane Katrina response on the lack of such a system. The next generation of emergency response should use satellites, since disasters can destroy the ground-based communications infrastructure. Satellite phone traffic jumped 3,000% during the Katrina response, requiring satellite companies to obtain emergency frequency allocations from various countries. Many lawmakers in Congress are calling for radio spectrum currently used for television to be transfered to first responders; the transfer was authorized around 1995, but television broadcasts have not yet released it. Martin has called for “smart radios” that can work on multiple emergency networks as needed. Many local agencies invest in their own communications systems and are unwilling to cede control to other agencies. [2]

Hurricane Katrina has revived calls in Congress to set a date for police, fire departments and emergency medical services to take over radio frequencies set aside for them nearly a decade ago but still used by television broadcasters. The 9/11 Commission Report, which documented in painful detail the inability of police and firefighters to communicate with one another as they tried to save people in the World Trade Center, cited freeing those frequencies as one of its key recommendations. [1]

[1] Crisis Communications Network Criticized [Washington Post]
[2] Crisis Communications Network Criticized [ISTS - IRIA - Security in the news] 27-Sep-2005

 

Not so OTR

Anagramatically yours …

A REBORN NERDS TOR
When a Scottish Geek’s mountain lives again?

[1] http://www.wordsmith.org/anagram/

ED01 MUWIRELESS

After being placed ‘on-hold’ since the end of last year to wait for some quiet time, we have finally been able to cut-over the old ED01 and ED02 WLANs on MUWIRELESS ! What is very funny, is that this only took about 2 elapsed days to get done one the cutover was actually put on the table … the problem with both ed-IT and InfoDiv being time poor due to other demands :(

MUWIRELESS

MUWireless now available at the Doug McDonell Building

Date: Sun, 25 Sep 2005 15:59:49 +1000
From: Josef Oduwo
Subject: MUWireless now available at the Doug McDonell Building

We are pleased to inform you that the University’s wireless service, MUWireless, is now available for use within the Doug McDonell building and its environs. More information on using MUWireless is available here: http://www.infodiv.unimelb.edu.au/wireless/.

Security on wireless networks remains an important issue – the Information Division’s recommendation is that the wireless network should not be used to access sensitive systems without using the University’s Virtual Private Network (VPN) Service. ed-IT’s own recommendation is to always use the VPN service whilst using MUWireless. Please refer to the University’s VPN help pages (http://www.infodiv.unimelb.edu.au/vpn/) for further information.

Please contact your LITE if you are a staff member and you need help in using this service. Alternatively, call the ed-IT helpdesk on x48376 or log a ReTS job at https://intranet.edfac.unimelb.edu.au/cgi-bin/rets/main.cgi.

Regards,
Josef Oduwo

[1] http://www.infodiv.unimelb.edu.au/wireless/ [MUWIRELESS]

Handbook for bloggers and cyber-dissidents

Blog guide to bypass censors
Timothy Heritage in Paris
SEPTEMBER 23, 2005 [Australian IT]

A PARIS-BASED media watchdog has released a handbook to help cyber-dissidents and bloggers avoid political censorship.

The guide, published by Reporters Without Borders (Reporters Sans Frontieres, or RSF) with the backing of the French government, identifies bloggers as the “new heralds of free expression” and offers advice on how to set up a blog and run it anonymously.

“Bloggers are often the only real journalists in countries where the mainstream media is censored or under pressure,” RSF Internet Freedom Desk Julien Pain said.

“Only they provide independent news, at the risk of displeasing the government and sometimes courting arrest.”

The “Handbook for Bloggers and Cyber-Dissidents” can be downloaded from the RSF website in English, French, Chinese, Arabic and Farsi.

The guide is based on technical advice from experienced bloggers and experts, and provides personal accounts by bloggers such as Arash Sigarchi, who received a 14-year-jail sentence in Iran last February but is free pending an appeal.  …

The Handbook for bloggers and cyber-dissidents

The Handbook for bloggers and cyber-dissidents

[1] http://www.rsf.org/ [RSF]

Australia’s favourite film

The ABC Movie Show is surveying for Australia’s favourite film. The results will be announced a television special “My Favourite Film” to be presented by ABC TV’s At The Movies host Margaret Pomeranz. “My Favourite Film” will count down Top 10 films as voted by Australia.

Australia’s favourite film. [ABC]

We’ve all got one – I’m not talking about phobias but favourite flicks. It might be a well-known classic or slightly obscure, a thriller or a weepy love story. Well now’s the time to vote for it as the ABC launches its search for Australia’s favourite film.

This presents the challenge … ‘what are your favourite films?’. So I’ll attempt a top 10 20 listing that will probably swap around quite a bit ;)

  1. Lord of the Rings: Fellowship of the Ring (2001)
  2. Hudson Hawk (1991)
  3. Thunderball [James Bond] (1965)
  4. Monty Python: Life of Brian (1979)
  5. Crouching Tiger, Hidden Dragon (2000)
  6. The Good, The Bad and The Ugly (1967)
  7. Indiana Jones and the Temple of Doom (1984)
  8. Baraka (1992)
  9. The Princess Bride (1987) “You killed my father. Prepare to die”
  10. The Guns of Navarone (1961)
  11. Highway to Hell (1992) so bad, it’s good
  12. Mars Attacks (1996)
  13. Ferris Bueller’s Day Off (1986) Save Ferris!
  14. The Magnificent Seven (1960)
  15. A Fist Full of Dollars (1964)
  16. The Matrix (1999)
  17. Pulp Fiction (1994)
  18. Mad Max (1979)
  19. The Fifth Element (1997)
  20. Willow (1988)

[1] Australia’s favourite film [ABC]
[2] All time 100 movies [Time Magazine]
[3] All time 100 movies: Complete List [Time Magazine]
[4] Wind tops successful movie list [BBC]
[5] Top Movie Lists [ABC]

Agent 008

I think that ‘Follow the Bouncing Malware’ is becoming my favourite SANS topic; with gems like the following, how can you resist :)

Follow the Bouncing Malware IX: eGOLDFINGER
SANS Handler’s Diary – September 21st 2005

And why not? All women want me, for I am Sixpack… Joe Sixpack, Agent 008.

[Insert long, surreal opening credit sequence, with scantily clad models prancing about to '60s music, while seductively caressing handguns.]

[Nope... nothin' Freudian about that...]

Note: Never, ever, ever ,ever, do this on a “live” production machine. Only ever play with malware on an isolated lab machine that you’re ready, willing, and able to reformat at the drop of a hat. Remember: if you mess up, I’ll send sharks with frickin’ laser beams on their heads over to get you. *

* Austin Powers quote :: Dr. Evil: You know, I have one simple request. And that is to have sharks with frickin’ laser beams attached to their heads! Now evidently my cycloptic colleague informs me that that cannot be done. Ah, would you remind me what I pay you people for, honestly? Throw me a bone here! What do we have?

Spooks and Secrets

Time to lift the cloak off
Sushi Das   [The AGE]

… Right now ASIO and the Federal Police can raid anyone’s home at any time and drag them away against their will, interrogate them, strip-search them and hold them for as long as they can get repeated warrants. The detained person has no right to know why he or she is being questioned. Under the Government’s new proposals, measures are more draconian.

Politicians have allowed these changes because too many people have been complacent. It seems most Australians have accepted the erosion of their civil liberties. When there is inertia of thought among the people, freedom faces its greatest menace.

As long ago as 1852, orator and columnist Wendell Phillips said: “Eternal vigilance is the price of liberty.” How vigilant are Australians? How much do they care about their liberty?

Eternal vigilance is the price of liberty  - Wendell Phillips (1852)

Next Page »


 

September 2005
M T W T F S S
« Aug   Oct »
 1234
567891011
12131415161718
19202122232425
2627282930  

Categories

del.icio.us

Flickr Photos

Kookaburra

KLDC Exterior views

KLDC Exterior views

KLDC Exterior views

Layout B1

More Photos

Twittering

Cluster Map