Showing posts with label PS3 News. Show all posts
Showing posts with label PS3 News. Show all posts

Hot PS3 Hacking Issue: PSN Hack Information by SKFU

Posted by newbie Friday, April 29, 2011 0 comments

The PSN is down, all accounts got dumped by an anonymous hacker and the community is cryin' for answers. 77 million accounts with password and sometimes CC info are worth a lot in several hack chans. This is a very huge case.

Now SONY engaged an external security company to discover the holes in SONY's system and find answers. As I was wondering if there may be some information about the actual case we can find out publically, I researched a bit myself.

One interesting point I found is a not secured access log of a PSN environment.
You will quickly notice the IP 214.1.211.251, which sends requests like a vulnerability scanner.
The IP points to the DoD Network Information Center, based in Ohio USA.

The first log entry of this IP is [03/Mar/2011:07:10:38 -0800]. As the DoD is knows as beeing easy to hack, the anonymous hacker could have used this as proxy.

Maybe SONY might want to take a look at this IP, I hope soon we get some news and details about the case...

- SKFU

Source

'Rebug' custom firmware enabled 'free' PSN downloads

Posted by newbie Tuesday, April 26, 2011 0 comments

According to PSX-Scene former moderator, "chesh," the now six-day-long PlayStation Network outage is the result of a particularly exploitative custom firmware (CFW) modification for PS3. In a post on Reddit, chesh claims that a CFW known as "Codename: Rebug" had given its users the ability to log into PSN as if they were doing so from a developer console (or "debug unit").

As a result, chesh contends, this same exploit allowed its users to add funds from "dummy" credit card accounts into their PSN wallets, ostensibly giving them the ability to "unlock" (read: steal) certain PlayStation Store content. Joystiq's research into the purported exploit has turned up multiple tutorials detailing the process, which appears alarmingly easy to execute on consoles running the Rebug CFW.

The hack does not allow its users to access the credit card or other personal information of PSN users, chesh adds. Nevertheless, as we reported earlier today, Sony is working to rule out information theft as part of its investigation during the maintenance outage in which the company is also implementing new security measures.

Sony has not yet responded to our request for comment on this story.

Source

SCEA vs. Geohot: Sony, Hotz settle PS3 hacking lawsuit

Posted by newbie Tuesday, April 12, 2011 0 comments

Sony Computer Entertainment and George Hotz have settled their hacking legal dispute, according to a joint statement.
Sony had been taking legal action against Hotz for publishing and distributing security circumvention for the PlayStation 3.
Hotz has now consented to a permanent injunction and said that "it was never my intention to cause any users trouble or to make piracy easier. I'm happy to have the litigation behind me." He added that he is not involved in any of the recent attacks on Sony websites and services.
Those attacks are from a loose collective of hackers linked to Anonymous - the settlement between Hotz and Sony was agreed in principle on March 31, days before Anonymous threatened Sony for its legal actions against Hotz and other notorious hackers.
Said Riley Russell, general counsel for SCEA: "Our motivation for bringing this litigation was to protect our intellectual property and our consumers. We believe this settlement and the permanent injunction achieve this goal."
Despite a press release focused on cooperation, Hotz has now said he is boycotting all Sony products in the future.
Sony has not revealed any details of its pursuit of hacking group fail0verflow, which it was also taking legal action against at the same time as George Hotz.

Source

Kinect Hack: Playing PS3 using Microsoft Kinect by Shantanu

Posted by newbie Wednesday, March 23, 2011 0 comments

Awesome hack job by Shantanu. He gather all open source kinect related project and make used of the available DIY PS3 Controller with recent PS3 Hacks. Even it still early work, still awesome work to make kinect cross over the various platform.

This post describes my first attempt at making Kinect work with a PS3. Microsoft’s new XBOX 360 accessory, kinect has made a powerful entry into the market, becoming the fastest selling gadget of all time. Looks like their “You are the controller” tagline is working. Of course, Sony’s “similar” accessory Move is selling well too but is far behind kinect adoption probably because nothing beats the lure of making something work with just “The Force” ;) .

Now, of course, kinect doesn’t work with PS3 obviously but then if we can’t break the rules, we can at least bend them a little towards our way. I’ve created a mashup that allows you to use kinect as an input controller for the PS3.

Please note that this is pre-alpha quality software currently. I haven’t updated to a lot of recent code for the below libraries and also haven’t done most of the performance/feature improvements yet. The axis performance specially needs lot of tweaking and it works well only while sitting. Putting this out purely as a proof of concept. For the things that I plan to add soon, please see the Todo section below. Follow me at @shantanugoel for latest updates.

Demo Video:


The program makes use of several other programs in order to provide this functionality. To compile/use it, you also need the following programs:

1. OpenNI Libraries – To get data from kinect

2. NITE Libraries (Choose “Middleware” on the page) – Builds on top of OpenNI to provide gesture detection etc

3. PrimeSense Libraries for kinect – Kinect drivers to get raw data

4. DIYPS3Controller – The main component for PS3 connection and also known as sixaxis emulator. This emulates a DS3 on the PC and send the inputs to PS3 through bluetooth.

Installation/Compilation/Usage

1. Make sure that the above 4 things are installed on your machine and working fine.

2. Download the source of this project to the NITE Samples directory. You can even place it anywhere else but you would need to tweak the makefile to account for the changed paths.

3. Make any changes to the source that you need.

4. Change the included ps3 controller config xml file and place it in one of the locations where diyps3controller can find it.

5. Run make -f kinect-ps3.mak

6. The executable will be available in Samples/Bin directory of NITE.

7. Run kinect-ps3 (without any arguments)

8. Run emuclient (from ps3 controller software) and choose the new xml config file

9. “Become the controller” :)
Default Config:

Menu Profile – This is the default profile that kinect-ps3 starts with and allows to operate the PS3 menus. Moving hand in any direction will move the ps3 menus as if you were using the DPAD with those directions keys pressed. If you run out of the kinect’s watched space, then just do a backward push with your hand, bring your hand to center and then again do the backward push and continue scrolling. This is like you lift your finger up and then start dragging from edges of a laptop’s touchpad.For selecting any item, make two successive push movements with your hand without changing any x-y direction.
Game Profile – This profile can be switched to by doing 3 successive backward movements of the hand while in Menu profile. Right now I’ve implemented only directional controls in game profile because I’m still struggling with multiple hands detections and skeletal tracking. A full profile will be activated soon enough. Currently, the your hand’s x/y movements and directly translated to right stick x/y movements (e.g. this is looking in different directions in various FPS games). Moving the hand towards or away from kinect (z-axis) translate to left stick y movements (e.g. this is moving fowards or backwards in most FPS games).
Issues/Queries/Suggestions

Please direct them to me by commenting here or emailing me at shantanu AT shantanugoel DOT com

Coming Soon/ToDo

-Full Menu and Game profiles

- Skeletal tracking for better game profiles

- Switching back to menu profiles from game profiles

- Easier way to specify user custom profiles instead of changing code for the same

- Performance improvement for game profiles

Full source code of the project has been released at https://github.com/shantanugoel/Kinect-PS3 under GNU GPL v2.

Source

PS3 UserCheat (CHT dongle ) released - support PS3 AR cheat

Posted by newbie Tuesday, March 22, 2011 0 comments


PS3 usercheat(CHT dongle)is the latest product released by official PS3 break team.It is the first dongle which supports PS3 game roms and PS3 AR cheat perfectly,With PS3 usercheat, it is no necessary to buy the expensive genuine blu-ray game CD, you just need some free game roms.Because of its special effects, you are unbeaten in the games.

Features

1, support game rom without the genuine blu-ray game CD.
2, support AR cheat function, perfect effects include "infinite energy, the strongest equipment, never game over"
3, 100% upgradeable, Compatible with all PS3 models – Fat and Slim.
4, Onboard SLC NANDFLASH Memory of 128MB. 5, High speed 32 bit CPU processor clocked at 500MHz
6, fully updatable via USB on your Windows PC using a very simple and intuitive process.
7, A microSDHC slot is inbuilt which supports up to 32GB for future expansion.
8, regularly updated to provide our users with the latest features at no extra cost.
9, Simple step-by-step guide available on the site will show you how to use and install CHT dongle and our support team will assist you with any problems you may encounter along the way.
10, Easy-to-use software for backing up, managing, and playing games from external USB Hard Drive or the internal Hard Drive your PS3.
11, Playing games from HDD gives you loads of benefits, including faster loading times and reduced strain on the lens of the Bluray drive of your PS3.



PS3 usercheat FAQ

Q1:Is CHT dongle easy to install?
A1:Installs in seconds without the need of opening up your PS3.

Q2: How to use CHT dongle?
A2: When CHT Dongle working properly, dongle built-in program named "Code Manager" will guide you to start the game.

Q3: CHT dongle support upgrades?
A3:100% Upgradeable,Compatible with all PS3 models – Fat and Slim.

Q4: What is the warranty?
A4:PS3break is sold with 1 year warranty. All our resellers will take care of warranty issues.



Source