Content: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Background: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Pattern: Blank Waves Notes Sharp Wood Rockface Leather Honey Vertical Triangles
Welcome to Xbox Chaos: Modding Evolved

Register now to gain access to all of our features. Once registered and logged in, you will be able to contribute to this site by submitting your own content or replying to existing content. You'll be able to customize your profile, receive reputation points as a reward for submitting content, while also communicating with other members via your own private inbox, plus much more! This message will be removed once you have signed in.

Sign in to follow this  
Followers 0
Mc Jayce

App
Gain Access To Nt-System/root With Style

4 posts in this topic

I just use this because its cool sometimes, and useful if you need run processes as system (no restrictions) like setting a priority in TaskManeger without getting the access denied message.

----download http://www.xboxchaos...57-rootwindows/

Of course you could just replace magnify.exe with cmd, but that is kind-of dumb, and not secure.

Just backup and replace magnify.exe in system32 (be sure to rename my program to magnify.exe) also there is a text file called "passwd.txt" thats where you put your password to open a root prompt. The default in the zip file is "xboxchaos".

**The picture, and icon within the program are not my work. Also this is not from Microsoft obviously.**

pictures of it

5x2vec.jpg

2dbpdt4.jpg

2uogg42.jpg

Source 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 WindowsFormsApplication10
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
//GRAB STRING FROM FILE
// Read the file as one string.
System.IO.StreamReader myFile =
new System.IO.StreamReader("passwd.txt");
string Password = myFile.ReadToEnd();
myFile.Close();
// Display the file contents.
// Suspend the screen.

string password2; /*more secure*/
//password2 = ("PASSWORDz");

if (/*password2*/Password == textBox1.Text)
{
MessageBox.Show("Authenticated, \nThis prompt will run as NT-SYSTEM!", "CAUTION", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
Process proc = new Process();
proc.StartInfo.FileName = @"c:\windows\system32\cmd.exe";
proc.Start();
this.Close();
}
else
{

MessageBox.Show("BALLS!");
this.Close();
}
}

private void textBox1_TextChanged(object sender, EventArgs e)
{
textBox1.PasswordChar = '*';
}


private void Form1_Load(object sender, EventArgs e)
{

}

private void label1_Click(object sender, EventArgs e)
{

}
}
}

---EDIT

ohh yeah, if you didnt know already you go to login screen, and click the accessibility button and click magnifier. (which is replaced, and runs as system)---

Edited by Mc Jayce

Share this post


Link to post
Share on other sites

Did you take a picture of your screen with a camera?

Any particular reason? As there is a printscreen button or various programs to do it aha.

Apart from that did you code this yourself, I can see the source but it could be a copypasta job . If so well done .

Share this post


Link to post
Share on other sites

Did you take a picture of your screen with a camera?

Any particular reason? As there is a printscreen button or various programs to do it aha.

Apart from that did you code this yourself, I can see the source but it could be a copypasta job . If so well done .

Umm the printscreen button doesnt work at the login screen, and im too lazy to set up a special screen capture...

Apart from the system.IO string reader, the rest of the code is just basic crap applied in forms rather than an ugly console

Share this post


Link to post
Share on other sites
Sign in to follow this  
Followers 0