• 大小: 4.64M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-15
  • 语言: 其他
  • 标签: 其他  

资源简介

LOIC-master.zip

资源截图

代码片段和文件信息

/* collection of some upper layer protocol stress-testing
 * loosely based on the slow-loris attempts and other low bandwidth attempts
 *
 * and always remember:
 * if you hit your own server it is called: stress-testing
 * if you hit a server that is not yours it is called: DOS-Attack
 * if you want to test your server but are too stoned to enter your ip correctly
 * it is called: accident (and always blame it on the weed!)
 *
 * B²
 */

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Text;
using System.Text.Regularexpressions;

namespace LOIC
{
/// 
/// Abstract class cHLDos contributed by B²
/// 

public abstract class cHLDos : IFlooder
{
public ReqState State = ReqState.Ready;

/// 
/// Shows if all possible sockets are build.
/// TRUE as long as the maximum amount of sockets is NOT reached.
/// 

public bool IsDelayed { get; set; }

/// 
/// Set or get the current working state.
/// 

public bool IsFlooding { get; set; }

/// 
/// Amount of send requests.
/// 

public int Requested { get; set; }

/// 
/// Amount of received responses / packets.
/// 

public int Downloaded { get; set; }

/// 
/// Amount of failed packets / requests.
/// 

public int Failed { get; set; }

/// 
/// The time in milliseconds between the creation of new sockets
/// 

public int Delay { get; set; }

/// 
/// The timeout in seconds between requests for the same connection.
/// 

public int Timeout { get; set; }

public virtual void Start()
{ }

public virtual void Stop()
{
IsFlooding = false;
IsDelayed = true;
}

/// 
/// override this if you want to test the settings before spreading the word to the hivemind!
/// should make a single connection and check for the expected outcome!
/// 

public virtual bool Test()
{
return true;
}
}

/// 
/// ReCoil basically does a “reverse“ DDOS
/// Requirements: the targeted “file“ has to be larger than 24 KB (bigger IS better ;) !)
/// 

/// 
/// it sends a complete legimit request but throttles the download down to nearly nothing .. just enough to keep the connection alive
/// the attack-method is basically the same as slowloris ... bind the socket as long as possible and eat up as much as you can
/// apache servers crash nearly in an instant. this attack however can NOT be mitigated with http-ready and mods like that.
/// this attack simulates sth like a massive amount of mobile devices running shortly out of coverage (like driving through a tunnel)
///
/// due to the nature of the congestian-response this could maybe

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-23 10:03  LOIC-master\
     文件         578  2018-08-23 10:03  LOIC-master\.gitattributes
     文件         181  2018-08-23 10:03  LOIC-master\.gitignore
     文件         873  2018-08-23 10:03  LOIC-master\CONTRIBUTING.md
     目录           0  2018-08-23 10:03  LOIC-master\Help\
     目录           0  2018-08-23 10:03  LOIC-master\Help\HTML\
     文件       43975  2018-08-23 10:03  LOIC-master\Help\HTML\LOIC.gif
     文件        2008  2018-08-23 10:03  LOIC-master\Help\HTML\about.html
     文件        1797  2018-08-23 10:03  LOIC-master\Help\HTML\hivemind.html
     文件        1433  2018-08-23 10:03  LOIC-master\Help\HTML\http.html
     文件        1350  2018-08-23 10:03  LOIC-master\Help\HTML\index.html
     文件         659  2018-08-23 10:03  LOIC-master\Help\HTML\loic.css
     文件        1718  2018-08-23 10:03  LOIC-master\Help\HTML\newfag.html
     文件        7036  2018-08-23 10:03  LOIC-master\Help\HTML\overlord.html
     文件        3747  2018-08-23 10:03  LOIC-master\Help\HTML\recoil.html
     文件        2220  2018-08-23 10:03  LOIC-master\Help\HTML\slowloic.html
     文件         524  2018-08-23 10:03  LOIC-master\Help\HTML\switches.html
     文件        1107  2018-08-23 10:03  LOIC-master\Help\HTML\tcp.html
     文件         194  2018-08-23 10:03  LOIC-master\Help\Index.hhk
     文件        1906  2018-08-23 10:03  LOIC-master\Help\Table of Contents.hhc
     文件       75658  2018-08-23 10:03  LOIC-master\Help\help.chm
     文件       75669  2018-08-23 10:03  LOIC-master\Help\loichlp.chm
     文件         678  2018-08-23 10:03  LOIC-master\Help\loichlp.hhp
     文件        2738  2018-08-23 10:03  LOIC-master\LICENSE.md
     文件        7334  2018-08-23 10:03  LOIC-master\README.BeSquare
     文件        2524  2018-08-23 10:03  LOIC-master\README.md
     文件          55  2018-08-23 10:03  LOIC-master\WORK_IN_PROGRESS
     文件        2567  2018-08-23 10:03  LOIC-master\loic-net4.5.sh
     文件        2567  2018-08-23 10:03  LOIC-master\loic.sh
     目录           0  2018-08-23 10:03  LOIC-master\src\
     文件        2285  2018-08-23 10:03  LOIC-master\src\Functions.cs
............此处省略94个文件信息

评论

共有 条评论