Win [WIP] FreakOut - NZB Downloader/Updater for Games
#16
Thanks for the offer - I might come back to it.
But as said - time is heavily limited at my end, my job eats a lot of it.
So for now I'll stay at C#, maybe around my holiday-time I can get some free time to get into python.
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#17
Bugtracker is open - you can post your issues over here:
https://github.com/henryford/FreakOut/issues

Please be detailed as possible about your problems.
I just pushed out a new version - you can get it in a few moments via the link in the first post (or via github and compile it for yourself)

*Changelog*
The full changelog is always available at
https://github.com/henryford/FreakOut/bl...ngelog.txt
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#18
*UPDATE*
New version is out - including nzbmatrix support Smile Testers needed since I do not have a nzbmatrix account...
Changelog as always available at:
https://github.com/henryford/FreakOut/bl...ngelog.txt

Edit:
Since the nzb-sites do not really sport console-support for older consoles (thinking of N64 for example) I will implement support for different sites here as well - CoolROM, MAME, ROM-Hustler and ROM-FREAKS come to mind... if you know other, good sources for ROMs for older consoles, please contact me via PM.
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#19
So - I began to implement ROM-support for earlier consoles (like N64, SNES, Amiga, etc.).
I am thinking about using coolrom.com for ROM-downloads since it is the most convenient site to use.
Other sites either use sharehoster like mediafire, etc. or use captcha-methods to prevent users from downloading without visiting.
coolrom only has a counter - seems to be fairly easy to circumvent, but I can't figure out how... Can someone help me out here?

Another option would be to setup an own server for this - a server which practically mirrors the ROMs and only makes them available for this program to use (at some point probably opening a website though).
For this however I would need money... I can do it first on my own VPS, but once it would reach a certain traffic-point I would have to collect donations in order to keep it up.
So as of now (without knowledge how to circumvent the countdown) I will provide a few ROMs on my VPS.
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#20
You need something like Urlresolver. We're working on it at xbmchub.com. It takes those mediafire, putlocker, etc links and returns a file link. It's for addons and thus written in python, but should be easy enough to understand. This is the latest stable version: https://github.com/Eldorados/script.modu...er/plugins

There are a good deal more sites supported in testing that haven't made it to github yet if you take a look around xbmchub.com
Reply
#21
(2012-03-22, 14:54)HenryFord Wrote: So - I began to implement ROM-support for earlier consoles (like N64, SNES, Amiga, etc.).
I am thinking about using coolrom.com for ROM-downloads since it is the most convenient site to use.
Other sites either use sharehoster like mediafire, etc. or use captcha-methods to prevent users from downloading without visiting.
coolrom only has a counter - seems to be fairly easy to circumvent, but I can't figure out how... Can someone help me out here?

Another option would be to setup an own server for this - a server which practically mirrors the ROMs and only makes them available for this program to use (at some point probably opening a website though).
For this however I would need money... I can do it first on my own VPS, but once it would reach a certain traffic-point I would have to collect donations in order to keep it up.
So as of now (without knowledge how to circumvent the countdown) I will provide a few ROMs on my VPS.

I hope you're allowing searching for nzb's for these kinds of roms too.
Image
thegamesdb.net - An open video games database.
scottbrant.net - Blog
Reply
#22
I'll always prefer nzbs thus those Downloads will only happen via http if there is nothing else available.
The url resolver won't help by the way (at least not with coolrom) because they use some strange, variable Post-data. But i think i figured it out and sending my own post will probably help resolve this issue. I'll keep you posted (pun intended)
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#23
Right, the urlresolvers grab the original page, build the post url, submit it, and scrape the link from the resulting page. Don't think we have one for mediafire yet, but the techniques should be the same
Reply
#24
Just hit a roadblock with coolrom.com - I can't for the life of me figure out what the hell they are doing to prevent me from fullfilling the request...
The thing is - I think I figured out how they do it:
They use two hidden-fields in the form which will send POST-Data to the server after you click on "Start download". I can see with a sniffer that these POST-Data get transmitted.
So now I figured I just download the page, parse it and get the values from those two hidden fields. That is totally working...
As a result you will get a variable with randomname=randomvalue - exactly like on the original page. The second field is called "sid" which holds your PHP-Session-ID. I set this with the use of my cookie I generated after visiting the page. Now - everything seems to be fine: Matching randomname=randomvalue variable and a matching sid=phpsessid . Oh - of course I also use the cookie to be used.
Now I went ahead and resembled THE COMPLETE HTTP-Header of the request made by my browser. It is literally the same header (with different values for randomname=randomvalue and sid=phpsessid obviously though), with the same User-Agent, Content-Length, etc. - yet the site refuses to deliver the octet-stream and redirects me to the rom-detail-page instead.
I...just don't know how the hell they are doing it. Frustrating.

(@Bstrdsmkr: The problem with coolrom seems to be that they are using the webserver to deliver the contents of the file. You don't directly access the file itself via a direct link but the server delivers a stream which would have to be written to the disk manually. So - after posting the correct URL to the server you get a octet-stream as a response, not a HTML page Sad )
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#25
Eww that sounds painful. Disable and clear your cookies/temp files and see if you now get that behavior in the browser. That'll tell you if it's cookie based. There's also a Firefox addon that lets you disable headers, so you can use that to narrow down the problem. They've only got 3 vectors to track you so it has to be either:
1. Cookies
2. Headers
3. Page content

I've seen sites that track your session id across pages. If they don't see it show up on a logical progression of pages, they kick you to the wrong page. Could that be it? Maybe you've done everything right on the page itself, but they know you didn't visit a previous page?
Reply
#26
(2012-03-16, 18:17)xecutionx Wrote: Please, please consider moving to Python so this can be used on a variety of systems. The reason that audio-matic failed to gain as many followers as Headphones did was due to the fact it was Windows only.

That being said, it looks amazing. I can definitely see myself using this if it had Rom support.

+1 .... please consider python!!

cheers
c_bb
Reply
#27
(2012-03-23, 20:58)Bstrdsmkr Wrote: Eww that sounds painful. Disable and clear your cookies/temp files and see if you now get that behavior in the browser. That'll tell you if it's cookie based. There's also a Firefox addon that lets you disable headers, so you can use that to narrow down the problem.
I used Fiddler to deeply analyze the packages that are being sent, I even went so far to do a real indepth analysis with tcpdumps - but well... I can't figure it out. They definetly use a cookie for the phpsession - but methinks that's not all the magic here (although I cannot see anything else being sent...)

Quote:I've seen sites that track your session id across pages. If they don't see it show up on a logical progression of pages, they kick you to the wrong page. Could that be it? Maybe you've done everything right on the page itself, but they know you didn't visit a previous page?
Well...technically I do visit the site before (I have to in order to parse the webpage) and I use a cookie there as well - but to no avail. I also set the correct refferer-header, so that can't be it... Undecided I'm stumped Big Grin


@Cool_bombom: Seriously? Please consider reading the thread before throwing stupid stuff like that around.
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#28
(2012-03-25, 03:17)HenryFord Wrote: @Cool_bombom: Seriously? Please consider reading the thread before throwing stupid stuff like that around.

Sorry about that ... just wanted to show my support for a python conversion! Anyways brillant work and idea :-)

cheers
C_bb
Reply
#29
Well - no problem
Had one of my grumpy days... Wink

Currently not much time to continue the work, but eastern is coming along and I am off work for the week afterwards, probably a lot will happen in that time Smile
Stay tuned!
Need help? Check out my XBMC Frodo Guide. It contains full featured guides to Sickbeard and CouchPotato as well.

Image
Reply
#30
Any plans to include support for creating launchers for Steam games ? however I suspect and understand it might be too niche an use and it might be just up to me to make the launcher bats manually.
Reply

Logout Mark Read Team Forum Stats Members Help
[WIP] FreakOut - NZB Downloader/Updater for Games0