Geekamongus - A Tech Blog for You

  • About
  • Contact

RTFM

Posted by willc on November 20, 2009
Posted in: Geeky Greats. Leave a Comment

  • Share this:
  • Facebook

Credit Cards: Fees, Minimum Amounts, and Your Rights

Posted by willc on November 5, 2009
Posted in: Practical Security, Security. Leave a Comment

credit-cardsAfter eating lunch at a local restaurant yesterday, I noticed that when I was signing my receipt they had printed my whole credit card number on there. I hadn’t seen that happen in years, and I immediately scratched it out. I happened to be with a group of cyber security guys, and they were all in disbelief as well.

It would be very easy for a thief to pick up your receipt just after you leave, then go home and have an online shopping spree. The server or anyone else handling your receipt could do the same thing. Continue Reading

  • Share this:
  • Facebook

Best Buy Officially Sucks

Posted by will on October 26, 2009
Posted in: News. Leave a Comment

A lawsuit has been filed against Best Buy for price match fraud. You know how they tout on their commercials that if you find a better deal somewhere else, they will match the price? Well, I guess that doesn’t count their own web site.

The Consumerist reports the details of the lawsuit and how the shenanigans occur:

1. You walk into a Best Buy to purchase a sale item you saw on their site.

2. The employee tells you that the item is no longer on sale, and shows you what looks to be Best Buy’s website, but it’s really a secret intranet that Best Buy’s corporate office denies exists. The price on the website shows that the sale is over.

3. You cry and leave, then at home you see that the sale isn’t over at all. What happened?

I have acquired a growing distaste for Best Buy and will only go there when dire circumstances require it, such as needing a new wireless router at 8PM on a Friday night. (heh)

Now I’ll definitely think about staying away at all costs.

  • Share this:
  • Facebook

Avoid Microsoft Windows When Banking Online

Posted by willc on October 14, 2009
Posted in: Linux, Microsoft, News, Security. Leave a Comment

Detective Inspector Bruce van der Graaf from the Computer Crime Investigation Unit of the NSW Police says, “”If you are using the internet for a commercial transaction, use a Linux boot up disk – such as Ubuntu or some of the other flavours…It gives you an operating system which is perfectly clean and  operates only in the memory of the computer and is a perfectly safe way of doing internet banking,”

Sounds like a good plan to me, but then, I’m sure most of you reading this are already in agreement. It’s just good to see this sort of thing hitting major news sites.

Read more here…

  • Share this:
  • Facebook

Personal AntiVirus for Linux – ClamAV with Fedora 11

Posted by dbcooper on October 3, 2009
Posted in: Linux, Security. Leave a Comment
I'm providing the original text file for ease of use

Grab it here - ClamAV.on.Fedora
----------------------------------

Background:

This guide will use the ClamAV CLI scanner and the ClamAV-Update script (freshclam).
I wrote this to help all the Home\SOHO users (servers or desktops).
ClamAV has various tools/packages/plugins for email servers etc. but that’s another story.

If you wish to learn more visit their home site: http://www.clamav.net/

Obviously, you can change anything you want, but this should get you going.

Continue Reading

  • Share this:
  • Facebook

Some Super Useful Apps

Posted by willc on September 4, 2009
Posted in: Freeware. Leave a Comment

There are certain free apps I have come to rely upon when setting up any new installation of Windows. Some of these aid in my work, some of them just aid in a providing better Windows experience. I thought I’d create a list of my top 5 favorites. To qualify for this list, applications must be lightweight on system resources when running, preferrably open source, and free.

If you have any suggestions for apps which fit that description and make your life easier, post them in the comments.

If you find any of these tools useful, please make a donation to the author!

1. DColor is a great tool for saving space on your desktop by tweaking your icons. It allows you to resize them, and even display them in ‘list view’, as you would see a list of files in Windows Explorer.  DColor will also let you recolor the icon text and background. It’s a tiny app which takes up very little system resources.

2. Color Cop is an eyedropper color picker which can sit in the foreground of all open windows.  This comes in really handy when you are swapping back and forth between Photoshop and Dreamweaver, or are trying to pick colors from photographs. It allows for easy copy/paste to and from using your choice of RGB or several flavors of hex values. No installation — just launch it and use it.

3. ImgBurn is my favorite disc burning tool. You can run it from a command line or from the graphical interface, and it supports CD, DVD, HD DVD, and Blue Ray discs.  ImgBurn is lightweight and sports a ton of tools and options. I have yet to run across a disc drive which it didn’t support out of the box.

4. Filezilla – I never leave home without this one. Not only is it free for Windows, but Filezilla supports Mac, Linux, BSD, and more.  Providing a great interface for FTP and SFTP file transfers, it’s easy to use, lightweight, and full of options. My favorite combo of traits!

  • Share this:
  • Facebook

IFrame Exploits on the rise again – AKA: “Yeah people suck”

Posted by dbcooper on August 27, 2009
Posted in: Network, Security. 2 comments

! WARNING ! – DO NOT VISIT THE SITES BELOW – ! WARNING !

I noticed some Pakistan site had pingbacks for some articles we wrote, but no comments from the person that copy and pasted them (verbatim) on their site.

Well, being the person that I am, I fired up “Wireshark” on my Linux box (of course) to investigate their site further.

I noticed they had various other sites tied to the same domain, so I visited another one (other than the blog) and low and behold something was a little fishy.

Their “photo” site tried to launch a little gift for me……an “IFrame exploit” and if you’re running Windows you get a special prize for the visit…..a worm.  ;0)

Continue Reading

  • Share this:
  • Facebook

RHEL 5.3 and Depsolve problems in Yum

Posted by willc on August 25, 2009
Posted in: RedHat. Leave a Comment

During some recent server patches on Red Hat Enterprise Linux 5.3, I kept getting ‘depsolve’ errors on several packages. This was odd, as I had not made any changes to anything, installed anything new, or removed anything.

Turns out this is a known bug in 5.3, and luckily, the solution is simple:

$> yum clean all

Run that, and it refreshes your local repository. The next time you go to update packages your server will refresh everything with the Red Hat respository, and all will be good!

  • Share this:
  • Facebook

How to recover MySQL’s “root” password quickly

Posted by dbcooper on August 2, 2009
Posted in: Linux, RedHat. Leave a Comment

Have you ever been in a rush or just had a complete brain freeze with your MySQL passwords?

Well…..I have.  :)

——————————-

Step # 1 : Stop mysql service

SHELL> /etc/init.d/mysql stop

——————————-

Step # 2: Start to MySQL server w/o password:

SHELL> mysqld_safe --skip-grant-tables &

——————————-

Step # 3: Connect to mysql server using mysql client and setup the new root password:

SHELL> mysql -u root
mysql> use mysql;
mysql> update user set password=PASSWORD("$PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit

——————————-

Step #4: Stop and Restart MySQL Server: (try your new $PASSWORD)

SHELL> /etc/init.d/mysql stop
SHELL> /etc/init.d/mysql start
SHELL> mysql -u root -p

——————————-

Note: There are other ways to reset the password, but I like this one.

  • Share this:
  • Facebook

Fedora 11 – VMware Workstation 6.5.2

Posted by dbcooper on June 23, 2009
Posted in: Linux, RedHat, Virtualization. Leave a Comment

Over the past few years several people on the VMware communities forums have released patches to fix the vmware modules for the next “fresh” release of the Linux Kernel / Distro. I’ve used them in the past with much success, but I generally like waiting for the official VMware support. However, I’m pretty excited about Fedora 11 (just to many new goodies not to play) and I noticed there’s a new updated patch for 2.6.29 and even 2.6.30 Kernels!

VMware Workstation 6.5.2 module patches/discussion: 2.6.29

VMware Workstation 6.5.2 module patches/discussion: 2.6.30

Sun has official Fedora 11 support (and now 2.6.31) with VirtualBox: VirtualBox 3.0.0 (if that’s your cup of tea)

Note: Obviously Fedora is the test bed for the QEMU/KVM merger so you can go that route as well, but I love VMware. ;0)
Here is a great article to get you moving on the QEMU/KVM way of life: Clik Me

HTH

  • Share this:
  • Facebook

Posts navigation

← Older Entries
Newer Entries →
  • Search

  • Donate

    If you found something useful here on Geekamongus, please consider donating some mulah. It's quite a good motivator!
  • Categories

    • Apple
    • Audio
    • Black Hat
    • CPanel
    • CSS
    • Databases
    • Email
    • Facebook
    • Firefox
    • Freeware
    • Games
    • Geeky Greats
    • Google
    • Hacks
    • HTML
    • jQuery
    • Linux
    • Microsoft
    • MySQL
    • Network
    • News
    • Photoshop
    • Practical Security
    • RedHat
    • Samba
    • Security
    • Social Networking
    • Spam
    • SSH
    • Tweaks
    • Uncategorized
    • Virtualization
    • VNC
    • Web Browsers
    • Web Design
    • WordPress
  • Links

  • Archives

    • December 2011
    • May 2011
    • April 2011
    • March 2011
    • January 2011
    • July 2010
    • June 2010
    • May 2010
    • March 2010
    • January 2010
    • December 2009
    • November 2009
    • October 2009
    • September 2009
    • August 2009
    • June 2009
    • May 2009
    • April 2009
    • March 2009
    • February 2009
    • January 2009
    • December 2008
    • November 2008
    • October 2008
    • September 2008
    • August 2008
Proudly powered by WordPress Theme: Parament by Automattic.