Hackers obtain PS3 private cryptography key due to epic programming fail? (update)

On viernes, 31 de diciembre de 2010 0 comentarios

The 27th annual Chaos Communication Conference already hacked encrypted GSM calls with a $15 cellphone, but there was a second surprise in store this morn -- the souls who unlocked the Nintendo Wii's homebrew potential (and defended it time and again) claim to have broken into the PlayStation 3 as well. Last we left the black monolith, Sony had won a round, forcing the community to downgrade their firmware for any hope at hacking into...
Read more ...»

Subidas las primeras "tools" publicadas para aprovechar el failoverflow

On 0 comentarios

Cuando se hizo público el video del team overflow sobre un nuevo método para meter linux en PS3 y obtener la posibilidad de firmado y cifrado de keys originales de Sony, hoy el team geohot a lanzado una aplicacion denominada dePKG que es un "firmware pakage decryter". Unas aplicaciones que permiten desencriptar el firmware de ps3 usando linux, tal como nos mostraron en el video de ayer. No se sabe de donde la han conseguido pero,...
Read more ...»

FailOverFlow, la piratería a ps3 vuelve.

On 0 comentarios

Si hay una consola que ha superado todos los records de antipiratería, esta es la Playstation 3, si señor, aparte de que los juegos son caros, no se puede piratear. Todo sea por hacer el trabajo bien en las oficinas de Sony, claro está. Pero no todo es un camino de rosas, y si no, pregúntenselo a alguien de Sony, que llevamos unos meses que no paran de salir noticias sobre Jailbreak, que si hace unos meses atras, Geohot estuvo manipulando...
Read more ...»

PS3 - FailOverflow - Exploit de firmado - Actualización

On 0 comentarios

Asi es señores, ¡se ha desvelado el misterio de la Hacker Conference! Al parecer se trata de un nuevo exploit que les ha permitido obtener la tan ansiada masterkey (si, habeis leido bien, masterkey). Segun palabras textuales de uno de los conferenciantes:"With Private Keys you can SIGN THINGS"Al parecer, gracias a este grandísimo avance, podrían firmar todo tipo de contenido para poder ejecutarlo en cualquier PS3.Han llamado este exploit...
Read more ...»

Sony's PS3 Security is Epic Fail - Videos Within

On 0 comentarios

This morning was the big unveil at the Chaos Communication Congress in Berlin, and it did not disappoint. Here is a brief synopsis for those that missed it. The first few minutes of the conference were spent explaining the state of security on other consoles (Wii, 360, etc). Following this, the group went on to explain the current state of affairs on the PS3. First, explaining Geohot's memory...
Read more ...»

PS3 Epic Fail: revelados los nuevos exploits

On 0 comentarios

La esperada conferencia sobre la seguridad de PS3 acaba de concluir, y las revelaciones han superado las expectativas. Todavía no conocemos los detalles, pero Marcan y su equipo de hackers han revelado dos importantes vulnerabilidades: jailbreak sin necesidad de dispositivo USB y firmado de ejecutables. Sin duda después de estos hacks volverá a haber un antes y un después en la scene de PS3, como...
Read more ...»

Alemania: hackers aseguraron haber decodificado el PlayStation 3

On 0 comentarios

Alemania: hackers aseguraron haber decodificado el PlayStation 3 La noticia se difundió en la reunión anual de tecnología en Berlín, donde participaron más de 3.000 personas para también hablar del caso Wikileaks (pe.playstation.com)Berlín (EFE). El grupo de “hackers” denominados “failOverflow” afirma que descodificó la consola PlayStation 3 de Sony,...
Read more ...»

GameGuard related

On miércoles, 29 de diciembre de 2010 0 comentarios

-=[ GameGuard related ]=- npgg_runtime.rar - - Allows for running GameGuard/GameMon without a game client. nProtectDec.rar - - decodes and output strings from nProtect binaries. rebootme.rar - - some simple code, instantly reboots system if GameGuard is running. rev_1467.txt - - GameMon: Revision 1467 - decrypted strings save_wmimmc.rar - - some driver code to prevent deletion of dump_wmimm...
Read more ...»

Rohan Gameguard bypass

On 0 comentarios

...
Read more ...»

[Share/Tutorial] TRose.exe v149 without gameguard

On 0 comentarios

Hi again, seems like new clients appears more offen than i visit the toilet these days. So i'll write a complete guide and share my latest TRose.exe v149 without gameguard. I thought i'd do a better release this time around, last time was a real patchjob. Firstly, what you need todo this time, is to remove gameguard from ever loading. For you who know programming, you use CreateProcessA to make a new application appear from your own...
Read more ...»

Video Tutorial - Memory Pattern Scanning

On lunes, 27 de diciembre de 2010 0 comentarios

by P47R!CK This is my video tutorial on scanning memory patterns to find addresses in memory that change during recompilation. Click here for the tutorial! The pattern scanning function: 1234567891011121314bool bDataCompare(const BYTE* pData, const BYTE* bMask, const char* szMask){    for(;*szMask;++szMask,++pData,++bMask)        if(*szMask=='x'...
Read more ...»

Video Tutorial - Function Hooking

On 0 comentarios

This is my video tutorial on function hooking. Click here for the tutorial! The hooking function: 12345678void WriteJMP(byte* location, byte* newFunction){DWORD dwOldProtection;VirtualProtect(location, 5, PAGE_EXECUTE_READWRITE, dwOldProtection);location[0] = 0xE9; *((dword*)(location + 1)) = (dword)(newFunction - location) - 5;VirtualProtect(location, 5, dwOldProtection, &dwOldProtection);} Complete...
Read more ...»

Video Tutorial - Structures in Memory

On 0 comentarios

by Patrickssj6   This is my video tutorial on structures in memory. We are going to focus on player structures which can be found in many commercial games and how to reverse them Click here for the tutorial! Click here for the program and source code! Enj...
Read more ...»

Lightweight Detours

On 0 comentarios

Lightweight Detours While working on my toolkit library I did some work on detours and I think I made something interesting. I made 2 'code patching' hook classes. One is a good old detour to hook functions. The other is far more interesting, it basically allows you to 'wiretap' any function any where in its body. A quick review: PHP Code: #ifndef _TOOLKIT_DETOURS_HGUARD #define _TOOLKIT_DETOURS_HGUARD...
Read more ...»

Punkbuster "Unknown API" Kick Bypass

On 0 comentarios

Punkbuster "Unknown API" Kick Bypass Use this as you will, it's simply a proof of conept PB still sux IMO. I see a lot of people having issues and here's something to get you started. Basically I was doing some Breakpointing in PB and stumbled upon this lovely buffer outside the code area of pbcl. It seems they are still only using pbcl to do certain things and the service APPEARS to scan simply...
Read more ...»

Punkbuster Hardware Viewer

On 0 comentarios

Punkbuster Hardware Viewer /* Just a Simple Program written to load the pb driver externally (Got Debug?) - PizzaPan / Game-Deception! (www.gamedeception.net) Credits: Tetsuo, RunningBon, panzer, Xen, h1web, Sparten, Kosire, Google! */ /* Remember These Simple Rules of Coding to Make the Source Code Work! 1.) Remember to rename any voids, and remove any traces of _asm! 2.) static const char *[1000] Couch = { (Couch =...
Read more ...»

Punkbuster Debugger Detection Bypass

On 0 comentarios

Punkbuster Debugger Detection Bypass /* Anti-PB Plugin (Fixes ZwQueryObject Detection) Credits: CDetour: Tetsuo/LanceVorgin (also check CDetour.cpp) Bits & Bats: RunningBon/panzer/Xen/Sparten/Kosire Volcano Master: h1web EngRish Lessons: Pansemuckl! Remember These Simple Rules of Coding to Make the Source Code Work! 1.) Remember to rename any voids, and remove any traces of _asm! 2.) static const char *[1000] Couch...
Read more ...»

IDA plugin to grab encrypted debug strings.

On 0 comentarios

A plugin to grab encrypted debug strings. Made tonight, cost me a bottle of coca'cola ^^ i hope u'll enjoy it. Not really spent a lot of time to clean the code so :/ sorry ? the plw is in attachment here : dcp.rar Code:/* IDA plugin for PnkBstr Copyright 2010 (ThiSpawn on gamedeception.com) - All Rights Reserved This program is free software: you can redistribute it...
Read more ...»

AUTHOR BEST THEME | CSS BY NEWWPTHEMES