+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Member
    Join Date
    Dec 2009
    Location
    jupiter
    Posts
    61

    I have a request on SS-Rat...

    Please, can someone post a module for encrypting connections in SS-Rat?
    PLEASE
    Thanks.

  2. #2
    Senior Member mjrod5's Avatar
    Join Date
    Aug 2008
    Location
    In your stack O___O
    Posts
    3,120
    Go Crazy.
    from: http://www.delphi3000.com/articles/article_4029.asp
    Code:
    function XorStr(Stri, Strk: String): String;
    var
        Longkey: string;
        I: Integer;
        Next: char;
    begin
        for I := 0 to (Length(Stri) div Length(Strk)) do
        Longkey := Longkey + Strk;
        for I := 1 to length(Stri) do
        begin
            Next := chr((ord(Stri[i]) xor ord(Longkey[i])));
            Result := Result + Next;
        end;
    end;
    In The Oven (err in Development) : Pie
    Quote Originally Posted by uraskiddie View Post
    What are you? Like 10 years old?
    That's complete rubbish, you probably got your depictions of being a "hacker" from a prepubescent forum infested with homosexually-oriented pedophiles.
    Quote Originally Posted by Envy View Post
    Russian?
    Trusted.
    Botnets are like our right hands.
    http://cognitivity.org/

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [Request] VB.NET RAT Sourcecodes?
    By Mi4uric3 in forum Visual Basic Help
    Replies: 0
    Last Post: 06-07-2009, 18:10
  2. [Request] LAN Rat?
    By Moof in forum Malware Discussion and General Help
    Replies: 5
    Last Post: 21-04-2009, 22:59
  3. [Request]
    By Moof in forum Visual Basic Help
    Replies: 8
    Last Post: 13-05-2008, 21:28
  4. Simple request .. !
    By ][ professor DeXTeR ][ in forum Full development tools
    Replies: 8
    Last Post: 10-05-2008, 17:31
  5. Source Request
    By jw4v32 in forum General Programming Help
    Replies: 0
    Last Post: 10-03-2008, 14:22

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

Search Engine Friendly URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.