Help - Search - Members - Calendar
Full Version: An Easier Way To Sign Files
Scenyx Entertainment Community > Xbox1 Forums > No-Modchip Hacks (exploits) > GameSave Exploits
Pages: 1, 2
RiceCake
I just spent roughtly two hours cookin' up this batch file to make signing files easier.

To use it put a default.xbe, xbedump.exe, and the signer files below all in the same directory (Eg, the Desktop). Then run the file below.

Anyhow here it is, %100 legal, almost all my own typed code, Morden helped too! By using this however you agree to give me credit and not pass this off as your own.

The 'quick signers' on the bottom of this post are for quicker use. Simply download one for your appropriate hack, stick it in with xbedump.exe and a default.xbe, run it, and it'll just blast through signing.


XBE Signer Full Application:

These compressed files also include 'menu.exe', requred for PC's without the 'choice.exe' command (NT-XP-2003).
They also include xbedump.xbe, just unzip the file, stick your default.xbe in the folder, and sign!
eazsign.zip - Eazy File Signer V3
eazsign.rar - Eazy File Signer V3

The files below are becoming obsolete and do not work correctly with NT-XP-2003!
eazsign.bat - Eazy File Signer V2!
eazsign1.bat - Eazy File Signer

CatFish's Signing Utility

Well, after alot of wonderin' what was happening, I decided I'll stick this up.
His utility is a bit longer to install but you can sign files by right-clicking them!
Instructions
Ez-XBEDump V2
Ez-XBEDump V1
MechInstaller-Phoenix

Quick Signers

eazgame.bat - Eazy File Signer For GameSave And Most Audio Exploits
eazfont.bat - Eazy File Signer For Font Hacks
eazaudio.bat - Eazy File Signer For Other Audio Hacks


XBE Dump Application


Paece...
JohnR
thanks for that , my xbox was giving me error 21 before i tried this batch file to sign the files

RiceCake
All right! Good to see its helping!

Oh and if anyone has Windows XP or 2000 and this works, please tell me, as I'm curious if batch files, well, work under these 'DOS-independant' OS's.
Mad_Gouki
your batch file is way more complicated then mine was, heh
rock on man, good job!
RiceCake
Yeah well, I was familiar with DOS and wrote one for the Font/one for Habibi, but managed to come across a website filled with scripting commands so, lol, this baby was born.

Edit: Thanks!
motox333
Nice one RiceCake! Ill try it on my XP machine once i downgrade my dash so i can boot up the audio hack again. dry.gif grr.gif
RiceCake
Lol, thanks...
Blank
RiceCake: Very nice! It signed perfectly on my XP machine. Thanks smile.gif
RiceCake
Booyeah!

Heh, I guess I'll start looking for a way to make saves Action Replay compatible using a simple program, except it'll have to look for files.

Guess I'll go learn BASIC now smile.gif.
JohnR
im also using windows xp sp1
RiceCake
All right! Windows XP can run batch files!

So far this has turned out to be the most trouble free thing I've done in a long time!
Blank
QUOTE (RiceCake @ Feb 1 2004, 04:06 PM)
So far this has turned out to be the most trouble free thing I've done in a long time!

For some odd reason I find myself laughing at this comment... laugh.gif
RiceCake
blink.gif
Jefe1
I thought signing for Audio and Gamesave were different... in your batch file, you are saying they are the same.

J.
Blank
QUOTE (Jefe1 @ Feb 2 2004, 10:27 AM)
I thought signing for Audio and Gamesave were different... in your batch file, you are saying they are the same.

J.

Techinically, they ARE different:

Font Signing = -font
Audio Signing = -audio
Gamesave Signing = -habibi

This bat, from what I can tell, only signs it with the -habibi key.

RiceCake: Any chance you would add in some options to choose what you want to sign it with?

RiceCake
Actually the audio signing works dick-all.

The hacked audio hack, that loads stuff other than Linux, uses the Habibi key.

If anyone can find an audio hack that uses the audio key, feel free to tell me, although I believe the audio key is actually the font key.
Blank
QUOTE (RiceCake @ Feb 2 2004, 12:35 PM)
Actually the audio signing works dick-all.

The hacked audio hack, that loads stuff other than Linux, uses the Habibi key.

If anyone can find an audio hack that uses the audio key, feel free to tell me, although I believe the audio key is actually the font key.

...but what about the -font key? There are quite a few people who need to sign files that use the fonts hacks...
Grospolina
Good job!

Actually, the swapless audio exploit that I "released" (if you can call it that), and the new stable audio exploit that catfish and Morden did (see my sig) both use the -audio key. It's not the same as the -font or -habibi keys. Some of the audio exploits do use the -habibi key though, so that's probably what you have.
RiceCake
Yep, the font key's in there.

Currently theres the Habibi and Font section but I'll add the audio section. Hopefully newbs will try both...or know what the hack needs...
Blank
QUOTE (RiceCake @ Feb 2 2004, 03:55 PM)
Yep, the font key's in there.

Currently theres the Habibi and Font section but I'll add the audio section. Hopefully newbs will try both...or know what the hack needs...

Hmmm, I was looking at the code for your bat and SEE the options for both the -habibi key and -font key, but when you hit 1 or 2, it still signs with -habibi.

Also, when you press any key to continue, it automatically starts the signing, regardless of your choice of key. It automatically signs with the -habibi key, or at least it displays it as signing with the -habibi key.

After more carefully viewing, I found that your command "Choice" is not recognized as an internal or external command operable in the batch file. Thus not allowing you to make a choice. Again, this is what happens on an XP machine. I can't say for sure on other O.S. releases.
Grospolina
Hey, you're right. XP doesn't support the "choice" command. Well that's just annoying. Bah, why not just make three separate batch files then:

signfont.bat:

@echo off
xbedump.exe default.xbe -font
if not exist out.xbe goto end
del default.xbe
ren out.xbe default.xbe
:end

signsave.bat:

@echo off
xbedump.exe default.xbe -habibi
if not exist out.xbe goto end
del default.xbe
ren out.xbe default.xbe
:end

signaud.bat:

@echo off
xbedump.exe default.xbe -audio
if not exist out.xbe goto end
del default.xbe
ren out.xbe default.xbe
:end

That oughta work. Oh yeah, you should probably put in that "if not exist out.xbe" to check for output, otherwise you might delete default.xbe and be left with nothing (e.g. if xbedump.exe is missing).
BluhDeBluh
I don't even see the need for a batch file blink.gif

No offence, but I find typing "xbedump default.xbe -habibi", "xbedump default.xbe -font" or "xbedump default.xbe -audio" into command prompt easier than running it through a batch file. Maybe it's just my l33t command prompt skills.
Blank
QUOTE (BluhDeBluh @ Feb 2 2004, 04:57 PM)
I don't even see the need for a batch file blink.gif

No offence, but I find typing "xbedump default.xbe -habibi", "xbedump default.xbe -font" or "xbedump default.xbe -audio" into command prompt easier than running it through a batch file. Maybe it's just my l33t command prompt skills.

Same here. I don't MIND typing it in the command prompt. However, this would be more "user-friendly" to the n00bs... However, I can just see someone coding a GUI for it... laugh.gif
feflicker
Win2000/XP Users, all you need is a copy of choice.exe in your path... You can find this file on the net very quickly, it is quite popular in pre-2000 batch programming wink.gif
Blank
QUOTE (feflicker @ Feb 2 2004, 05:12 PM)
Win2000/XP Users, all you need is a copy of choice.exe in your path... You can find this file on the net very quickly, it is quite popular in pre-2000 batch programming wink.gif

ohmy.gif

Why didn't I think of that before--I remember having to do that for my Yzdock when I was running a bat.
Grospolina
BluhDeBluh, j00r s0 phr34kin 1337 omg plz!!1! tongue.gif tongue.gif tongue.gif </sarcasm>

And yes, it's for anyone who finds them convenient (n00bs and veterans alike). "Running it though a batch file" would consist entirely of copying and double-clicking on a file. If it's not your cup of tea, then fine. I don't use them either, but they're there if you want 'em.

QUOTE
However, I can just see someone coding a GUI for it...


Ugh, I could see that happening too. >_<
RiceCake
Damn it always has its downside...

Well I'll probably break-off and learn a better code to code this in. Currently BAT file programming is just getting lucky that your OS has the needed files such as choice, etc...

* Edit I created this because alot of newbs aren't familiar with venturing around DOS. That and I have no idea how to easily tell noobs how to load a command prompt, especially on an XP machine.

Anyone know a noob-friendly code that I could write this in? I haven't written anything bigger than HTML in my life wink.gif...


Edit2: I upgraded to version two! This one includes the audio signing option, slightly optimized code, and file checking. It also supports commandline (Eg: eazsign.bat audio or eazsign.bat habibi) although typically you can do this on your own if you know whats happening jester.gif .

Thanks to Morden for helping! Currently I'm working on my 'Single use' batch for you XP users having trouble with the CHOICE commands, or 98-ME users needing just a slim use one.
Blank
QUOTE (RiceCake @ Feb 2 2004, 07:12 PM)
Damn it always has its downside...

Well I'll probably break-off and learn a better code to code this in. Currently BAT file programming is just getting lucky that your OS has the needed files such as choice, etc...

* Edit I created this because alot of newbs aren't familiar with venturing around DOS. That and I have no idea how to easily tell noobs how to load a command prompt, especially on an XP machine.

Anyone know a noob-friendly code that I could write this in? I haven't written anything bigger than HTML in my life wink.gif...


Edit2: I upgraded to version two! This one includes the audio signing option, slightly optimized code, and file checking. It also supports commandline (Eg: eazsign.bat audio or eazsign.bat habibi) although typically you can do this on your own if you know whats happening  jester.gif .

Thanks to Morden for helping! Currently I'm working on my 'Single use' batch for you XP users having trouble with the CHOICE commands, or 98-ME users needing just a slim use one.

You should include the choice.exe in your release and make the thing a zip for all us lazy XP users... laugh.gif I believe the choice.exe has to be dumped in the C:\Windows\System32 directory.

EDIT:
BTW, if someone asks how to get to the command prompt in XP, tell them to goto Start, Run, and type "cmd.exe"
RiceCake
Ah, ok, lol. Never knew if that worked or not, and never had the need to ask about it before!

As for including CHOICE is that legal? If it is I'll stuck up an autoextracter of it or something.
Mordenkainen
Choice is not legal to distribute, but here is the site for a free replacement that you can do with as you wish. It will require (minor) changes. If you run into any trouble let me know... I have been working with bat files for a LONG time!


Menu (choice replacement)


Morden.
GomerPyle
Get choice.exe here: (Edited)

winrar file
RiceCake
Sorry to do that but taking software from the OS and sticking it on the net's illegal. I guess GeoCities just doesn't know 'bout that yet smile.gif...
Mordenkainen
HA! We were editing that at the same time!

Your edit removed mine tho!

Morden.
mgillaus
Hey fellas, this is a bit off topic but,

How hard would it be to create an xbox app that would sign files on the fly, on the xbox itself.

Kinda like how a few progs, like dvd2xbox, can remove media checks from .xbe's. You run this app, you select your file to patch and you get a little menu comin up with -audio, -font, -habibi options.

This would be very helpful for people who have the 5530 kernel that doesn't work with phoenix and are ripping their games to the hdd. I don't know alot about coding, but does anyone think this would be possible to create?

cheers


RiceCake
Probably wouldn't be too hard, but of course I've never coded anything before.

Lol Morden, too fast for me!
RiceCake
Pinning and releasing a new version (Soon!) with a legal alternative for CHOICE.
Blank
QUOTE (mgillaus @ Feb 3 2004, 08:47 AM)
Hey fellas, this is a bit off topic but,

How hard would it be to create an xbox app that would sign files on the fly, on the xbox itself.

Kinda like how a few progs, like dvd2xbox, can remove media checks from .xbe's. You run this app, you select your file to patch and you get a little menu comin up with -audio, -font, -habibi options.

This would be very helpful for people who have the 5530 kernel that doesn't work with phoenix and are ripping their games to the hdd. I don't know alot about coding, but does anyone think this would be possible to create?

cheers

That WOULD be an interesting app... *Cracks whip* SOMEONE START MAKING IT... wink.gif
RiceCake
New version out with legal menu-system!

Should be fine for XP systems.
Blank
QUOTE (RiceCake @ Feb 3 2004, 08:02 PM)
New version out with legal menu-system!

Should be fine for XP systems.

Very nice... Signed perfectly and the choices worked 100% this time. Thanks smile.gif
RiceCake
Interesting is the code the guy used to create that 'menu.exe', which sounds easy to learn and might just be what I need to actually well...make this as good as I aim for it to be.

Edit: Err that costs moolah..
Mordenkainen
ASM is FAR from easy, just an FYI!
Blank
I'd recommend C/C++ over ASM. With C/C++, it isn't AS cryptic as ASM and you still have the power to make complex executables. Not to mention you can integrate ASM into C.
RiceCake
blink.gif

Ok, ok I get it...lol...screw it I'll never know shit all about coding!
RiceCake
Super Bumpo
oblox
how about...

@echo off
CLS
echo EZ XBEDump Utility Remixed From RiceCake's
echo.
echo =======================================
echo.
echo Checking for files...
echo.
for %%c in (xbedump.exe, default.xbe) do (
IF NOT EXIST %%c (
echo %%c not found. Aborting!
echo.
PAUSE
EXIT
)
)
:BEGIN
echo Success! All files were found!
for %%d in (habibi, audio, font) do (
IF EXIST default.old (
DEL default.xbe
REN default.old default.xbe
)
echo.
echo =======================================
echo.
echo Attempting to sign 'default.xbe' with
echo the %%d key...
echo.
echo =======================================
echo.
xbedump.exe default.xbe -%%d
echo =======================================
echo.
IF EXIST out.xbe (
echo Renaming files...
REN default.xbe default.old
REN out.xbe default.xbe
echo.
echo Sign completed successfully.
echo.
echo =======================================
echo.
PAUSE
) else (
echo out.xbe wasn't created, signing failed!
echo default.xbe is not vaild.
PAUSE
EXIT
)
)
EXIT

Just kill it when you get to the one you want it runs habibi then audio then font and pauses after each run through so you can kill it you are left with a xbe signed to the last run through (habibi, audio then font) and the original xbe as default.old
oblox
My appologies I should of asked you first if it was okay to use your code RiceCake
Sorry about that sad.gif
RiceCake
WHAT! YOU USE MY CODE!? God damnit!

Heh, yeah that's ok, just as long as you don't pass it off as your own idea biggrin.gif .

But anyhow, what code are you using there? This is a DOS-oriented BAT file and on my ME system I ended up with this, unfortunate outlook:



EZ XBEDump Utility Remixed From RiceCake's

=======================================

Checking for files...

Bad command or file name
Bad command or file name
Bad command or file name
%c not found. Aborting!

Press any key to continue . . .

-TERM



Not only that but the idea of killing the operation when you hit your file is quite inefficient.
oblox
XP sorry about that must of changed the something between the OS's
RiceCake
Yeah XP must have an assload of better code...
oblox
I edited it and removed some " marks try it again
not bad for 30 mins though biggrin.gif mind you you did all the majority of the work
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.