Fun with .htaccess
This site is probably the most useful reference I’ve seen that discusses what you can do with .htaccess.
Fun with .htaccess Read More »
This site is probably the most useful reference I’ve seen that discusses what you can do with .htaccess.
Fun with .htaccess Read More »
If you’ve followed my other entries about Remote Desktop, you’ll note that one of the ways to connect to a remote system requires you to connect to to the SSH client running on your local machine by specififying an IP of 127.0.0.2. SP2 shuts this down. Well, it looks like Microsoft has rethought this and has issued this hotfix (MSKB article 884020) to address it.
There’s some other, somewhat related information in MSKB article 817293, too.
XP SP2 shuts down loopback on other than 127.0.0.1 Read More »
Microsoft has put up this KnowledgeBase article (842242) to help with some of the problems caused by SP2. It’s title is “Some programs seem to stop working after you install Windows XP Service Pack 2”.
SP2 help from Microsoft Read More »
RSSCalendar.com let’s you put your calendar online, retrievable with RSS. Good concept. Looks like it’s an early implementation, though, cause there’s no way to import a calendar and, let’s face it, who’s wants to reenter all those dates? Free sign-up.
Your calendar via RSS Read More »
Take Mailfrontier’s Phishing Quiz and see if you can outsmart them. I only got 80% on the first test.
Think you can outsmart phishing scams? Read More »
Quoting from Dan Gillmor’s Journal this morning:
“According to Pete Seeger, in this account (widely acknowledged in the folk world to be true) from the Museum of Musical Instruments, when Guthrie was singing on the radio in Los Angeles during the Depression, he’d mail mimeographed songs to listeners, and wrote on one:
“This song is Copyrighted in U.S., under Seal of Copyright # 154085, for a period of 28 years, and anybody caught singin
Off-topic: Music copyrights Read More »
Will this saga never end? Continuing with this entry from May 21, I’ve been playing with and trying various ways to tunnel Remote Desktop over SSH. There are lots of useless entries out there on the web, mostly discussing ways to force your Windows XP machine to accept Remote Desktop connections requests to localhost or 127.0.0.1 when, in fact, all you have to do is connect to 127.0.0.2 … or .3 … or .4. That’s right, folks, 127.x.y.z are ALL local connections. And let’s not debate whether that’s a correct implementation or not, that’s just the way it is. We can take advantage of this IF we can get our local SSH client to listen on one of those IP addresses. The stock, standard OpenSSH implementation of the SSH client won’t do it so you’ve gotta pick something else. PuTTY will do it as will plink from that same free distribution. So, what you need to do is set up a PuTTY configuration to forward 127.0.0.2:3389 to 127.0.0.1:3389 (remember, the remote IP address is relative to the machine that’s your SSH target).
That’s the 2 machine case (SSH directly to the machine whose desktop you want to control). There’s also a 3 machine case where you SSH into a landing pad that has access to the machine whose desktop you want to control. I’ll deal with that later.
So, in summary, you need to run an SSH client that will allow you to listen on an IP address that’s not 127.0.0.1. PuTTY and plink are two clients that will work — the OpenSSH implementation of SSH will not work. You need to forward port 3389 (3390 if your local machine is running the Remote Desktop server) to port 3389 of the remote machine. Once you’ve established your SSH connection, bring up the Remote Desktop client and connect to 127.0.0.2 (or 127.0.0.2:3390 if your local machine is running the Remote Desktop server) and you are up and running!
More on tunneling Remote Desktop over SSH Read More »
Google bought Picasa a little while ago. Now you cna download Picasa V1.6 for free from them here.
Picasa V1.6 is free from Google Read More »
eWeek reports in this article of a security exposure in Mozilla’s Mozilla, Firefox, and Thunderbird clients wherein a malicious user can cause arbitrary code execution by using the shell: protocol. You can download Mozilla 1.7.1, Firefox 0.9.2, and Thunderbird 0.7.2.
Mozilla/Firebird/Thunderbird Security exposure Read More »
X11 forwarding is a powerful and helpful feature of SSH but, as pointed out in this article from Hacking Linux Exposed, it can be dangerous if you’re not careful. It’s no great secret — pay attention to your file and directory permissions!
The Hazards of X11 Forwarding Read More »