Results 1 to 2 of 2

Thread: SCAR communicating via Email or Telnet?

  1. #1
    Join Date
    Mar 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default SCAR communicating via Email or Telnet?

    Is there any way to get SCAR to connect to a telnet service and input data into it? Or preferably, is there anyway to get SCAR to send an email? For example somehow connecting to a Gmail account or any other email account and sending an email to "example@example.blank.com" without actually opening a browser?


    I don't know if I have explained what I want correctly so feel free to ask questions.


    PLEASE STAY ON TOPIC
    STOP PM'ING ME

  2. #2
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Use a plugin and wrap the functions sock, send, and recv.

    These are the prototypes:

    SCAR Code:
    function socket(a, b, c: Integer): Integer; //socket handle
    //handle = socket(PF_INET, SOCK_STREAM, 0);
    function recv(socket: Integer; Buf: PChar; Len, Someint: Integer): Integer; //number of bytes recieved.
    function send(socket: Integer; Buf: PChar; Len, SomeInt: Integer): Integer; //number of bytes sent. SomeInt, in both functions, is usually zero.

    If you're lucky, you can import them as an API from winsock.dll.
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Email @msn
    By Dangerous Garden Tools in forum News and General
    Replies: 2
    Last Post: 08-29-2007, 05:54 AM
  2. SRL stats email.
    By Thick As Blood in forum News and General
    Replies: 4
    Last Post: 04-06-2007, 06:32 AM

Posting Permissions

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