Post: Hacking my School Computers [Project]
05-20-2011, 09:01 PM #1
iNikush
I'm back from the dead
(adsbygoogle = window.adsbygoogle || []).push({}); My friend and I are working on hacking the school computer since we are graduating. We have a computer class everyday and we want to do this badly.:fyea:My school is heavily secured

The Goal:
To get or make admin access for us and be able to get to CMD and remove any restrictions.


Progress:


  • Crashed FORTRESS Security, which gives us the start menu and right click options, run, and other, but still can't run cmd
  • Discovered you can't bring .exe from USB but if you .zip the .exe you can copy it over and extract
  • Successfully ran IceGuru's CMD Prompt V2, but can't figure how to use it, because everytime we try a normal cmd command it doesn't do anything


Restrictions:


  • Absolutely no way to get to CMD, we tried using Run, Calculator trick, browsing to it, and many other things but it just says it can't locate it
  • SONICwall to block certain websites
  • Teacher Supervision, although she doesn't care if we hack the school computers, we just can't run ophcrack or anything


Any ideas? ThanksUpside Down Happy
(adsbygoogle = window.adsbygoogle || []).push({});

The following user thanked iNikush for this useful post:

Como's Hoe #1
05-22-2011, 11:17 PM #11
try You must login or register to view this content.
everything u need in one
Also, once u get command prompt running (only for windows xp) type NETsend # [Insert message to send to everycomputer in the school!]
05-22-2011, 11:43 PM #12
Originally posted by iNikush View Post
My friend and I are working on hacking the school computer since we are graduating. We have a computer class everyday and we want to do this badly.:fyea:My school is heavily secured

The Goal:
To get or make admin access for us and be able to get to CMD and remove any restrictions.


Progress:


  • Crashed FORTRESS Security, which gives us the start menu and right click options, run, and other, but still can't run cmd
  • Discovered you can't bring .exe from USB but if you .zip the .exe you can copy it over and extract
  • Successfully ran IceGuru's CMD Prompt V2, but can't figure how to use it, because everytime we try a normal cmd command it doesn't do anything


Restrictions:


  • Absolutely no way to get to CMD, we tried using Run, Calculator trick, browsing to it, and many other things but it just says it can't locate it
  • SONICwall to block certain websites
  • Teacher Supervision, although she doesn't care if we hack the school computers, we just can't run ophcrack or anything


Any ideas? ThanksUpside Down Happy


Its rather easy to make a CMD Shell in C++

Heres the .exe You must login or register to view this content.

Heres the Source Code if you want to compile it your self.

    #include<iostream>
#include<string.h>
#include<windows.h>
#include <stdio.h>
#ifdef WINDOWS
#include <direct.h>
#define GetCurrentDir _getcwd
#else
#include <unistd.h>
#define GetCurrentDir getcwd
#endif

using namespace std;

int main()
{
string input;

char cCurrentPath[FILENAME_MAX];

if (!GetCurrentDir(cCurrentPath, sizeof(cCurrentPath)))
{
return errno;
}

cout<<"Welcome to RelShell.exe, a Command Prompt shell made by Relevant"<<endl;

for(;Winky Winky
{
cout<<endl;
cout<<cCurrentPath;
cout<<">";
getline(cin,input);
system(input.c_str());
}

return 0;
}
05-31-2011, 05:51 PM #13
open a new text doccument then in that type in command.com then save as all files but the ending has to be .bat then you can open up command prompt
05-31-2011, 06:44 PM #14
Sloth
Banned
Originally posted by Relevant View Post
Its rather easy to make a CMD Shell in C++

Heres the .exe You must login or register to view this content.

Heres the Source Code if you want to compile it your self.

    #include<iostream>
#include<string.h>
#include<windows.h>
#include <stdio.h>
#ifdef WINDOWS
#include <direct.h>
#define GetCurrentDir _getcwd
#else
#include <unistd.h>
#define GetCurrentDir getcwd
#endif

using namespace std;

int main()
{
string input;

char cCurrentPath[FILENAME_MAX];

if (!GetCurrentDir(cCurrentPath, sizeof(cCurrentPath)))
{
return errno;
}

cout<<"Welcome to RelShell.exe, a Command Prompt shell made by Relevant"<<endl;

for(;Winky Winky
{
cout<<endl;
cout<<cCurrentPath;
cout<<">";
getline(cin,input);
system(input.c_str());
}

return 0;
}


You are such a troll i had to delete 138,000 of them
05-31-2011, 06:49 PM #15
Originally posted by Cookiemonstaz View Post
You are such a troll i had to delete 138,000 of them


Not because of the RelShell you quote though right?
:PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ:
05-31-2011, 06:53 PM #16
PsYcHoSiS
Eatin' poopy
Originally posted by iNikush View Post
My friend and I are working on hacking the school computer since we are graduating. We have a computer class everyday and we want to do this badly.:fyea:My school is heavily secured

The Goal:
To get or make admin access for us and be able to get to CMD and remove any restrictions.


Progress:


  • Crashed FORTRESS Security, which gives us the start menu and right click options, run, and other, but still can't run cmd
  • Discovered you can't bring .exe from USB but if you .zip the .exe you can copy it over and extract
  • Successfully ran IceGuru's CMD Prompt V2, but can't figure how to use it, because everytime we try a normal cmd command it doesn't do anything


Restrictions:


  • Absolutely no way to get to CMD, we tried using Run, Calculator trick, browsing to it, and many other things but it just says it can't locate it
  • SONICwall to block certain websites
  • Teacher Supervision, although she doesn't care if we hack the school computers, we just can't run ophcrack or anything


Any ideas? ThanksUpside Down Happy


Go to Run command and type "regedit".
Press Ctrl + f
find "DisableCMD"
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows \System..
and set it 0(zero) for Enable CMD
05-31-2011, 07:07 PM #17
D.anny
~ Danny .
Make a rat Home , Download it off school wolla , you have acsess to the computer, than LAN infect / USB Infect Smile, So all Pc's will get infected with that LAN , and who will put the USB in it Smile.
05-31-2011, 07:12 PM #18
Sloth
Banned
Originally posted by Relevant View Post
Not because of the RelShell you quote though right?
:PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ::PBJ::PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ:
:PBJ::PBJ:
:PBJ:


Sorry did not read it
05-31-2011, 08:46 PM #19
Originally posted by iNikush View Post
My friend and I are working on hacking the school computer since we are graduating. We have a computer class everyday and we want to do this badly.:fyea:My school is heavily secured

The Goal:
To get or make admin access for us and be able to get to CMD and remove any restrictions.#








Progress:


  • Crashed FORTRESS Security, which gives us the start menu and right click options, run, and other, but still can't run cmd
  • Discovered you can't bring .exe from USB but if you .zip the .exe you can copy it over and extract
  • Successfully ran IceGuru's CMD Prompt V2, but can't figure how to use it, because everytime we try a normal cmd command it doesn't do anything


Restrictions:


  • Absolutely no way to get to CMD, we tried using Run, Calculator trick, browsing to it, and many other things but it just says it can't locate it
  • SONICwall to block certain websites
  • Teacher Supervision, although she doesn't care if we hack the school computers, we just can't run ophcrack or anything


Any ideas? ThanksUpside Down Happy




ok this is it

[multipage=Introduction]Hi guys i posted a while back about how to get CMD and stuff at school but since then i have come up with some new theories about different stuff so flick to whatever page u need and be sure to leave me feed
back on wether it worked for you make sure to quote me back ok

Peace out guys

Black_Star
[multipage=Get CMD , task manger, and any other windows program ]
Well My school have alot of tech support and so we have alot of blocks i have seen many programs like satans by-passer and other .bats but this does need any of this and works on any system as long as you have visual basic installed so lets go ahead and start

1) go to visual basic and make a new windows application

2)add a button and double click it

3)write Shell ("CMD.EXE") or Shell ("taskmgr.exe")

this is were we bypass software restriction

4) click debug mode (this is not an EXE and is stored in a temporarily file so it cannot be blocked)

5) click on the button and BAM you have CMD you can also do the following

instead of stage 3 write

Shell ("CMD.EXE")
Sendkeys.Send ("COMMAND HERE")
SendKeys.Send ("{ENTER}")

Some Useful Commands For school Are:
Dir - displays all directory

net users - shows all users on the PC


net user /add username password - adds user

Net user administrator password
Net user administrator /active:yes - adds aadmin account

There should be no space between the word 'active' and the colon

[multipage=How to get on any other file] i thought about this one after someone told me that CMD was blocked so even after they accessed they just got a "CMD is blocked, Contact your administrator" message so i decided to come up with this theory okay lets start

say you want to unblock CMD using satan's CMD bypasser so we need 3 files

Satan's CMD bypasser : You must login or register to view this content.
A binder : wer ever
a flash file or image file


bind the satans cmd bypasser to your image file open the image file then bam your done
now use the method above to acces it wrtten by black star me please give thanks for vBux i u though useful

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo