Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
New version released
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Seidl committed Feb 21, 2014
1 parent d2cfb63 commit 2b5ea07
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Attack Vector exploited: HTTP Keep Alive + NoCache

OPTIONS:
Flag Description Default
-u, --useragents File with user-agents to use (default: random from res/lists/useragents)
-w, --workers Number of concurrent workers (default: 50)
-s, --sockets Number of concurrent sockets (default: 30)
-m, --method HTTP Method to use 'get' or 'post' or 'random' (default: get)
-d, --debug Enable Debug Mode [more verbose output] (default: False)
-h, --help Shows this help
-u, --useragents File with user-agents to use (default: randomly generated)
-w, --workers Number of concurrent workers (default: 50)
-s, --sockets Number of concurrent sockets (default: 30)
-m, --method HTTP Method to use 'get' or 'post' or 'random' (default: get)
-d, --debug Enable Debug Mode [more verbose output] (default: False)
-h, --help Shows this help


## Utilities
Expand Down
4 changes: 3 additions & 1 deletion goldeneye.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
BY USING THIS SOFTWARE YOU AGREE WITH THESE TERMS.
"""

from multiprocessing import Process, Manager
from multiprocessing import Process, Manager, Pool
import urlparse, ssl
import sys, getopt, random, time, os

Expand Down Expand Up @@ -167,6 +167,8 @@ def fire(self):
if DEBUG:
print "Starting {0} concurrent workers".format(self.nr_workers)

self.pool =

# Start workers
for i in range(int(self.nr_workers)):

Expand Down

0 comments on commit 2b5ea07

Please sign in to comment.