Post: [C#]- Configuration Generator!
01-16-2012, 09:09 PM #1
Correy
I'm the Original
(adsbygoogle = window.adsbygoogle || []).push({}); It's very simple.
For everyone who knows how to bypass.



Download:
    
https://www.mediafire.com/?5pa9rbf18pfbmyj


Virus Scan:
    
https://www.virustotal.com/file-scan/report.html?id=7e760d5de04ec05eac9a436f2573bf29f76 e36b03968371dd21c3c642589d91b-1326225117


THE SOURCE CODE- C#!
    
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.IO;

namespace Call_Of_Duty_4__Configuration_Injector_
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
button1.Focus();
}
private void OpenFile()
{
//GENERATE THE INJECTION DATA, START CODE
string Data = "set playlist \"7\"\nset gpad_buttonsConfig \"Correy\"\nseta ui_mapname \"mp_shipment;bind button_back set developer 1;set developer_scripts 1";

if (checkBox1.Checked)
//ADDS LEVEL 55 TO STRING DATA
Data += ";set scr_set_level 55";

if (checkBox2.Checked)
//ADDS UNLOCK ALL TO STRING DATA
Data += ";set scr_complete_all_challenges 1;statset 3012 16143;set statset 3013 7951;set statset 3014 7951;set statset 3020 16175;set statset 3021 7983;set statset 3022 7937;set statset 3023 7983;set statset 3024 7983;set statset 3025 7983;set statset 3026 7983;set statset 3060 16131;set statset 3061 7939;set statset 3062 7939;set statset 3064 7939;set statset 3065 7939;set statset 3070 16149;set statset 3071 7957;set statset 3080 7959;set statset 3081 7959;statset 3012 16143;set statset 3013 7951;set statset 3014 7951;set statset 3020 16175;set statset 3021 7983;set statset 3022 7937;set statset 3023 7983;set statset 3024 7983;set statset 3025 7983;set statset 3026 7983;set statset 3060 16131;set statset 3061 7939;set statset 3062 7939;set statset 3064 7939;set statset 3065 7939;set statset 3070 16149;set statset 3071 7957;set statset 3080 7959;set statset 3081 7959";

if (checkBox3.Checked)
//ADDS MODDED STATS TO STRING DATA
Data += ";set setSet 2302 9999999;set setSet 2303 9999999;set setSet 2304 9999999;set setSet 2305 9999999;set setSet 2306 9999999";

//ADDS PRESTIGE & CONVERTS NUMERIC VALUE TO INT, THEN ADDS TO DATA
Data += ";set statSet 2326 " + Convert.ToInt16(numericUpDown1.Value);

//JUST INCASE SOME SORT OF ERROR OCCURS
try
{
//IF FILE PATH HAS BEEN DEFINED
if (textBox1.Text != "")
{
string Summary = "Prestige: " + Convert.ToInt16(numericUpDown1.Value );
//SHOW ITS INJECTED
if (checkBox1.Checked == true)
Summary += "\nUnlock Everything: Yes";
else
Summary += "\nUnlock Everything: No";
if (checkBox2.Checked == true)
Summary += "\nLevel 55: Yes";
else
Summary += "\nLevel 55: No";
if (checkBox3.Checked == true)
Summary += "\nModded Stats: Yes";
else
Summary += "\nModded Stats: No";
if (MessageBox.Show(Summary + "\n\nDo you want to Confirm this?", "Confirm", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
{
//DEFINE FILE PATH (ALREADY DEFINED)
StreamWriter i = new StreamWriter(textBox1.Text);

//WRITE TO THE FILE
i.Write(Data + "\"");

//CLOSE THE DIALOG
i.Close();
MessageBox.Show("Injection Has Complete!\nInjected Into " + openFileDialog1.FileName);
}
}

//IF FILE PATH HASN'T BEEN DEFINED/ CHANGED
else
{
openFileDialog1.FileName = "";
openFileDialog1.Title = "Locate your cod4 save data";

//SHOW THE FILTER, ONLY SHOWS .PRF FILES
openFileDialog1.Filter = ".PRF|*.PRF";

//SHOWS & DETERMINS WHEN THE .OK BUTTON IS PRESSED
if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
//SHOWS ITS BEEN DEFINED FOR NEXT USE
textBox1.Text = openFileDialog1.FileName;

string Summary = "Prestige: " + Convert.ToInt16(numericUpDown1.Value);
//SHOW ITS INJECTED
if (checkBox1.Checked == true)
Summary += "\nUnlock Everything: Yes";
else
Summary += "\nUnlock Everything: No";
if (checkBox2.Checked == true)
Summary += "\nLevel 55: Yes";
else
Summary += "\nLevel 55: No";
if (checkBox3.Checked == true)
Summary += "\nModded Stats: Yes";
else
Summary += "\nModded Stats: No";
if (MessageBox.Show(Summary + "\n\nDo you want to Confirm this?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
{
//DEFINE FILE PATH (ALREADY DEFINED)
StreamWriter i = new StreamWriter(textBox1.Text);

//WRITE TO THE FILE
i.Write(Data + "\"");

//CLOSE THE DIALOG
i.Close();
MessageBox.Show("Injection Has Complete!\nInjected Into " + openFileDialog1.FileName);
}
}
}
}

//SHOW THE IT HASN'T INJECTED THEN RESTART THE APPLICATION
catch (Exception ex)
{
//SHOW AN ERROR OCCURED
//COULD BE DUE TO THE FILE ALREADY OPEN, ECT.
MessageBox.Show("An Un-Expected Error Occured\nThe Application Will Now Restart!", "Error Occured", MessageBoxButtons.OK, MessageBoxIcon.Error);

//RESTART THE APPLICATION
Application.Restart();
}
}

private void textBox1_Click(object sender, EventArgs e)
{
textBox1.Text = "";
OpenFile();
}

private void button1_Click(object sender, EventArgs e)
{
OpenFile();
}

private void Form1_HelpButtonClicked(object sender, CancelEventArgs e)
{
MessageBox.Show("CALL OF DUTY 4- CONFIGURATION INJECTOR\n\n- Select your account actions\n- Locate your GPAD0_MP or GPAD0_CM\n\nThe tool will automatically inject your data!\nCreated By Correy", "Help");
}
}
}



Yes it's simple, but yeah.. use it how you wish.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to Correy for this useful post:

AgentSexyPig, Pichu
01-17-2012, 03:36 AM #2
Pichu
RIP PICHU.
Originally posted by Correy View Post
It's very simple.
For everyone who knows how to bypass.



Download:
    
https://www.mediafire.com/?5pa9rbf18pfbmyj


Virus Scan:
    
https://www.virustotal.com/file-scan/report.html?id=7e760d5de04ec05eac9a436f2573bf29f76 e36b03968371dd21c3c642589d91b-1326225117


THE SOURCE CODE- C#!
    
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.IO;

namespace Call_Of_Duty_4__Configuration_Injector_
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
button1.Focus();
}
private void OpenFile()
{
//GENERATE THE INJECTION DATA, START CODE
string Data = "set playlist \"7\"\nset gpad_buttonsConfig \"Correy\"\nseta ui_mapname \"mp_shipment;bind button_back set developer 1;set developer_scripts 1";

if (checkBox1.Checked)
//ADDS LEVEL 55 TO STRING DATA
Data += ";set scr_set_level 55";

if (checkBox2.Checked)
//ADDS UNLOCK ALL TO STRING DATA
Data += ";set scr_complete_all_challenges 1;statset 3012 16143;set statset 3013 7951;set statset 3014 7951;set statset 3020 16175;set statset 3021 7983;set statset 3022 7937;set statset 3023 7983;set statset 3024 7983;set statset 3025 7983;set statset 3026 7983;set statset 3060 16131;set statset 3061 7939;set statset 3062 7939;set statset 3064 7939;set statset 3065 7939;set statset 3070 16149;set statset 3071 7957;set statset 3080 7959;set statset 3081 7959;statset 3012 16143;set statset 3013 7951;set statset 3014 7951;set statset 3020 16175;set statset 3021 7983;set statset 3022 7937;set statset 3023 7983;set statset 3024 7983;set statset 3025 7983;set statset 3026 7983;set statset 3060 16131;set statset 3061 7939;set statset 3062 7939;set statset 3064 7939;set statset 3065 7939;set statset 3070 16149;set statset 3071 7957;set statset 3080 7959;set statset 3081 7959";

if (checkBox3.Checked)
//ADDS MODDED STATS TO STRING DATA
Data += ";set setSet 2302 9999999;set setSet 2303 9999999;set setSet 2304 9999999;set setSet 2305 9999999;set setSet 2306 9999999";

//ADDS PRESTIGE & CONVERTS NUMERIC VALUE TO INT, THEN ADDS TO DATA
Data += ";set statSet 2326 " + Convert.ToInt16(numericUpDown1.Value);

//JUST INCASE SOME SORT OF ERROR OCCURS
try
{
//IF FILE PATH HAS BEEN DEFINED
if (textBox1.Text != "")
{
string Summary = "Prestige: " + Convert.ToInt16(numericUpDown1.Value );
//SHOW ITS INJECTED
if (checkBox1.Checked == true)
Summary += "\nUnlock Everything: Yes";
else
Summary += "\nUnlock Everything: No";
if (checkBox2.Checked == true)
Summary += "\nLevel 55: Yes";
else
Summary += "\nLevel 55: No";
if (checkBox3.Checked == true)
Summary += "\nModded Stats: Yes";
else
Summary += "\nModded Stats: No";
if (MessageBox.Show(Summary + "\n\nDo you want to Confirm this?", "Confirm", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
{
//DEFINE FILE PATH (ALREADY DEFINED)
StreamWriter i = new StreamWriter(textBox1.Text);

//WRITE TO THE FILE
i.Write(Data + "\"");

//CLOSE THE DIALOG
i.Close();
MessageBox.Show("Injection Has Complete!\nInjected Into " + openFileDialog1.FileName);
}
}

//IF FILE PATH HASN'T BEEN DEFINED/ CHANGED
else
{
openFileDialog1.FileName = "";
openFileDialog1.Title = "Locate your cod4 save data";

//SHOW THE FILTER, ONLY SHOWS .PRF FILES
openFileDialog1.Filter = ".PRF|*.PRF";

//SHOWS & DETERMINS WHEN THE .OK BUTTON IS PRESSED
if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
//SHOWS ITS BEEN DEFINED FOR NEXT USE
textBox1.Text = openFileDialog1.FileName;

string Summary = "Prestige: " + Convert.ToInt16(numericUpDown1.Value);
//SHOW ITS INJECTED
if (checkBox1.Checked == true)
Summary += "\nUnlock Everything: Yes";
else
Summary += "\nUnlock Everything: No";
if (checkBox2.Checked == true)
Summary += "\nLevel 55: Yes";
else
Summary += "\nLevel 55: No";
if (checkBox3.Checked == true)
Summary += "\nModded Stats: Yes";
else
Summary += "\nModded Stats: No";
if (MessageBox.Show(Summary + "\n\nDo you want to Confirm this?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
{
//DEFINE FILE PATH (ALREADY DEFINED)
StreamWriter i = new StreamWriter(textBox1.Text);

//WRITE TO THE FILE
i.Write(Data + "\"");

//CLOSE THE DIALOG
i.Close();
MessageBox.Show("Injection Has Complete!\nInjected Into " + openFileDialog1.FileName);
}
}
}
}

//SHOW THE IT HASN'T INJECTED THEN RESTART THE APPLICATION
catch (Exception ex)
{
//SHOW AN ERROR OCCURED
//COULD BE DUE TO THE FILE ALREADY OPEN, ECT.
MessageBox.Show("An Un-Expected Error Occured\nThe Application Will Now Restart!", "Error Occured", MessageBoxButtons.OK, MessageBoxIcon.Error);

//RESTART THE APPLICATION
Application.Restart();
}
}

private void textBox1_Click(object sender, EventArgs e)
{
textBox1.Text = "";
OpenFile();
}

private void button1_Click(object sender, EventArgs e)
{
OpenFile();
}

private void Form1_HelpButtonClicked(object sender, CancelEventArgs e)
{
MessageBox.Show("CALL OF DUTY 4- CONFIGURATION INJECTOR\n\n- Select your account actions\n- Locate your GPAD0_MP or GPAD0_CM\n\nThe tool will automatically inject your data!\nCreated By Correy", "Help");
}
}
}



Yes it's simple, but yeah.. use it how you wish.


Looks sexy. :P
01-17-2012, 08:14 AM #3
Correy
I'm the Original
Originally posted by Sublimity View Post
Looks sexy. :P


thats just my windows theme lmao.
you should have a go at making a menu generator for bypass, i think you'd do a pretty good job :y:

The following user thanked Correy for this useful post:

Pichu
01-18-2012, 12:44 AM #4
Pichu
RIP PICHU.
Originally posted by Correy View Post
thats just my windows theme lmao.
you should have a go at making a menu generator for bypass, i think you'd do a pretty good job :y:


Maybe as my next project, I've been a bit busy in life and am trying my best to pull myself to ask out this one girl who I have been wanting to ask out for several months now...

Aside from that I've spent little to no time on the internet/computer in the last month.

Started the other day though an encryption pad.

---
It's like a normal notepad however with a second thinner right pad. You would be able to select what to encrypt/decode it in.

I'm adding the basic essentials right now though as well as translations, MD5, Binary, Hex. It's a project to keep myself busy for to next month or two while I add more and more to it.

--
Just something to do, right now I more of have basic functions of a normal notepad added, print, copy, paste, new, load, save...

When I get some of the encryptions and translations added, I will release onto here as an open source, (Or may just include the source in the notepad. :P)
01-18-2012, 02:12 AM #5
Correy
I'm the Original
Originally posted by Sublimity View Post
Maybe as my next project, I've been a bit busy in life and am trying my best to pull myself to ask out this one girl who I have been wanting to ask out for several months now...

Aside from that I've spent little to no time on the internet/computer in the last month.

Started the other day though an encryption pad.

---
It's like a normal notepad however with a second thinner right pad. You would be able to select what to encrypt/decode it in.

I'm adding the basic essentials right now though as well as translations, MD5, Binary, Hex. It's a project to keep myself busy for to next month or two while I add more and more to it.

--
Just something to do, right now I more of have basic functions of a normal notepad added, print, copy, paste, new, load, save...

When I get some of the encryptions and translations added, I will release onto here as an open source, (Or may just include the source in the notepad. :P)


sounds pretty awesome :y:
01-18-2012, 03:22 AM #6
Pichu
RIP PICHU.
Originally posted by Correy View Post
sounds pretty awesome :y:


Going to be.

I sorta want to learn about encyrpting external file information, (example, I can take a word document and encrypt the information so that the file would have to be decrypted before you can actually use it with word or anything).

---
Right now I am reading up a bit on keyboard and mouse monitoring, I'm wanting to develop a personal keylogger, one that would monitor keystrokes that are pressed within active windows as well as generate a process list letting me know what was running.

Also something that would record the mouse and create essentially a time log of processes, (This would mean fetching run source ect...).

From something like so I could create a UI that would allow me to re-active that session and use the mouse and key logs to reproduce a session.

---
This would mean, say if someone was to go onto my computer without my permission, even though I do have a password, this would mean that I could replicate and fully see what they were doing.

---
This would be my big amazing few month project that I sorta dream about, I am thinking about after I get done with this pad that I may start the basics of something like this, start with the mouse and basic keyboard hooking as well as timing and replication.

---
Since I get a new computer in June I should have something powerful enough to actually download the full version of MS Studios which would let me obfuscate my programs through theirs, as well as do so much more.

--
Maybe If I create something like this that works out, I could put it up online to sell, :P. (Help pay for school lol)
01-27-2012, 08:51 PM #7
Originally posted by Sublimity View Post
Going to be.

I sorta want to learn about encyrpting external file information, (example, I can take a word document and encrypt the information so that the file would have to be decrypted before you can actually use it with word or anything).

---
Right now I am reading up a bit on keyboard and mouse monitoring, I'm wanting to develop a personal keylogger, one that would monitor keystrokes that are pressed within active windows as well as generate a process list letting me know what was running.

Also something that would record the mouse and create essentially a time log of processes, (This would mean fetching run source ect...).

From something like so I could create a UI that would allow me to re-active that session and use the mouse and key logs to reproduce a session.

---
This would mean, say if someone was to go onto my computer without my permission, even though I do have a password, this would mean that I could replicate and fully see what they were doing.

---
This would be my big amazing few month project that I sorta dream about, I am thinking about after I get done with this pad that I may start the basics of something like this, start with the mouse and basic keyboard hooking as well as timing and replication.

---
Since I get a new computer in June I should have something powerful enough to actually download the full version of MS Studios which would let me obfuscate my programs through theirs, as well as do so much more.

--
Maybe If I create something like this that works out, I could put it up online to sell, :P. (Help pay for school lol)


a keylogger couldn't be to hard to make depending on the language. the hardest part of a keylogger for windows is getting route access. but maybe i can help you out idk sounds like a pretty cool project. and are you talking about like a screen capture program that would like record wherever your mouse goes and show you like a video of what happened. or something like that.?
01-28-2012, 08:43 PM #8
Pichu
RIP PICHU.
Originally posted by Docko412 View Post
a keylogger couldn't be to hard to make depending on the language. the hardest part of a keylogger for windows is getting route access. but maybe i can help you out idk sounds like a pretty cool project. and are you talking about like a screen capture program that would like record wherever your mouse goes and show you like a video of what happened. or something like that.?


Kinda, except it registers the clicks and such as well.

It's a project in my mind for now, just too damn busy to do anything right now on a computer. :/

Doesn't help that my computer took another slow down due to age.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo