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

Pages: 1-

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:18

I don't have time for such tomfoolery with my hot girlfriend rubbing her clit all over my body.

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

Name: Anonymous 2013-09-06 0:24

>>3
change to 1+1+1 to really slow down their computer :D

Name: Anonymous 2013-09-06 22:53

"
>bump for technology
"

Name: Anonymous 2013-09-06 22:54

>>5



          ,,. -──∠⌒ヽ._
    _   /´   __ __ ___)  l `ヽ.
   l'_>i´  _r'"7-'--'ゝ、__,,.イ7-、__ ヽ.
   く___'_r'">'"        `ヽ_,.へ_!
    r'   >'  /  i i  、!___ヽ. ヽ. `ヽ/i
    `ソ´ / ,' _,.ィ! ハ  ,!--!、ハ  ヽ. i__7
  O く.ノ   !/!ァ;、!」└'' i´`i `|__ハ_/ |   ○
      ン_,!ヘi i ト i    ト .! ! !   ',  o
   o 。`/ .!ハ ゝ' ,    `´ " |  ',   ヽ.
     / // !"   r'´`ヽ   ,ハ      ', 。
    /   / ハ>.、,` ー‐',..イ、 ', i     i
   ,'   / / |   ,.ィ`「 ´rイ_ン'`ヽ. ',   ./
  .i  /,.イ Y/´rソヽヘ_ンi    iハ! ., '
 }>Y<二]  / ,.イ /ム〉 Y    _!//
  /i   / ./i/,   i  /    }_>Y<__]
 /、」 /   i7     /     i /| 
   r'rrr─-/ンi    ./     | /、」
  ./||||||::::::/!./   !/      .|
  !〈||||||::ン'´/   /      /、___,.へ
  ヽ、k' ´ /    i>、________,.イ   ヽハ
   /  ./ /  と,   /!  `ヽ.  i 〉
 k'ヽ   / /   !__,.--!、!    `''ーrヽ.
 i:::ヽヽ、i/ /  '´,. -─ 、 `ヽ.   、__|_ン
 ゝ、::::::Yゝ二_,.ィ´    /ト、 ゝ、 r'_/

Name: Anonymous 2013-09-07 1:50

I am an ethical hacker (FYI we're called white hats in the industry) who recently wrote a python script that detects an ongoing ddos attack.

import os, thread, socket, time
host = ''
port = 80
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
count = 0
s.bind((host, port))
 
def timer():
    global count
    while 1:
        time.sleep(1)
        if count >= 10:
            print("DDOS INCOMING!!! : "+ str(count))
       
        count = 0
 
thread.start_new_thread(timer, ())
while 1:
    data, addr = s.recvfrom(1024) # buffer size is 1024 bytes
    count += 1

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