Safinn
Addict
Hmm I preffer it to be either futuristic or historic such as age of empires. I only like realistic games when they are a fps.


(and I'm with just 19" monitor
)<html>
<form method=post action="https://proxy.novafusion.ea.com/drm/license?requestcode=7JXEX-67WFY-J6S4Y-YPUKA-6NZF2-QNVZH-48CP9-XTQSA-MM43&serial=XXXXXXXX">
<input type='submit' value='submit'>
</form>
if someone is still interested please help me and other who missed the give away by doing the method I gaveHello guys
If you still intertested in the idea of fake auth server.
I have made small html code that when u click on the submit button u get the result from EA auth server, so no need for sniffing.
For those who have valid keys and ready to help: save the code to html file and replace XXXXXXXX to your valid key with no dashesCode:<html> <form method=post action="[URL]https://proxy.novafusion.ea.com/drm/license?requestcode=7JXEX-67WFY-J6S4Y-YPUKA-6NZF2-QNVZH-48CP9-XTQSA-MM43&serial=XXXXXXXX[/URL]"> <input type='submit' value='submit'> </form>
I'm not sure what is requestcode parameter but that's what I've found in the capture.
if you using firefox, I recommend one further step, open about:config and search for useragent.. you will find a pref with value like Firefox/3.0.1, edit this and replace by drEAm_LicenseRequest/1.0
save the file, open then click submit and paste the result. it should be xml. if you get error or your browser refuse to open, view the page source
please paste the result here =)
i've done what you asked for using an UNUSED KEY and i got a resposne that has some kind of unlock code in it... how safe is it to post the response here?
P.S can you tell me what the next step is? if its guranteed to work i'll sacrifice my 3rd spare key then.

i've done what you asked for using an UNUSED KEY and i got a resposne that has some kind of unlock code in it... how safe is it to post the response here?
P.S can you tell me what the next step is? if its guranteed to work i'll sacrifice my 3rd spare key then.
)
php_bg said:I'd appreciate if you keep the spam to a minimum. ...

@ maennj as i said before, I am willing to sacrifice my spare key if this is guranteed to work... anyways would be a good start if you can give me instructions on how to set up the http/php/dns (lol they all sound the same to me) serverThank you for help
Most likely the unlock code you got is generated from your key but I'm not sure. I'm not sure how safe is this for your key but if you know how to setup HTTP server then the next step is to fake the dns record of proxy.novafusion.ea.com in your hosts file and tie it to your local http server (127.0.0.1)
We might need PHP for Transfer-Encoding header.. if you're willing to help I can give you the step by step instruction to make the whole fake auth server and try it then give us the result

)


lol im as noob as you are@ iBBi, lol, seeing that I'm the only other person here trying to help, why do I get the feeling you had me in mind while writing this?
Man, I didn't write all that in my last two posts for nothing you know...
It was meant for you, to read before you give your serial, so you know how dangerous this is (well, you did asked...)
I get the feeling you haven't read it, because I mentioned that I have a legal serial. (Sorry if you have read it and/or you didn't have me in mind)
But in order to help, I'm going to need you two to help me out here (you and maennj). Now I'm not going to ask you to give me your serial/request code/unlock code, but if you get any results, I'd appreciate if you share them with me (with all serials/codes censored, of course).
And I just need you to explain to me what you plan to do because I'm willing to help two, and I know some people that can help me with that server if I could explain to them what exactly I need
And I myself will do whatever I can if I find some free time (been quite busy lately :/ )
I just need you to give me the head start![]()
so im waiting on maennj's instructions...
So the response XML Structure is the Following<Unlock_response version="1">
<Status_number>0</Status_number>
<Status_text/>
<Unlock_code>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</Unlock_code>
</Unlock_response>
I Used XAMPP & Firefox 3 To try the code.<Unlock_response version="1">
<Status_number>0</Status_number> --> That Status_Number Must Mean Serial OK
<Status_text/> -> This is Empty
<Unlock_code>CODE HERE</Unlock_code> -> Here Goes Unlock Code
</Unlock_response>
Then in the computer that has not installed the RA3 Beta, install it with the same serial that has the other pc WITH NO INTERNET CONNECTION, because I Don't know if it establishes a connection with the EA Auth server on install, when it finishes DONT RUN THE GAME.<html>
<body>
<form method=post action="https://proxy.novafusion.ea.com/drm/license?requestcode=7JXEX-67WFY-J6S4Y-YPUKA-6NZF2-QNVZH-48CP9-XTQSA-MM43&serial=SERIAL">
<input type='submit' value='submit'>
</form>
</body>
</html>
You need to edit the HOSTS file, in vista is in the folder<?php
// XML Output is Generated
header('Content-Type: text/xml');
// XML HEADER
echo '<?xml version="1.0"?>';
// <Unlock response> is created
echo '<Unlock_response version="1">';
echo '<Status_number>0</Status_number>';
echo '<Status_text/>';
// You need to fill this with the Unlock Code that you got with The HTML code
echo '<Unlock_code>UNLOCK CODE GOES HERE</Unlock_code>';
echo '</Unlock_response>';
?>