POST /ops2/classes/ajax/save HTTP/1.1
Host: elite.callofduty.com
Connection: keep-alive
Content-Length: 3266
Origin: https://elite.callofduty.com
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11
Content-Type: application/json; charset=UTF-8
Accept: application/json, text/javascript, */*; q=0.01
Referer: https://elite.callofduty.com/ops2/classes
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Cache-Control: max-age=0
Content-Type: application/json;charset=UTF-8
Date: Thu, 06 Dec 2012 18:43:39 GMT
Expires: Thu, 06 Dec 2012 18:43:39 GMT
Server: nginx/1.1.19
X-UA-Compatible: IE=Edge,chrome=1
Content-Length: 16
Connection: keep-alive
HttpWebRequest HTTPRequest = (HttpWebRequest)WebRequest.Create("https://elite.callofduty.com/ops2/classes/ajax/save");
ASCIIEncoding encoding = new ASCIIEncoding();
string JSON = "{INSERT_JSON_HERE}";
byte[] data = encoding.GetBytes(JSON);
HTTPRequest.Method = "POST";
HTTPRequest.ContentType = "application/json;charset=UTF-8";
HTTPRequest.ContentLength = data.Length;
using (Stream JSONStream = HTTPRequest.GetRequestStream())
{
JSONStream.Write(data, 0, data.Length);
}

Fiddler.FiddlerApplication.BeforeRequest += sess =>
{
if (sess.fullUrl.Contains("elite.callofduty") && sess.fullUrl.Contains("classes") && sess.fullUrl.Contains("ajax/save") && editing == false)
{
JSON = enc.GetString(sess.RequestBody);
JSON = JsonFormatter.PrettyPrint(JSON);
Console.WriteLine("Information: Data Intercepted");
MessageBox.Show(JSON, "CSTech ELiTE Hack Prototype");
}
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.