various adjustments

This commit is contained in:
n1nj4sec 2016-01-08 22:50:14 +01:00
parent d6f05a0f0f
commit 100ee1d42c
3 changed files with 15 additions and 11 deletions

View File

@ -232,11 +232,15 @@ Use pip to install all the dependencies
> hey c4n y0u add a DDOS module plzz? > hey c4n y0u add a DDOS module plzz?
No. No.
> I was wondering if you had a BTC address I could send a tip over to
Sure, here you go :
Bitcoin address: 12BKKN81RodiG9vxJn34Me9ky19ArqNQxC
## Contact ## Contact
by mail: contact@n1nj4.eu by mail: contact@n1nj4.eu
on Twitter: [Follow me on twitter](https://twitter.com/n1nj4sec) on Twitter: [Follow me on twitter](https://twitter.com/n1nj4sec)
[![Join the chat at https://gitter.im/n1nj4sec/pupy](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/n1nj4sec/pupy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
If some of you want to participate or send me a feedback, don't hesitate :-)
If some of you want to participate or send me a feedback, don't hesitate :-)
This project is a personal project, please respect its philosophy and don't use it for evil purposes! This project is a personal project, please respect its philosophy and don't use it for evil purposes!

View File

@ -42,10 +42,10 @@ setup(
#windows=['reverse_ssl.py'], #windows=['reverse_ssl.py'],
#zipfile=None, #zipfile=None,
options={ "py2exe" : { options={ "py2exe" : {
"packages":['additional_imports'], "packages":['additional_imports', 'Crypto'],
"compressed" : True, "compressed" : True,
"bundle_files" : 3, #3 = don't bundle (default) 2 = bundle everything but the Python interpreter 1 = bundle everything "bundle_files" : 3, #3 = don't bundle (default) 2 = bundle everything but the Python interpreter 1 = bundle everything
"excludes": ["Tkinter", "pyreadline", "IPython"] "excludes": ["Tkinter", "pyreadline", "IPython","readline"]
} }
} }
) )

View File

@ -104,9 +104,9 @@ class ReverseSlaveService(Service):
return self._conn return self._conn
def get_next_wait(attempt): def get_next_wait(attempt):
if attempt<60: if attempt<120:
return random.randint(5,10)/10.0 return random.randint(5,10)/10.0
elif attempt<100: elif attempt<320:
return random.randint(30,50)/10.0 return random.randint(30,50)/10.0
else: else:
return random.randint(150,300)/10.0 return random.randint(150,300)/10.0