Review of RedFM, the newest radio station in Cork.
wehavethewayout is running a f …
wehavethewayout is running a ftp server with anon logins allowed!
$ ftp www.wehavethewayout.com
Connected to 130.94.214.143 (130.94.214.143).
220 w2k1405 Microsoft FTP Service (Version 5.0).
Name (www.wehavethewayout.com:donncha): ftp
331 Anonymous access allowed, send identity (e-mail name) as password.
Password:
230 Anonymous user logged in.
Remote system type is Windows_NT.
ftp>
Earlier, the server also had “/bin/ls” available to download although that seems to have been removed now. To echo what Kevin says, it’s amazing how badly they misconfigured that box.
Even more evil thanks to Paul Jakma!
$ vncviewer 130.94.214.143
VNC server supports protocol version 3.3 (viewer 3.3)
Password:
Reading password failed
$ mysql -h 198.63.57.204
ERROR 1045: Access denied for user: 'docaoimh@192.168.1.26' (Using password: NO)
$ mysql -u root -h 198.63.57.204
ERROR 1045: Access denied for user: 'root@192.168.1.26' (Using password: NO)
Microsoft would have you belie …
Microsoft would have you believe one thing, while the Unix crowd has other ideas.
It seems the Microsoft site is down after they switched to IIS!
I went to the dentist again, more fillings. My mouth is just about un-numbed (Is that a word?) now though.
It’s a beautiful day out. *sigh*
Proof that the moon is made of …
Proof that the moon is made of cheese! They found the “best before” date.
Working From Home – the story …
Working From Home – the story of a multi-level marketing company. Amway is, or at least was, strong in the Cork area. I had a run in with them a few years ago and got suckered in for a short while. I just pity my “mentors”, they had moved into their new home several months previously but hadn’t unpacked anything because they must have spent all their time talking to new clients.
Allegro graphics library. I us …
Allegro graphics library. I used this in a college project about 6 years ago and it’s excellent.
What a weekend! Spent it up in …
What a weekend! Spent it up in Mayo.. great weather on Friday driving up, rained on Saturday, rained on Sunday, great weather on Monday as we drove down. Still, had a great time.
Queen Mother dies. – Some of Martina’s cousins live in London and they were shocked to hear this news. More on Ananova
Why it always pays to read the complete thread of a discussion on a mailing list, but there’s always one who gets caught.
Posh Spice in the bath – She's …
Posh Spice in the bath – She’s advertising Walker’s Crisps!
How worms bypass mail filters …
How worms bypass mail filters – I got this off the Esd-l mailing list.
Coding ConventionsOr stuff I d …
Coding Conventions
Or stuff I do when programming.
This is PHP orientated but applies elsewhere too.
I like to code using classes, and the functions in those classes for the most part return true or false. If a function returns false, then an internal variable, $this->error gets the error message set by the function.
When I’m working on forms, my validation function returns true or false, but $this->error is an array indexed by form elements which allows me to define a per-element error message that my printForm() function can use.
On the same subject, I populate a single array with form elements which makes it easier to walk through those elements.
