Quark SwfDownloader - SWF Ripper [OpenSource, C#]

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 47
  1. #16
    Member Drop is offline
    MemberRank
    Apr 2011 Join Date
    81Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Create an api in php to get the links for extra images and badges in puhekupla and download.

  2. #17
    Member BielzDev is offline
    MemberRank
    Nov 2011 Join Date
    /dev/nullLocation
    66Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Quote Originally Posted by Drop View Post
    Create an api in php to get the links for extra images and badges in puhekupla and download.
    I'll work on it ... thanks for the idea

  3. #18
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    cool, that will help me see what furniture are new.
    Last edited by Spheral; 03-06-12 at 12:23 PM.

  4. #19
    Account Upgraded | Title Enabled! W00dL3cs is offline
    MemberRank
    Mar 2012 Join Date
    202Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Suggest you to make all the process automated: if you are able to access the client page, then you have the links of every resource you'll need for your app, and the user won't have to fill in the fileds manually :P

  5. #20
    Member BielzDev is offline
    MemberRank
    Nov 2011 Join Date
    /dev/nullLocation
    66Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Quote Originally Posted by W00dL3cs View Post
    Suggest you to make all the process automated: if you are able to access the client page, then you have the links of every resource you'll need for your app, and the user won't have to fill in the fileds manually :P
    The problem: the habbo client, for example, can only be accessed if you are logged in. :/
    but I'll think of a solution ... thanks for the suggestion!

  6. #21
    Account Upgraded | Title Enabled! W00dL3cs is offline
    MemberRank
    Mar 2012 Join Date
    202Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Quote Originally Posted by BielzDev View Post
    The problem: the habbo client, for example, can only be accessed if you are logged in. :/
    but I'll think of a solution ... thanks for the suggestion!
    Uhm, that's not true at all...

    At least, time ago, it was possible to access the current game build without loggin in...

  7. #22
    Member Drop is offline
    MemberRank
    Apr 2011 Join Date
    81Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Quote Originally Posted by BielzDev View Post
    The problem: the habbo client, for example, can only be accessed if you are logged in. :/
    but I'll think of a solution ... thanks for the suggestion!
    This is to send a message on the home but it can help.
    PHP Code:
    <?
    function botMsg($message) {
    $email "email";
        
    $senha "pass";
        
    $guestbookId "16442862";
        
    $ch curl_init();
        
    curl_setopt ($chCURLOPT_VERBOSE1);
        
    curl_setopt ($chCURLOPT_HEADER1);
        
    curl_setopt ($chCURLOPT_AUTOREFERER1);
        
    curl_setopt ($chCURLOPT_RETURNTRANSFER1);
        @
    curl_setopt ($chCURLOPT_FOLLOWLOCATION1);    
        
    curl_setopt ($chCURLOPT_COOKIEJARgetcwd()."/cookies.txt");
        
    curl_setopt ($chCURLOPT_URL"http://www.habbo.com.br/account/submit?credentials.username=$email&credentials.password=$senha");
        
    $loginRes curl_exec ($ch);
        
    preg_match('/<a href="(.*?)">/im'$loginRes$checkError);
        
    $page = @split('"',$checkError[1]);
        
    $page $page[0];
        
    curl_setopt ($chCURLOPT_URL$page."/me");
        
    $paginaPrincipal curl_exec($ch);
        
    preg_match_all('#<meta name="csrf-token" content="(.*?)"/>#i',$paginaPrincipal,$csrf);
        
    $appkey $csrf[1][0];
        
    $messageString = array("ownerId"=>"123","message"=>"$message","scope"=>"1","query"=>"","widgetId"=>"$guestbookId");            
        
    curl_setopt ($chCURLOPT_POST1);
        
    curl_setopt ($chCURLOPT_POSTFIELDS$messageString);
        
    curl_setopt ($chCURLOPT_REFERER"http://www.habbo.com.br/home/--Rafael");
        
    curl_setopt ($chCURLOPT_HTTPHEADER, array(
         
    "X-App-Key: $appkey"
         
    "X-Requested-With: XMLHttpRequest"
        
    ));
        
    curl_setopt ($chCURLOPT_URL"http://www.habbo.com.br/myhabbo/guestbook/add");
        
    curl_exec ($ch);    
    };
    ?>

  8. #23
    Member BielzDev is offline
    MemberRank
    Nov 2011 Join Date
    /dev/nullLocation
    66Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Quote Originally Posted by Drop View Post
    This is to send a message on the home but it can help.
    PHP Code:
    <?
    function botMsg($message) {
    $email "email";
        
    $senha "pass";
        
    $guestbookId "16442862";
        
    $ch curl_init();
        
    curl_setopt ($chCURLOPT_VERBOSE1);
        
    curl_setopt ($chCURLOPT_HEADER1);
        
    curl_setopt ($chCURLOPT_AUTOREFERER1);
        
    curl_setopt ($chCURLOPT_RETURNTRANSFER1);
        @
    curl_setopt ($chCURLOPT_FOLLOWLOCATION1);    
        
    curl_setopt ($chCURLOPT_COOKIEJARgetcwd()."/cookies.txt");
        
    curl_setopt ($chCURLOPT_URL"http://www.habbo.com.br/account/submit?credentials.username=$email&credentials.password=$senha");
        
    $loginRes curl_exec ($ch);
        
    preg_match('/<a rel="nofollow" href="(.*?)">/im'$loginRes$checkError);
        
    $page = @split('"',$checkError[1]);
        
    $page $page[0];
        
    curl_setopt ($chCURLOPT_URL$page."/me");
        
    $paginaPrincipal curl_exec($ch);
        
    preg_match_all('#<meta name="csrf-token" content="(.*?)"/>#i',$paginaPrincipal,$csrf);
        
    $appkey $csrf[1][0];
        
    $messageString = array("ownerId"=>"123","message"=>"$message","scope"=>"1","query"=>"","widgetId"=>"$guestbookId");            
        
    curl_setopt ($chCURLOPT_POST1);
        
    curl_setopt ($chCURLOPT_POSTFIELDS$messageString);
        
    curl_setopt ($chCURLOPT_REFERER"http://www.habbo.com.br/home/--Rafael");
        
    curl_setopt ($chCURLOPT_HTTPHEADER, array(
         
    "X-App-Key: $appkey"
         
    "X-Requested-With: XMLHttpRequest"
        
    ));
        
    curl_setopt ($chCURLOPT_URL"http://www.habbo.com.br/myhabbo/guestbook/add");
        
    curl_exec ($ch);    
    };
    ?>
    thanks, i'll translate it to C# (:
    (habbo.com.br? you are brazilian?)

  9. #24
    Account Upgraded | Title Enabled! W00dL3cs is offline
    MemberRank
    Mar 2012 Join Date
    202Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Quote Originally Posted by BielzDev View Post
    thanks, i'll translate it to C# (:
    (habbo.com.br? you are brazilian?)
    If you use the .NET web-browser component, you'll give the user the opportunity not to directly give your app his login details...
    And this will also speed-up everything, and block every attempt of Sulake to lock your app u.u

  10. #25
    Member Drop is offline
    MemberRank
    Apr 2011 Join Date
    81Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    Yes, and I do not remember correctly you were the ManiaDev.
    No need to convert to C# just grab one and get a free host preg_match and then put an echo.

  11. #26
    Member BielzDev is offline
    MemberRank
    Nov 2011 Join Date
    /dev/nullLocation
    66Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    I think the best option is to use the web-browser of DotNet, i'll create a GUI...

  12. #27

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    This is what I call a Ripper! Good job bielzDev. ;)

  13. #28
    Enthusiast LeRubaz is offline
    MemberRank
    May 2012 Join Date
    GermanyLocation
    44Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    this doesnt work on my windows server r2 2008

  14. #29
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    I already got a php furni, badges, icons and mp3 ripper so I don't need any other program :)

    Nice release anyway.

  15. #30
    Account Upgraded | Title Enabled! kooga is offline
    MemberRank
    Dec 2009 Join Date
    271Posts

    Re: Quark SwfDownloader - SWF Ripper [OpenSource, C#]

    This is okay, but if your gonna take it from a hotel that has customs, your gonna need to upload the Sql's to your db.. How will you know all their Sql's?



Page 2 of 4 FirstFirst 1234 LastLast

Advertisement