Skip to content

Commit

Permalink
Update pyddos.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael ATem committed Jul 15, 2016
1 parent c70b6b5 commit 559b59a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pyddos.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@
from struct import *
from threading import *
from argparse import ArgumentParser,RawTextHelpFormatter

if os.name == 'posix':
c = os.system('which pip')
if c == 256:
os.system('sudo apt-get install python-pip')
else:
pass
else:
print '[-] Check your pip installer'
try:
import requests
from termcolor import colored,cprint
Expand Down

0 comments on commit 559b59a

Please sign in to comment.