• Home
  • Downloads
  • EBOOT Fixes
  • Forums
  • New Posts
  • Register
    • Welcome, Register Now! 
    • Premium VIP Membership
    • PS3 Sticky
      • PS3 CFW & MFW
      • PS3 Debug Firmware
      • PS3 Decrypted PSN Links for CFW
      • PS3 Downloads
      • PS3 EBOOT.BIN Original File Links
      • PS3 Firmware
      • PS3 Game Releases List
      • PS3 Guides & Tutorials
      • PS3 Hacking Guides and Tutorials
      • PS3 Hacks & JailBreak
      • PS3 Help & Support
      • PS3 JailBreak Game Compatibility List
      • PS3 JB2 / True Blue (TB) Game Links
      • PS3 multiMAN Updates
      • PS3 Resources
      • PS3 Reviews
      • PS3 Save Files Repository
      • PS3 Themes
      • PS3 Trophies List
      • PS3 Videos
      • PS Vita Trophies List
    • Quick Links
      • Affiliates
      • Contact Us
      • FAQ
      • Post News
      • Site Rules
      • Tag Cloud
 

Video: PS3 3Key Optical Blue-ray Drive Emulator Demo Arrives

Category: PS3 Hacks & JailBreak  By: PS3 News - (3k3y.com)
Tags: video ps3 3key ps3 optical blue-ray drive emulator 3k3y ps3 demo ps3 hax ps3 hacks

24w ago - Following up on the previous update, today Max Louarn and Paul Owen's product marketeer Gary Wayne Bowser (aka GaryOPA) has made available a 3K3y demonstration video with details below.

Download: PS3 3K3y Keydumper v1.00 for PS3 3.55 CFW / PS3 3K3y Keydumper v1.00 Resigned for PS3 4.31 CFW by jarmster (Note: Leave a USB stick installed when you run the app, it puts a 1kb file called 3dump.bin on the stick containing the decrypted drive keys. Run the app, triple beep + red flashing led... power down with front button = no good but it dumps the key. To get your root_key you must go back to 3.55, funny fact... when using the 3k3y dumper on 3.55 it includes the eid_root_key. ) / 3k3y Ripp3r v1.01 Setup and User Guide / 3K3y Dumper for 4.XX CFW / 3K3y Rootkey Dumper for 4.XX CFW by haz367 / 3K3Y_IRD_files_2013-03-15.rar by 3Key

3k3y Ripp3r v1.01 Setup and User Guide: Windows software for ripping/decrypting/reencrypting PS3 disks. The user manual is included in the archive.

Changelog [2013-02-01]:

  • Fixed a bug that affected encryption/decryption of very large files.

From zecoxao: I bet people didn't even touch the implementation of libeeid that naehrwert left us, and then these guys come, use flat_z's code to get the eid_root_key on hackables, and grab the necessary part of the code from libeeid to generate the eid4_key from it and decrypt the eid4. Bunch of freaking losers.

People, if you're that desperate to get the drive key (which is in eid4) just memdump eEID, get your eid_root_key with flatz's package and use my program which is adapted from naehrwert's code. you can even see for yourselves what's happening in the code. Don't forget to rename the eEID you get from your console's NOR/NAND to eid (without an extension) and place it on eid folder. same as key and iv (split them up with a hex editor).

You can then try that program and compare your decrypted eid4 with the pkg's dump, and realize it's the same crap.

Here we can see the keys used by the ripper (taken from: ps3devwiki.com/wiki/BD_Drive_Reverse_Engineering#Program and ps3devwiki.com/wiki/BD_Drive_Reverse_Engineering#Information_about_EID4):

private byte[] IV1 = new byte[] { 0x22, 0x26, 0x92, 0x8d, 0x44, 3, 0x2f, 0x43, 0x6a, 0xfd, 0x26, 0x7e, 0x74, 0x8b, 0x23, 0x93 };
 private byte[] IV2 = new byte[] { 0xe8, 11, 0x3f, 12, 0xd6, 0x56, 0x6d, 0xd0 };
 private byte[] IV3 = new byte[] { 0x3b, 0xd6, 0x24, 2, 11, 0xd3, 0xf8, 0x65, 0xe8, 11, 0x3f, 12, 0xd6, 0x56, 0x6d, 0xd0 };
 private static byte[] Key1 = new byte[0x10];
 private static byte[] Key2 = new byte[0x10];
 private byte[] Key3 = new byte[] { 0x12, 0x6c, 0x6b, 0x59, 0x45, 0x37, 14, 0xee, 0xca, 0x68, 0x26, 0x2d, 2, 0xdd, 0x12, 210 };
 private byte[] Key4 = new byte[] { 0xd9, 0xa2, 10, 0x79, 0x66, 0x6c, 0x27, 0xd1, 0x10, 50, 0xac, 0xcf, 13, 0x7f, 0xb5, 1 };
 private byte[] Key5 = new byte[] { 0x19, 0x76, 0x6f, 0xbc, 0x77, 0xe4, 0xe7, 0x5c, 0xf4, 0x41, 0xe4, 0x8b, 0x94, 0x2c, 0x5b, 0xd9 };
 private byte[] Key6 = new byte[] { 80, 0xcb, 0xa7, 240, 0xc2, 0xa7, 0xc0, 0xf6, 0xf3, 0x3a, 0x21, 0x43, 0x26, 0xac, 0x4e, 0xf3 };
 private static byte[] Key7 = new byte[0x10];
 private static byte[] Key8 = new byte[0x10];
The keys are in eid4, and yes, we DO need to decrypt it, or else Sony would be the biggest bunch of retards.. the eid4 key is used to verify the cmac hash of the first 0x20 bytes. Naehrwert's code seems to prove this:

void aes_omac1(u8* output, u8* input, int len, u8* aes_key_data, int aes_key_bits)
      aes_omac1(digest, eid4, 0x20, indiv + INDIV_EID4_KEY_OFFSET, 0x100);
      if(memcmp(digest, eid4 + 0x20, AES_OMAC1_DIGEST_SIZE) != 0)
		printf("warning: eid4 hash check failed!\n");
omac1 basically spits out the digest of the secure communication channel keys. if you compare the digest with the last 16 bytes of eid4, it should match

Corrected some info. and apparently i was mistaken when i thought that 3Dump.bin contained the eid4 ENcrypted. it contains in fact eid4 DEcrypted. You still need to auth with the bd drive. that's the part Cobra/E3 figured out. we can do this normally with hacked consoles, but not with unhacked consoles.

So the ODE dumper package dumps the DEcrypted eid4, correct? now i understand. i was confused because i thought you said the eid4 ENcrypted was the same as 3Dump.bin.

3K3y Key Dumper

Here is the Key dumping Application to on a Ps3 with CFW. This will only work for Fat consoles. You must have a FAT32 USb stick in the first port on your PS3, it will generate a file called 3Dump.bin This is what goes on your micro sd card, or loaded into the Ripper application.

Please note you need Peek and Poke enabled in your CFW to run this app, this is usually enabled by default. Cobra CFW doesn't allow you to run this file so you will need to flash to something else if you are on this.

From jarmster: The eid4 from running libeeid is a decrypted dump. The 3dump.bin is exactly the same. The eEID_Dumper.pkg dumps the encrypted eid4. And from the wiki: EID4 is of size 0x30 bytes: 0x0-0xf bytes = 1st key, 0x10-0x1f - 2nd key, 0x20-0x2f - CMAC-OMAC1 of EID4.

From haz367:

eid4 offset 303A0 - 303CF full nordump

eid4 only:

first key = 0-f (key1?)
sec key = 20-2f omac hash(required just as cex2dex convert to calculate usin omac's)

now for 3dump.bin: (= encrypted eid4(0-2f)+eid_root_key(30-5f)

3dump.bin

offset 0-1f = match original full nordump = offset 303a0-303bf (encrypted eid4)
offset 20-2f = sec key = match full nordump-encrypted eid4 = omac hash key
offset 30-5f = root_key per console key (also required to calculate+omac hash... real bdkey?

then we have zecoxao's program, it gives an erro on eid3 of missing stuff but it dumps also an "eid4d.bin"

offset 0-1f = decrypted eid4?! >>omac hash is match original nordump/encrypted eid4/3Dump.bin
should be different.. correct..?

From zadow28 on the 3K3y PKG file: pastebin.com/79V2KdTK

I'm not into VS very much, maybe the devs can have an look. It's the visual source/assembly code for the x3key ps3 software for pc. got there keys and even shows there iso disc codes, plus a lot more. I'm not an visual expert, so maybe there are some visual experts here. shows how the x3key acts like an Bulk. etc

The iso for x3key are crypted, so they only play with there tool.. the source for encrypting the iso are in there too.

From Abkarino (via Zadow28) comes the 3K3y Ripper (PC Software) hacked source code recovered, as follows:

You could build your own hardware interface to connect PS3 BD-ROM Drive to your PC to rip your games. The 3K3y special hardware is in only a cheap PATA To USB converter board with some modifications, and you can do it yourself. Also you could directly connect your PS3 Drive to your PC by soldering it to PATA bus a.k.a IDE cable and modify the power socket only. You can use the old leaked BD-ROM drive service manual for pinout (ps3devwiki.com/wiki/ODE).

Download: 3K3y Ripper (PC Software) Binary and Source (Password: Abkarino) / 3K3y Ripper (PC Software) Binary and Source (Mirror: Password Removed)

This is a quick and dirty release for 3K3Y Ripper application including the full recovered source code. So you can build/modify your own version. All you will need is: .Net Framework Runtime v4.0

Message to 3K3Y Team: Do not stole glevand's work again Also do not forget to protect you applications using a good .Net protector like .Net Reactor to prevent me or any body else from recovering your codes. Hope that will help someone to do something useful in the future.

Regards.
Abkarino (Mohammed Hassan)

To quote: Click the above-picture (HERE) to see a close-up view of the actual 3k3y BETA PCBoard, (the case on the PHAT PS3 used for demo, does not need to be cut-away, that was done on purpose for the video shown below), and the small black box to left is the usb hdd port, power and 3k3y LCD screen interface to select the PS3 ISO on your external USB HDD similar in style to their famous original X360key ODD emulator.

Now sit back and enjoy the video (download it HERE) made by our Anonymous 3k3y Beta Tester (BTW, Many Thanks Whomever You Are!), as you nurse your video gaming body back into action from all those Happy New Year parties last night!








Below are a few more 3K3y videos / mirrors for those interested as well, from their page:

2013-01-03: 2 new 3k3y videos

As we are very close to shipping we decided to release 2 more product videos. We aim to have one of these great devices in your PS3 by the end of the month!








3k3y is the state of the art of PS3 drive emulation from the defacto leaders in drive emulation.

Feature List

  • Play all PS3 games
  • Play all PS2/PS1 games*+
  • Plug n play installation
  • Compatible with all currently available OFW/CFW versions
  • Original 3k3y app for extracting drive key**
  • User friendly OSD interface for managing your 3k3y
  • Optional remote (compatible with Xk3y remote)
  • Powerful embedded Linux platform
  • Supports most popular file systems such as EXT2.3.4, Mac OS X and NTFS
  • Emulation and transparent passthrough modes
  • Both CPU and FPGA are fully in-system updatable
  • Sleek and beautiful Wifi interface***
  • Movie ISO playback+
  • Not manufactured in China****

* Requires compatible PS3.
** Currently fw =< 3.55 is required for extracting the drive key. After this the FW can be upgraded freely. This holds true for all ODEs, see below for more details
*** Requires Wifi dongle sold separately
**** That's why we can deliver despite CNY + This feature will be added in an upcoming firmware

Pricing

Quantity 3k3y+Ripper 3k3y only Ripper Only Wifi dongle Remote

  • 1k and up USD63 USD52 USD13 USD10 USD20
  • 500pcs USD67 USD55 USD15 USD10 USD22
  • 250pcs USD70 USD60 USD15 USD12 USD25
  • 100pcs USD75 USD65 USD16 USD14 USD27

Retail Price: US $129.00 ( Ripoff Markup! )

  • PS3 3K3y (3Key) stock available now
  • 3K3y Fat Model version release on 2013-02-08 . Slim version will release soon
  • 3K3y PCB Kit
  • 3K3y Remote (optional)
  • 3K3y Ripper PCB (optional)

Products developed by our team members, such as Xk3y, Wode, and Wiikey Fusion have outsold products in direct competition by a factor. The same thing goes for many of our other products such as Qoob and Wiikey.

The question many people are asking about it compatibility with various firmwares and PS3 models. Let us state the facts here, which are true for 3k3y as well as any other PS3 ODE:

Key extraction

Currently a firmware <= 3.55 is required for drive key extraction. We are very close to completing a relatively user friendly hardware method for extracting keys from PS3's on any firmware. Until we have it working in a commercial environment we will not promote this as a feature, even though it is very likely to happen in the immediate future.

As of now there are no PS3 ODEs that works with a PS3 that cannot be put on 3.55 firmware for key dumping. Period.

Compatible models

3k3y was developed for the fat ps3, which is supported out of the box. Now when the hardware is finished we will start working on adapter boards for the Slim models which do not have the drive controller integrated on the motherboard.

Once that is done we will look into whether is it possible to make an adapter board for the Slims with integrated controller that can be installed with a reasonable effort.

Super Slim

Due to the size constraints and different interface (SATA instead of PATA) we have developed a super small hardware especially for the Super Slim model. Final testing and release will commence once we have hardware key extraction working.

ISO file format

3k3y, as well as any other sane ODE uses a full ISO file. Scene releases were in this format up until the jailbreak dongle came along. Currently it is more popular to release the decrypted file system, as it may be smaller than a full ISO.

However, decrypted file system backups lacks essential data necessary to emulate the disk properly and are very easy for Sony to detect on PSN. In fact Sony has made a public statement warning PSN users about this. We are currently looking into the possibility of creating software to recreate the ISO from decrypted dumps, but this is WIP.

Game Ripping

This is an essential feature as the full ISO is needed. We have high speed hardware that connects to Mac or PC and dumps a full size ISO in no time. Its right here and now.

An upcoming firmware for 3k3y will include in-system disk ripping, but disk ripping with 3k3y or any other ODE will be extremely slow compared to using our dedicated hardware.

To avoid delays and missing out on sales please contact us ASAP. Both 3k3y and Xk3y are time consuming and labor intensive to manufacture. We need timely forecasts to avoid disappointments.

Additionally, the first 3K3y ODE iSO release appears to have surfaced under the name PlayStation.All-Stars.Battle.Royale.READNFO.ISO.PS3-TL with details below from the PS3 NFO file:

___________.____
\\__ ___/| |
| | | |
| | | |___
|____| |_______ \\
\\/

PRESENTS

Rel.Name...: PlayStation.All-Stars.Battle.Royale.READNFO.ISO.PS3-TL
Rel.Date...: 19.01.13
Platform...: PS3
Genre......: Fighting
Format.....: ISO
Ripped.....: Nothing

INFO

PlayStation All-Stars Battle Royale is free-for-all brawler showcasing the best and brightest of PlayStation\'s characters and worlds. From Kratos to Sly Cooper, Sweet Tooth to Parappa the Rapper, Sony characters from all over the gaming spectrum are brought together in a fighting adventure that\'s both easy to play, and hard to master. Take the battle online for competitive multiplayer action, or go head to head with a group of friends on the couch and prove once and for all who\'s really the best!

NOTES

This ISO is for use on a ODE (Optical Drive Emulator) like a 3k3y which will be released soon and enable playing of backups on all
firmwares/models!

Ripped using 3k3y Ripper application. Full ISO, not recreated from scene release.

Please note that tools that will recreate an ISO from a scene release might be handy, but will probably not be safe as it will be missing
vital information that Sony can detect online.

Please be careful when these tools are released.

Greets to: JCJK & 3k3y team.

GREETZ

JCJK & 3k3y team
From CaptainCPS-X: Size difference between old ISOs and new ISOs - From my experience coding my personal (unreleased) disc reading library for Windows, from what I understand, I will assume that the size difference its because the ISO is not really created following the ISO9660/MODE1/2048 (+UDF/Joliet/...) standard, but probably created as ISO9660/MODE1/2352 (+UDF/Joliet/...) or BIN (binary). So each sector will have 'synchronization data', and 'Error Check Data', found on Discs to allow recovery / re-creation of sector data in case of Disc Surface damages and such.

Such 'extra' data located on ISO/MODE1/2352 BIN (binary) disc images is not so evident on regular old school CD (700mb) images, size of the ISO/MODE1/2048 version of it will always be less. I bet they didn't even include a .CUE file as well, since they are "probably" not following any standard.

Anyway, ISO9660 disc images in binary form should always be named .BIN and include a .CUE file. There is a probability that I am wrong, maybe it is some kind of new ISO that doesn't follow any Standards (I really doubt it ), but I will try to acquire the released "ISO" to verify it myself. I hope that if my theory is right, these release groups choose to release future disc images as BIN/CUE, just to avoid any confusion with already circulating ISOs.

Reason to Release new "ISO"s - I doubt that the reason of releasing such "ISO"s is because Sony could detect regular ISO/MODE1/2048 (LOL ). The Cobra Optic Drive Emulator, was probably designed to read data as the real BD-Drive reads it, so when it cannot find the original 'synchronization data', 'header', 'error check data', etc... it will most probably give read error.

Just to confirm my point, I made a custom disc image following ISO9660/MODE1/2352 standard of "BCES01435-[PlayStation All-Stars Battle Royale]", and the resulting size is 6.75 GB, very similar indeed to the one released by "TL" group. If I made the custom disc image as ISO9660/MODE1/2048 then the resulting size would be approx. 5.84 GB.

I just need to acquire one piece of the release made by "TL" and I will be able to confirm if the ISO is a BIN named and published incorrectly without proper CUE. The difference between their size is approx. 13.48% [ ((6.75 - 5.84) / 6.75) * 100 ]. So if this difference rate is same in all PS3 disc images ripped as ISO/MODE1/2352, then a 40 GB game would have approx. 5.39 GB more when saved as BIN/CUE. SeeYa!

Still can't get too excited at tearing apart a PS3 console, soldering tiny wires inside and requiring additional hardware to play PS3 games with the advent of PlayStation 3 Custom Firmware a few years ago though.

From zadow28 on the 3K3y PKG file: pastebin.com/79V2KdTK

I'm not into VS very much, maybe the devs can have an look. It's the visual source/assembly code for the x3key ps3 software for pc. got there keys and even shows there iso disc codes, plus a lot more. I'm not an visual expert, so maybe there are some visual experts here. shows how the x3key acts like an Bulk etc.

Finally, HERE is a 3K3y PS3Dec (alternative encryptor/decryptor) from bubba (aka red_meryl) for those interested!

From 3Key: 3k3y IRD files 2013-03-15 is a collection of IRD (Iso Rebuild Data) files for 3k3y. Use them to convert PSJB game dumps to full PS3 ISO.






Stay tuned for more PS3 Hacks and PS3 CFW news, follow us on Twitter and be sure to drop by the PS3 Hacks and PS3 Custom Firmware Forums for the latest PlayStation 3 scene updates and homebrew releases!

Comments 83 Comments - Go to Forum Thread »

Errors

The following errors occurred with your submission

Okay

Quick Reply Quick Reply

  • Decrease Size
    Increase Size
  • Wrap [QUOTE] tags around selected text
Posting Quick Reply - Please Wait Posting Quick Reply - Please Wait
Tidusnake666's Avatar
#53 - Tidusnake666 - 35w ago
Reply
That's cool, etc, etc.

But it still needs 3.55 and on 3.55 you can convert console to DEX and play nearly every new game. So, unless they make an 4.xx+ solution, it's not much of use to the end-user (although it's a quite a breakthrough in PS3 scene, glad to see smth like WODE)

PS3 News's Avatar
#52 - PS3 News - 36w ago
Reply
Following up on the previous update, today the PS3 3K3y Team have made available a video, the official features and release date of 12-12-12 for those interested below.

To quote: PS3 3K3y Features:

• Play your PS3, PS2 and PSX games from any USB media!
• No custom firmware required for operation* - you can update to the latest official firmware for PSN access
• Integrated game ripper
• User friendly intuitive interface
• No soldering required
• Multi-language support
• Compatible with both Fat and Slim models
• Supports most file systems, including NTFS, EXT2/3/4, and Mac OS X Extended
• High speed USB2 interface
• Powerful embedded Linux system running from Micro SD card (included)
• Linux firmware fully updatable from USB media
• FPGA fully updatable from USB media via built-in, in-system JTAG programming
• Recovery mode - it is always possible to recover from a bad flash Update your PS3 as normal, no CFW or game patching required
• Pass-through mode. (Use your PS3 in "normal mode")

* Currently firmware 3.55 is required for exctracting the drive key. Once the key has been extracted the PS3 can be updated to any official or custom firmware. We are working on hardware methods for extracting keys from PS3's already on 4.x firmware.

PS3 3K3y How It Works:

3k3y is an optical disk drive emulator for the PlayStation 3 video game console. It is installed between the genuine Blu-ray drive and the PS3 motherboard.

Once 3k3y is successfully installed and configured it can be used to make backups of your original PS3 game disks to USB media, and play those backups from USB media without the need of the original game disk.

Several games can be backed up to a single USB media, making it ideal as a 'jukebox' for hardcore gamers as well as for families with children too young to handle bluray discs with appropriate care.

3k3y works with most PS3 models, however there are a few exceptions, most notably the new super slim model and all PS3s which comes with firmware 4.xx (after retrieving the drive key the PS3 can be upgraded to any firmware). We are working to add support for these PS3's but you are adviced to consult with your reseller if you are in doubt whether your PS3 is compatible with 3k3y or not.





Finally, 3K3Y has detailed pricing at a costly USD $129 for those who can't wait for free PlayStation 3 scene solutions, new PS3 key leaks, CEX and DEX fixes, etc.

Shortly following, a bit more information about 3K3y and 3Dump (via consolecrunch.com/more-information-about-3k3y-3dump-coming-soon/) surfaced, to quote:

Following up on the previous update, today the 3K3y Team shows us a picture of their future release application called 3Dump that allows you to dump the key that is needed to use the 3K3y.




More PlayStation 3 News...

Shade01's Avatar
#51 - Shade01 - 36w ago
Reply
Lol, and how is the scene supposed to make progress if every significant discovery is kept private?

Any kind of exploit can be patched but if you use that excuse then nothing is ever going to be released.

NotJustAnyRob's Avatar
#50 - NotJustAnyRob - 36w ago
Reply
Originally Posted by StanSmith View Post
Quote The problem I see is getting that BDkey. I have a PS3 that came with 4.21 so it cant be downgraded so how will that get the key? There has to be another way then it'll be great. And as long as sony cant detect it. The Xbox360 has one of these too and it can be detected and was disabled via a firmware update.

That's why things like this need to stay private (I think)

derceto's Avatar
#49 - derceto - 36w ago
Reply
Originally Posted by dreekuuh View Post
Quote will this mean we all have to change the CFW 3.55 eboots to the original ones to play the games on HDD With the Ps3key? It's gonna be a hell of o job to do this

Thankfully, myself anyways, I've always kept complete clean dumps in a folder. All the updates and patched eboots and stuff I keep separate. Always a good idea to keep clean copies just in case of something like this. However, I'm guessing it won't be very hard to find clean eboots anywhere. Likely see some collection somewhere posting them up.

Page 7 of 17 «‹123456789›LAST »

Related PS3 News and PS3 CFW Hacks or JailBreak Articles

• PS3 EDAT Devklic Bruteforcer v1.0 / v1.1 By JjKkYu is Released
• MAME 0125 (Multiple Arcade Machine Emulator) for PS3 Release 1 Out
• PS3 Game List by Nullptr PlayStation 3 Homebrew App is Released
• MultiMAN v04.40.00 PS3 Server and Showtime Edition Updates Out
• ScummVM 1.6.0 PlayStation 3 Emulator Updated, +4 to Engines
• PSN Tool v1.0 and PSN Tool Creator v1.0 to Combat PSN Bans Arrive
Affiliates  NewsNow  Privacy  PS3 CFW & MFW  PS3 Hacks & JailBreak  PS3 Reviews  PS3 Videos  © 2013 PlayStation 3 News

PlayStation 3 Links

• Contact Us E-Mail
• PS3 Affiliates
• PS3 CFW & MFW
• PS3 Debug Firmware
• PS3 Decrypted PSN Links for CFW
• PS3 Downloads
• PS3 EBOOT.BIN Original File Links
• PS3 Firmware
• PS3 Game Releases List
• PS3 Guides & Tutorials
• PS3 Hacking Guides and Tutorials
• PS3 Hacks & JailBreak
• PS3 Help & Support
• PS3 JailBreak Game Compatibility List
• PS3 JB2 / True Blue (TB) Game Links
• PS3 multiMAN Updates
• PS3 News Forums
• PS3 News Site FAQ
• PS3 News Site Advertising FAQ
• PS3 News Site Posting FAQ
• PS3 News Site Privacy FAQ
• PS3 News Site Rules
• PS3 News Site Tag Cloud
• PS3 News Site Terms
• PS3 Resources
• PS3 Reviews
• PS3 Save Files Repository
• PS3 Themes
• PS3 Trophies List
• PS3 Videos
• PS Vita Trophies List

PlayStation 3 News Discussions
What is your favorite game franchise series? - 11m ago

Liongooder's Avatar
Quote Any R* franchise series NFS GOW Resident Evil The Elder Scrolls Fallout Uncharted...
By Liongooder with
 104 Comments »
[+1 QP] What Do You Enjoy Doing When Offline? - 14m ago

Liongooder's Avatar
Quote Offline i like sports especially ping pong, swimming & cliff jumping from high cliffs is my favorite. my favorite movies are Shawshank redemption...
By Liongooder with
 33 Comments »
PSN Games Decrypted for PS3 Custom Firmware 3.55 by DUPLEX! - 14m ago

candan's Avatar
Quote Hi all. For The Last of Us, what am I doing wrong? MM won't merge the split files together again. Here's what I did... Using Rogero 4.41 ...
By candan with
 8295 Comments »
Naughty Dog Reveals Uncharted 3: Ancient Multiplayer PS3 DLC - 24m ago

PS3 News's Avatar
Quote Naughty Dog Community Strategist Eric Monacelli revealed some fresh Uncharted 3: Ancient Multiplayer PS3 DLC to fans today. To quote: It's ne...
By PS3 News with
 0 Comments »

Latest PlayStation 3 Trophies
Dungeons & Dragons: Daggerdale: The Big Stick
Dungeons & Dragons: Daggerdale: Four of a Kind
Dungeons & Dragons: Daggerdale: Man at Arms
Dungeons & Dragons: Daggerdale: Solid Gold

Latest PlayStation Vita Trophies
Jak II (Vita): The Collectationator!
Jak II (Vita): The Collectivist
Jak II (Vita): The Collector
Jak II (Vita): Head Master

Latest PlayStation 3 Releases
Le Tour De France 2013 PS3-STRiKE - 06-18-2013
MotoGP 13 PS3-COLLATERAL - 06-17-2013
Remember Me USA PS3-ANTiDOTE - 06-17-2013
The Last of Us ASiA MULTi3 PS3-Kirin - 06-14-2013

Latest PlayStation 3 Themes
The Last of Us PS3 Theme - 06-14-2013
God Of War 3 (Unofficial V1/V2) PS3 Theme - 06-12-2013
Heavy Rain (Official) Dynamic PS3 Theme - 06-11-2013
PlayStation Classic PS3 Theme - 06-11-2013
  • Contact Us
  • -
  • PS3 News