Results 1 to 4 of 4

Thread: Trafficg

  1. #1
    Join Date
    Nov 2007
    Location
    UK
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Trafficg

    hi guys id be extremely happy if someone could make a script to solve this captcha http://www.trafficg.com/supersurf.php?member=acis (have to have member name in or it assumes you are new visitor and asks to sign up) i kinda dont have time to make it right now as im packing for a holiday would be extremely appreicated! (have to wait 20 seconds per page)

    Its legit also ive received 405 people doing this legit, if this isnt allowed then im sorry and delete thread

  2. #2
    Join Date
    May 2009
    Posts
    799
    Mentioned
    2 Post(s)
    Quoted
    16 Post(s)

    Default

    Looks like its possible with color only...

    I gotta give it a try later, when i find the time XD...

    //EDIT:

    startx, starty is the point where the ref- image starts, just pick 1pixel more to the left and one more down, so that you dont start at the grid.

    It doesnt always detect the right captcha, but im not in the mood to refine it :3
    Code:
    program New;
    var
      x,y,xw,xh, TempColor : Integer;
      x1,y1 : Integer;
      startx, starty : Integer;
    
      GotCol : Boolean;
      go : Integer;
    begin
      go := BitmapFromString(30, 27, 'beNr7/38UjIIRAhgYZqIhKpqJKU' +
           'gVk4kRpNxYgsFFRZORlZGhBTMecRlFjOG41Axmk4lJGxSajF8vGTF' +
           'IfB6kbvYcBaNg8AIAYpGzVw==');
    
      ColorTOleranceSpeed(1);
        
      repeat
        startx := 721;
        starty := 8;
        GotCol := False;
    
        repeat
          TempColor := GetColor(startx,starty);
          GetClientDimensions(xw,xh);
          startx := startx+8;
          starty := starty+8
    
          //check for similarity.. dont get white
          If SimilarColors(TempColor, 12763842, 106) then
            GotCol := FALSE
          else
            GotCol := TRUE;
    
        until GotCol;
        
        WriteLn(startx);
        WriteLn(starty);
        WriteLn(TempColor);
    
        Repeat
          wait(100);
        until(findBitmap(go,x1,y1));
        
        FindColorTolerance(x,y,TempColor,0,55,747,99,15);
        ClickMouse(x,y,True);
        //ClickMouse(x,y,True);
        wait(10000);
      until(false);
    
    end.

  3. #3
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Average the color from the solution and then perform a toleranced countcolor on each section of the captcha
    Interested in C# and Electrical Engineering? This might interest you.

  4. #4
    Join Date
    Nov 2006
    Location
    Location, Location
    Posts
    1,126
    Mentioned
    6 Post(s)
    Quoted
    41 Post(s)

    Default

    that site actually works really well thanks for showing it ^^ [Taken from my google analytics report]
    3.
    2.
    trafficg.com
    282 259 00:02:43 95.63% 89.36% $0.00

    282 = all visitors from there
    259 = unique visitors
    95%= bounce rate
    00:02:43= average time per visitor

Thread Information

Users Browsing this Thread

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •