Activity Stream
48,167 MEMBERS
61014 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 3 of 12 FirstFirst 12345 ... LastLast
Results 21 to 30 of 118
  1.     
    #21
    Banned
    yeh need more checks in some addons ... if u have example pls post me screen of error or error code ... i will fix that

  2.     
    #22
    Member
    Website's:
    ifile.it
    @OP save you screen scraping, use API its faster

    http://code.google.com/p/ifileit/wiki/CheckFileStatus

  3.   Sponsored Links

  4.     
    #23
    Respected Developer
    Website's:
    wrzc.org
    On that point sendshare, rapidshare and a few others have api's for checking links which you should use. For Rapidshare you can group the links and then check them all with one api call. This really speeds it all up. Say it's a large movie or game with 20 links. Instead of you having to scrape 20 pages you just make one lighting fast api call. This really helps your server.


    For FileSonic who keep banning your IP or whatever all you have to do is use their link checker http://www.filesonic.com/link-checker Group all the links, $_POST them and get the result. Don't go curling a page for every single link where possible and that goes for all file hosts as it's every innefficent.

    I used to have a site like this called linkzbot.com of which their are a few topics here on KWWH about two years back. http://www.besthostingforums.com/64-...ll-forums.html
    It got incredibly popular after 2 months and was checking almost a million links a day before the server packed up so ya concentrate now making it as efficient as possible before it get's too big.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  5.     
    #24
    Banned
    Quote Originally Posted by ifile.it View Post
    @OP save you screen scraping, use API its faster

    http://code.google.com/p/ifileit/wiki/CheckFileStatus
    76 links checked in 6.016 seconds. I think i dont use api

    @Mr Happy: for filesonic i will dont use their link chekcer i used own method to bypass their shitty blocking page

    also about that 20 links ... i checked 100 links and result was about 5 sec which is good with api was +/- 1-2 sec.

    oh also http://www.besthostingforums.com/98282-post7.htm - "It took 3-4 seconds to test 8 links" mine today 76 links checked in 6.016 seconds how the speeds increased

  6.     
    #25
    Member
    Website's:
    mafiaWarez.com phaze.co katzbb.com massddl.com buspic.com
    can make it popup this will be great


  7.     
    #26
    Member
    Website's:
    epicimagehost.com
    Quote Originally Posted by devNULL View Post
    76 links checked in 6.016 seconds. I think i dont use api

    @Mr Happy: for filesonic i will dont use their link chekcer i used own method to bypass their shitty blocking page

    also about that 20 links ... i checked 100 links and result was about 5 sec which is good with api was +/- 1-2 sec.

    oh also http://www.besthostingforums.com/98282-post7.htm - "It took 3-4 seconds to test 8 links" mine today 76 links checked in 6.016 seconds how the speeds increased
    If a filehost offers an API, you use it.
    Not just for the speed, but also because they offer an API for a reason.

    You're causing a lot of unnecessary load for the filehost. FileSonic bans your IP for a reason. By circumventing it you're just forcing them to tighten their belt even more. And so you are indirectly causing problems for other developers.

    Just use the damn API.

  8.     
    #27
    Member
    Website's:
    tv-release.net
    Simple XSS Vulnerability
    - anyone can inject Java script or HTML code.

    EXPLOIT:

    - Put this code in textarea :

    Code: 
    <marquee><font color=red size=50>XSSeD By AdelSBM</font></marquee>
    - Click "Check Link(s)"

    The ruselt is:




    Use htmlspecialchars() or htmlentities() function to fiX it
    Thank you..

  9.     
    #28
    Banned
    still just XSS

    anyway fixed via str_replace

    i dont love "too much" hackers ...

  10.     
    #29
    Member
    Website's:
    CodeSociety.net
    i figured since people will testing ur system i would too, i added jquery to your site and ran this code.

    Code: 
    var action = "http://www.skripterz.info/dev/Link_Checker/?add_new&host=google.com";
    var i=0;
    for (i=0;i<=500;i++)
    {
    action += i;
    $.ajax({
      type: 'POST',
      url: action,
      data: {specific:'meh'},
      success: function(){
    
    },
      dataType: ''
    });
    }
    ull notice u now have alot more file hosts, this is a simple example of what can be done. if someone wanted to they could easily fill ur database up with shit. simplying using invalid urls and starting from a or any number like http://1 and going up.

    if you like what u have u might want to do manual validation.



  11.     
    #30
    Banned
    like i said i dont love hackers

    gtfo

    i am stored your ip for future

    and stop ddossing server!!!

    ----------------------------------

    Quote Originally Posted by -sky- View Post
    can make it popup this will be great
    yes u can

    Quote Originally Posted by Robin H View Post
    If a filehost offers an API, you use it.
    Not just for the speed, but also because they offer an API for a reason.

    You're causing a lot of unnecessary load for the filehost. FileSonic bans your IP for a reason. By circumventing it you're just forcing them to tighten their belt even more. And so you are indirectly causing problems for other developers.

    Just use the damn API.
    Not all filehosts have API

    Filesonic banned and we bypassed them naaah Btw i dont think their API can handle requests being made with our link checker, oh also we dont downloading just caching their page and then checking if a link exists or not, so not our problem if filesonic (that host BIG files) getting small traffic from us via link checker i am laughting at this

    Thier zpa-kool api provides (http://api.filesonic.com/link)

    $urls = array( 'http://www.filesonic.com/file/1', 'http://www.filesonic.com/file/2/filename.zip', 'http://www.filesonic.com/file/r3/4', 'http://www.filesonic.com/file/r5/6/filename.zip' ); $regex = '|/file/(([a-z][0-9]+/)?[0-9]+)(/.*)?$|'; foreach($urls AS $url) { $matches = array(); preg_match($regex, $url, $matches); if (!isset($matches[1])) continue; echo str_replace('/', '-', $matches[1]) . "\n"; } /* Will output: 1 2 r3-4 r5-6 */
    and with this i think we can check big ****** ahhh devs

    When filehosts wake up and STOP banning ips and acc. for nothing then we use their fcked APIS lol

Page 3 of 12 FirstFirst 12345 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Filehosts with IDMAN support (for free users)
    By torrfriend in forum File Host Discussion
    Replies: 18
    Last Post: 3rd Jul 2012, 03:53 PM
  2. LF Filehosts Link Checker Software/Script/Extension
    By unkz in forum Web Development Area
    Replies: 0
    Last Post: 1st May 2011, 08:02 PM
  3. Which filehosts should sBorg support?
    By somik in forum File Host Discussion
    Replies: 44
    Last Post: 19th Dec 2010, 05:16 AM
  4. Link Checker that supports all TOP filehosts
    By pjkasper43 in forum Webmaster Discussion
    Replies: 3
    Last Post: 19th Nov 2009, 03:38 AM
  5. Link Checker whit support to 150 sites
    By jomasaco in forum Webmaster Resources
    Replies: 3
    Last Post: 5th Sep 2008, 08:16 PM

Tags for this Thread

BE SOCIAL