Xbox Live players in sight of Hacker

February 20th, 2009

According to BBC Xbox live players are being hounded by Hackers, the full story goes as follows:

Xbox Live is being targeted by malicious hackers selling services that kick players off the network.

The booting services are proving popular with players who want a way to get revenge on those who beat them in an Xbox Live game.

The attackers are employing data flooding tools that have been used against websites for many years.

Microsoft is “investigating” the use of the tools and said those caught using them would be banned from Xbox Live.

“There’s been a definite increase in the amount of people talking about and distributing these things over the last three to four weeks,” said Chris Boyd, director of malware research at Facetime Communications.

“The smart thing about these Xbox tools is that they do not attack the Xbox Live network itself,” he said.

He said the tools work by exploiting the way that the Xbox Live network is set up. Game consoles connecting to the Xbox network send data via the net, and for that it needs an IP address.

Even better, said Mr Boyd, games played via Xbox Live are not hosted on private servers.

“Instead,” he said, “a lot of games on Xbox Live are hosted by players.”

If hackers can discover the IP address of whoever is hosting a game they can employ many of the attacks that have been used for years against websites, said Mr Boyd.

One of the most popular for the Xbox Live specialists is the Denial of Service attack which floods an IP address with vast amounts of data.

The flood of data is generated by a group of hijacked home computers, a botnet, that have fallen under the control of a malicious hacking group.

When turned against a website this flood of traffic can overwhelm it or make it unresponsive to legitimate visitors.

When turned against an Xbox owner, it can mean they cannot connect to the Live network and effectively throws them out of the game.

“They get your IP address, put it in the booter tool and they attempt to flood the port that uses Xbox traffic,” said Mr Boyd. “Flooding that port prevents any traffic getting out.”

you can read the rest of the new at BBC website if you like

Detoam Site news , ,

Camping Equipment for gamers

January 12th, 2009

Are you are hardcore gamer or just a fair weather gamer? The way to know hardcore from fair
weather is to have absolutely all the equipment you need to show your friends you are not a push over and when it comes to computer, you can go the distance with the best of them.  The author of this post is one such hardcore games fans, he has set up a gaming area in his garden complete with a LAN where his friends can plug their computers when they come around for gaming and sleeping bags for those all name gaming contested.

He went to online camping equipment specialist to get things like sleeping bags, flash, water cooler and all the essential creature comforts you need when you do not want to be interrupted he even deployed a portable toilet in his specially erected gaming tent.

The camping website where he bought this unusual gaming gear were very surprised, the manager of the online store remarked that “all the camping equipment and accessories we have sold today has been used for camping, this is the first time we are selling camping equipment which is being used for gaming” but he said he admire the gaming clan so much that he has offered then 20% discount on their next purchase at his store.

Once the gaming tent set up was completed, the mater gamer was very pleased and naturally he invited his friend around to test it. They played games on various console ranking from Xbox to Nintendo till the following morning.

Detoam Reviews , , ,

Steam Launches Hit PC Games from EA

December 20th, 2008

Spore, Warhammer Online: Age of Reckoning and More Available Now

REDWOOD CITY, Calif. – December 18, 2008. Just in time for the holidays, Valve announced that, Spore™, Spore Creepy & Cute Parts Pack, Warhammer® Online: Age of Reckoning™, Mass Effect®, Need for Speed™ Undercover and EA SPORTS FIFA Manager 2009 are available now to gamers in North America via Steam, a leading platform for PC games and digital content with over 15 million accounts around the world.

In the coming weeks, Mirror’s Edge™ , Command & Conquer™ Red Alert™ 3, and Dead Space™ will also be added to the catalog of EA’s titles available via Steam.

“EA is one of the industry’s largest publishers,” said Gabe Newell, co-founder and president of Valve. “The EA titles coming to Steam this holiday include some this year’s top PC titles.”

“We are pleased to extend our holiday titles to gamers worldwide via Steam — a revolutionary technology that is one of the game industry’s most successful digital distribution services,” said John Pleasants, President, Global Publishing & Chief Operating Officer.

For more information, please visit www.steamgames.com

Detoam New releases

Automating Things with Batch Files

December 18th, 2008

If you’re familiar with MS-DOS at all, you’ll recall that it’s a command-driven operating system that performs functions issued at the C:> prompt. The only way to get an MS-DOS computer to do something was to type a command at this prompt and if you can imagine, it was a rather cumbersome way to use a computer.

As an example, to load up Microsoft’s simple editing program, you had to type the name of the drive that the program was on, the directory that the program was in, and then the name of the program. So if Microsoft Edit was in a directory or folder named “Process,” you could start the program by typing, “C:>process\edit.com” Then, and only then would the program load up for use.

This is a small command, but just imagine if you had a program that was deeply nested within a series of folder. You could end up typing a command as wide as your computer screen or worse, long enough that the entire command would have to wrap onto the next line! Now imagine having to type these long commands every time that you wanted to start a program. Yikes!

Sponsors
[ad#250x250]

That’s one of the reasons why batch files became so popular. Batch files are small text-based documents that contain a bunch of these commands on their own lines. When executed, they would process each command without the user having to type each and every one of them.

When Windows was developed, the need for typing commands was essentially eradicated thanks to the introduction of the point-and-click (mouse) interface. But this didn’t stop the batch file fever that started under MS-DOS – and in some small circles, batch files are still as popular as they were in the beginning.

Even though you may use Windows XP or Vista, batch files can save you tons of time by automatically starting multiple programs and performing different tasks at the single click of a button. They don’t require any extensive programming background and they don’t need to be encrypted with some weird, expensive compiler. Batch files are plain text files, and you can build one for your own personal use with Windows’ Notepad.

You could make a batch file that loads up your favorite websites at once for example, or you could make a batch file that fills your desktop with the most important applications for the day. To do so only requires a little knowledge about the locations of these applications.

Let’s say that every day we need to load up the Yahoo web browser, Microsoft Word, and then the calculator that comes with Windows. Instead of doing this by hand, we could write a batch file to do it for us.

First, we’d load up Notepad and type in the following:

START “http://www.yahoo.com”

START “c:/program files/microsoft office/office/winword.exe”

START “c:/windows/calc.exe”

We would then save this data into a file named, “mytasks.bat” onto the Desktop for easy access. Each time we double-clicked on this file, the Yahoo website would load up, Microsoft Word would start, and the simple calculator would pop up.

Since we want these programs to load every day, we could create a shortcut to this file and then place the shortcut inside our computer’s Start Up folder. That way, these three programs would load every time we turn on the computer. If you wanted these programs to start minimized, you could type the following into a batch file instead:

START http://www.yahoo.com /m

START “c:/program files/microsoft office/office/winword.exe” /m

START “c:/windows/calc.exe” /m

This will run all three programs as before, however the “/m” parameter will minimize them so that they don’t clutter up the desktop.

Other people have found much more creative and effective ways to use batch files, but the important thing is that you know they’re a resource you can use to save a few seconds or minutes in performing important tasks. We’ve come a long way from MS-DOS, but it’s still a valuable source of automation that anyone can use with no programming knowledge at all.

Detoam Tips

New management

December 16th, 2008

This website has gotten itself a new owner. I don’t know whether it will remain the same or new owner(s) are going to change it, but I hope they will be more attentive to it than I was. This does not mean that I have sold the website. I am still the owner of the domain. I am simply letting someone else to take control as I am trying to pursue other things in life. If You are interested in buying this website I might consider it if a good offer is given.

For now I say adios and hope ur fragging is fun. Go kill something.

Detoam Site news