-
Compteur de contenus
16 939 -
Inscription
-
Dernière visite
Type de contenu
Profils
Forums
Calendrier
Downloads
Tout ce qui a été posté par zouzzz
-
Ok merci killler. ( http://abgx360.net/verified.php?f=wave&q=6 , wave6 ?)
-
Salut, Si je comprends bien ce fw boot aussi les iso non stealh et quelque soit /sera la wave, c'est bien ça ?
-
Salut, REP Cathy. ... et dire que quand j'étais ado je trouvais les quarantenaires vieux ; 47 ans c'est bien jeune pour mourir.
-
Réaliser Son Connectivity Kit "ck Free"
zouzzz a répondu à un(e) sujet de ashtar dans Bricolage / Réparation / Pannes courantes
Fais toi relire avant de poster ton tuto. Si tu veux MP-le moi, je corrigerai les plus grosses fautes. (car ton dernier post est franchement illisible) -
Pour ceux que ça intéressent encore, une review ici : http://www.dcemu.co.uk/neo-myth-n64-cart-r...64--284373.html
-
Ya plus qu'à comparer.
-
Débannir Une Xbox360
zouzzz a répondu à un(e) sujet de zouzzz dans Bricolage / Réparation / Pannes courantes
Salut, Non car ta clef CPU de la console A ne pourra pas décrypter le rawkv.bin de la console B. Il faut 'abord extraire le rawkv.bin de la console B et l'injecter dans la console A en le cryptant avec la CPU key de la console A. -
T'en sais toi des choses.
-
Réaliser Son Connectivity Kit "ck Free"
zouzzz a répondu à un(e) sujet de ashtar dans Bricolage / Réparation / Pannes courantes
T'auras alors plus qu'à créer ton propre fw hacké. -
Je n'ai pas accès tous les jours mon Vista (pour le moment). Je te dirai quand je pourrai.
-
T'es sur qu'avec modio il peut, pas moi. Par contre Le Fluffie doit convenir.
-
Ca fait quasi 2 ans que des outils pour 360 se vendent et elle n'est pas morte pour autant. La scène 360 ressemble/era à toutes les autres, le hack est un bissness pour certains, il n'y a qu'à voir l'explosion du nombre de site à news rempli de pubs (-->"pour payer les serveurs", et mon cul c'est du poulet?), de sites vpc, d'applications sous-disant "underground" payantes, etc.
-
Et ils parlent bizarement avec de drôles d'expressions.
-
N'arrive Pas A Determiner Le Secdata A éffacé
zouzzz a répondu à un(e) sujet de fhm57 dans JTAG - LPT/USB
Salut, bizare que secdatascan ne boote pas, tu as bien installé Framework avant ? -
Salut, A-t-on un changelog/fixlog/readme enfin une info sur ce que apporte ou peut apporter ce fw ? Je ne trouve aucune info nulle part. Merci.
-
Salut, Avec tous ces packs et ecs réductions en tout genre, on s'y perd. Existerait-il un récapitulatif sur les différents packs et leurs prix quelque part ?
-
Réaliser Son Connectivity Kit "ck Free"
zouzzz a répondu à un(e) sujet de ashtar dans Bricolage / Réparation / Pannes courantes
Pareil. evil : t'as un public sur gueux. -
Non.
-
Bon je n'arrive pas à installer sous Vista Home... rien à faire. Je vais attendre que WindowsUpdate me propose une maj VS2005 SP1, Wait and seee. Note : j'ai déjà installé sur des XP avec succès.
-
Nouveau firmware ixtreme LT (Lite Touch) en développement
zouzzz a répondu à un(e) sujet de Newserator dans News
Oui, je ne suis pas sur que se soit une vague. MS ban tout le temps 3 jours pas ci, 1 semaine par là ou même total, et ban massivement à certains moments (vagues). Connaissant un poil les sites gen, c'est plus un coup de "buzz" d'autre chose. -
Nouveau firmware ixtreme LT (Lite Touch) en développement
zouzzz a répondu à un(e) sujet de Newserator dans News
Quelle "rigolade" ce LT. -
Salut, Dstruktiv nous offre ses sources Quickboot v1.1 en c++ ou c# (à vous le choix) : /*QuickBoot v1.1 Xbox 360Coded by DstruktivI was going to snip out a couple of bits of code, namely the simplified drive mounting code as it wasn't mine, but I see someone has kindly already taken the source of this off our "private" ftp and it's now on pastebin as of 24/12/09 and some Spanish Xbox hacking site so may as well make it easy to find... Captain we have a leak.*/#include "stdafx.h"#include <xtl.h>#include <xam.h>#include <iostream>#include <fstream>#include <sys/stat.h>#include "xfilecache.h"#include <string>using std::string;using std::ifstream;using std::ofstream;typedef struct _STRING { USHORT Length; USHORT MaximumLength; PCHAR Buffer;} STRING, *PSTRING;extern "C" int __stdcall ObCreateSymbolicLink( STRING*, STRING*);extern "C" int __stdcall ObDeleteSymbolicLink( STRING* );HRESULT Map( CHAR* szDrive, CHAR* szDevice ){ CHAR * szSourceDevice; CHAR szDestinationDrive[16]; szSourceDevice = szDevice; sprintf_s( szDestinationDrive,"\\??\\%s", szDrive ); STRING DeviceName = { strlen(szSourceDevice), strlen(szSourceDevice) + 1, szSourceDevice }; STRING LinkName = { strlen(szDestinationDrive), strlen(szDestinationDrive) + 1, szDestinationDrive }; return ( HRESULT )ObCreateSymbolicLink( &LinkName, &DeviceName );}HRESULT unMap( CHAR* szDrive ){ CHAR szDestinationDrive[16]; sprintf_s( szDestinationDrive,"\\??\\%s", szDrive ); STRING LinkName = { strlen(szDestinationDrive), strlen(szDestinationDrive) + 1, szDestinationDrive }; return ( HRESULT )ObDeleteSymbolicLink( &LinkName );}void launchX(char* xfile){ XFlushUtilityDrive(); XFileCacheInit(XFILECACHE_CLEAR_ALL,0,XFILECACHE_DEFAULT_THREAD,0,1); XFileCacheShutdown(); XFlushUtilityDrive(); XLaunchNewImage(xfile,0);}bool FileExists(char* strFilename) { struct stat stFileInfo; bool returnValue; int intStat; intStat = stat(strFilename,&stFileInfo); if(intStat == 0) { returnValue = true; } else { returnValue = false; } return(returnValue);}void debugLog(char* output){ unMap("usb:"); if (Map("usb:","\\Device\\Mass0") == S_OK ) { ofstream writeLog; writeLog.open("usb:\\debug.log",ofstream::app); if (writeLog.is_open()) { writeLog.write(output,strlen(output)); writeLog.write("\n",1); } writeLog.close(); }}VOID __cdecl main(){ char path[512]; if (FileExists("game:\\config.ini")) { ifstream config; config.open ("game:\\config.ini"); if (config.is_open()) { config.getline (path,512); config.close(); } } else { debugLog("Config not found"); debugLog("game:\\config.ini"); } string pathstr = path; string pathstr1 = path; string pathstr2 = path; if(pathstr.substr(0,3) == "usb") { pathstr.insert(3,"0"); pathstr1.insert(3,"1"); pathstr2.insert(3,"2"); char *a; char *b; char *c; a=&pathstr[0]; b=&pathstr1[0]; c=&pathstr2[0]; Map("usb0:","\\Device\\Mass0"); Map("usb1:","\\Device\\Mass1"); Map("usb2:","\\Device\\Mass2"); if(FileExists(a)) { launchX(a); } else if (FileExists() { launchX(; } else if (FileExists©) { launchX©; } else { debugLog("Executable not found on any usb device at specified path:"); debugLog(path); } } else if (FileExists(path)) { Map("hdd:","\\Device\\Harddisk0\\Partition1"); Map("dvd:","\\Device\\Cdrom0"); launchX(path); } else { debugLog("Executable not found at specified path:"); debugLog(path); }} /*QuickBoot v1.1 PC Tool (Visual C#)Coded by DstruktivBig thanks to DJ Shepherd for X360.dll*/using System;using System.IO;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using X360.STFS;using X360.Other;using X360.IO;namespace QuickBoot{ public partial class QuickBoot : Form { public QuickBoot() { InitializeComponent(); } CreateContents xsession = new CreateContents(); bool imageUpdated = false; string processDir = (System.Environment.CurrentDirectory); //Work around for Windows XP private void Form1_Load(object sender, EventArgs e) { System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip(); System.Windows.Forms.ToolTip ToolTip2 = new System.Windows.Forms.ToolTip(); System.Windows.Forms.ToolTip ToolTip3 = new System.Windows.Forms.ToolTip(); System.Windows.Forms.ToolTip ToolTip4 = new System.Windows.Forms.ToolTip(); System.Windows.Forms.ToolTip ToolTip5 = new System.Windows.Forms.ToolTip(); ToolTip1.SetToolTip(this.txtTitle, "Application name that will show in NXE"); ToolTip2.SetToolTip(this.txtDescription, "Application description that will show in NXE"); ToolTip3.SetToolTip(this.txtPath, "Path relative to your Xbox 360 - \"usb:\\\",\"hdd:\\\",\"dvd:\\\" are supported drives. Example: hdd:\\Games\\tekken6\\default.xex"); ToolTip4.SetToolTip(this.imgDash, "Click here to add custom image that will show in NXE. Must be 16KB or less and exactly 64x64 resolution"); ToolTip5.SetToolTip(this.comboBox1, "An Xbox 360 Game will show up under the Xbox 360 Games menu item in the NXE dash, likewise a Game Demo will show up under Game Demos"); comboBox1.SelectedIndex = 0; DJsIO xIO = new DJsIO("xbox\\default.xex", DJFileMode.Open, EndianType.BigEndian); string xPath = "xbox\\default.xex"; xPath = xIO.FileNameShort; if (!xsession.AddFile(xIO, xPath)) { xIO.Close(); return; } } byte[] ToHex(string xIn) { for (int i = 0; i < (xIn.Length % 2); i++) xIn = "0" + xIn; List<byte> xReturn = new List<byte>(); for (int i = 0; i < (xIn.Length / 2); i++) xReturn.Add(Convert.ToByte(xIn.Substring(i * 2, 2), 16)); return xReturn.ToArray(); } private void btnBuild_Click(object sender, EventArgs e) { if (txtTitle.Text == "") { MessageBox.Show("Please fill in the title.", "Error"); } else if (txtDescription.Text == "") { MessageBox.Show("Please fill in the description.", "Error"); } else if (txtPath.Text == "") { MessageBox.Show("Please fill in the path.", "Error"); } else { xsession.STFSType = STFSType.Type0; xsession.HeaderData.Description = txtDescription.Text; xsession.HeaderData.Title_Display = txtTitle.Text; PackageType xVal; if (comboBox1.SelectedIndex == 0) { xVal = PackageType.GamesOnDemand; } else { xVal = PackageType.GameDemo; } xsession.HeaderData.TitleID = ((uint)3235813785); xsession.HeaderData.ThisType = xVal; xsession.HeaderData.Publisher = "F586558"; xsession.HeaderData.Title_Package = "QuickBoot Launcher"; xsession.HeaderData.SeriesID = ToHex("00000000000000000000"); xsession.HeaderData.SeasonID = ToHex("00000000000000000000"); xsession.HeaderData.DeviceID = ToHex("0000000000000000000000000000000000000000"); xsession.HeaderData.IDTransfer = TransferLock.AllowTransfer; if (!imageUpdated) { Byte[] defaultImage = (Byte[])new ImageConverter().ConvertTo(imgDash.Image, typeof(Byte[])); xsession.HeaderData.PackageImageBinary = defaultImage; xsession.HeaderData.ContentImageBinary = defaultImage; } DJsIO zIO = new DJsIO(processDir + "\\xbox\\config.ini", DJFileMode.Open, EndianType.BigEndian); string zPath = processDir + "\\xbox\\config.ini"; zPath = zIO.FileNameShort; if (!xsession.AddFile(zIO, zPath)) { zIO.Close(); return; } DJsIO xIO = new DJsIO(DJFileMode.Create, "Select save location...", "", EndianType.BigEndian); if (!xIO.Accessed) return; LogRecord rec = new LogRecord(); RSAParams xParams; xParams = new RSAParams(StrongSigned.LIVE); STFSPackage xy = new STFSPackage(xsession, xParams, xIO, rec); if (!xy.ParseSuccess) { MessageBox.Show("Error"); this.Close(); } txtTitle.Text = ""; txtDescription.Text = ""; txtPath.Text = ""; zIO.Close(); xsession.DeleteFile(zPath); if (comboBox1.SelectedIndex == 0) { toolStripStatusLabel1.Text = "Container built, copy to: Content\\0000000000000000\\C0DE9999\\00007000"; } else{ toolStripStatusLabel1.Text = "Container built, copy to: Content\\0000000000000000\\C0DE9999\\00080000"; } } } private void imgDash_Click(object sender, EventArgs e) { DJsIO xIO = new DJsIO(DJFileMode.Open, "Open a PNG", "PNG File|*.png", EndianType.BigEndian); if (!xIO.Accessed) return; if (xIO.Length > 0x4000) { MessageBox.Show("Error: Image is too big"); return; } byte[] x = xIO.ReadStream(); try { Image y = x.BytesToImage(); imgDash.Image = y; } catch (Exception z) { MessageBox.Show(z.Message); return; } xsession.HeaderData.PackageImageBinary = x; xsession.HeaderData.ContentImageBinary = x; } private void txtPath_Leave(object sender, EventArgs e) { using (StreamWriter config = new StreamWriter(processDir + "\\xbox\\config.ini")) { config.WriteLine(txtPath.Text); } } private void imgDash_LoadCompleted(object sender, AsyncCompletedEventArgs e) { imageUpdated = true; } } }
-
Ne nous faites pas une scène toute haineuse.
-
Salut, wxpirs te permettra d'explorer les pirs, live et con.
-
Réaliser Son Connectivity Kit "ck Free"
zouzzz a répondu à un(e) sujet de ashtar dans Bricolage / Réparation / Pannes courantes
80Y n'est aucunement ironique dans son dernier post, je t'assure.
