Page 4 of 8 FirstFirst ... 23456 ... LastLast
Results 76 to 100 of 182

Thread: Appa - SCAR Minimizeable WebClient

  1. #76
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Could be, yes. I've updated the first post.

    Additions:

    Code:
    procedure SaveBitmapAsJPEG(const Bitmap, w, h, Compression: Integer; const FileName: string); 
    function PostHTTPFormData(const URL: string; const fieldNames, fieldValues, fileFieldNames, fileNames, fileContentType: TStringArray): string; 
    
    function appa_GetCookies: string; 
    procedure appa_SetCookies(const Cookies: string); 
    procedure appa_Caption(const s: string);
    The first two functions have been added to add support for DeCaptcher in SCAR.
    Last edited by nielsie95; 01-23-2010 at 05:17 PM.

  2. #77
    Join Date
    Feb 2006
    Location
    Locked in RAM's closet !
    Posts
    2,001
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    wow ty so much neilsie!

    keep this thread going man it is a wonderful addition to scar.
    I can make bots out the botthole with this thing!
    Darky has stopped by to say hello :).
    10-21-2010
    Updated-
    10-09-2012

  3. #78
    Join Date
    Mar 2007
    Posts
    1,700
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Mufasa support ?
    btw nice additions

    oh and javascript support pretty please
    Last edited by lordsaturn; 01-24-2010 at 08:33 AM.

  4. #79
    Join Date
    May 2007
    Location
    Sydney, Australia (Faggot Region)
    Posts
    1,465
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Isnt it Simba?


  5. #80
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    this was made waaay before anyone knew about simba..
    Ce ne sont que des gueux


  6. #81
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    This isn't multi-platform compatible, because it uses Internet Explorer as browser, so it's not fully compatible with Simba. I think Javascript works, lordsaturn?

  7. #82
    Join Date
    Mar 2007
    Posts
    1,700
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Yeah you're right javascript works, thanks niels. But you could just make appa windows only for simba..

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

    Default

    As long as simba supports plugins, it should be able to run this?
    Interested in C# and Electrical Engineering? This might interest you.

  9. #84
    Join Date
    Feb 2006
    Location
    Locked in RAM's closet !
    Posts
    2,001
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    is it possible to open up multiple appas?
    Darky has stopped by to say hello :).
    10-21-2010
    Updated-
    10-09-2012

  10. #85
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Only with multiple SCARs at the moment.

  11. #86
    Join Date
    Feb 2006
    Location
    Locked in RAM's closet !
    Posts
    2,001
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    ok, thought so.
    Darky has stopped by to say hello :).
    10-21-2010
    Updated-
    10-09-2012

  12. #87
    Join Date
    Jun 2007
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    is there an option for sendkeys?

  13. #88
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Guys why this won't work. it will result like this. "hhhhhhooooooommmmmmeee",
    but it should be "home"

    Code:
    procedure appa_TypeByte(k: Byte);
    begin
      appa_KeyDown(k);
      appa_KeyUp(k);
    end;
    
    
    
    procedure appa_TypeSendEx(Text: string; PressEnter: Boolean);
    var
      S: string;
      I, L: Integer;
      Shift: Boolean;
    
    begin
      S:= 'ABCDEFGHIJKLMNOPQRSTUVWXZ' + '~!@#$%^&*()_+{}|:"<>?';
      L := Length(Text);
      for I := 1 to L do
      begin
        Shift := (Pos(Text[i], S) > 0);
        if (Shift) then
        begin
          appa_KeyDown(VK_SHIFT);
          while (Pos(Text[i], S) > 0) and (I <= Length(Text)) do
          begin
            appa_TypeByte(GetKeyCode(Text[I]));
            Inc(I);
            if (I > Length(Text)) then Break;
          end;
        end;
        if (Shift) then
          appa_KeyUp(VK_SHIFT);
        if (I <= Length(Text)) then
        begin
          appa_TypeByte(GetKeyCode(Text[I]));
        end;
      end;
      if (PressEnter) then
        appa_TypeByte(GetKeyCode(Chr(13)));
    end;

    ~Home

  14. #89
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Smile

    Hey is it possible, that we could get the source Because would be great if it could use Firefox Engine ( So it can be converted to use Simba too )


    ~Home

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

    Default

    The code would probably be so different that it would make more sense to start over.
    Interested in C# and Electrical Engineering? This might interest you.

  16. #91
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Proxy support would be nice


  17. #92
    Join Date
    Feb 2010
    Location
    On the edge of space
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    Line 1: [Error] (1:1): Privileged instruction in script
    EDIT: Kaspersky blacklisted the program. F*CK!

    http://www.virustotal.com/analisis/5...9b6-1267415043
    Last edited by Diddy Kong; 03-01-2010 at 03:43 AM.

  18. #93
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Maybe because it uses a global keyboard hook and connects to the internet. Can't say it doesn't look suspicious, but I'm afraid there's not much I can do =\

  19. #94
    Join Date
    Feb 2010
    Location
    On the edge of space
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's good. I can just set a file exception.

  20. #95
    Join Date
    Feb 2010
    Location
    On the edge of space
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could you please add a procedure to hide Appa (the window), but still keep it running?

  21. #96
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    Quote Originally Posted by GreenText View Post
    Could you please add a procedure to hide Appa (the window), but still keep it running?
    minimize it? also there are programs on the web that will hide it in your taskbar =)
    Last edited by Dgby714; 03-04-2010 at 07:15 AM.

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

  22. #97
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Home, either do keyup or keydown, not both. They do not really simulate, they just use sendmessage.

    Greentext, I believe I made such a function in Scar already (using API calls). Maybe you can find it if you search a bit, else I'll post it again later today

    EDIT: You can find it in this thread (here).
    Last edited by nielsie95; 03-04-2010 at 02:43 PM.

  23. #98
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    How can I run a proxy with this?
    So maybe every (5) times it goes to a page, it changes ip/proxy?

  24. #99
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    You can't, unless you use another program to run everything through a proxy.

  25. #100
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Do you know a program that I can use?

Page 4 of 8 FirstFirst ... 23456 ... LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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