Advertisement
lollhosh

NOX - PENETRATION-TESTING - PYTHON

May 15th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1.  
  2. NOX – A PENETRATION-TESTING TOOL IN PYTHON
  3. NOTICE:
  4. author and developer software not responsible for how this software is used! This IS pentesting software and how you use it I leave to you!
  5. Nox is a simple, yet powerful penetration-testing tool written in Python.
  6. The following programs should be installed on your system for Nox to work correctly:
  7. – Python 3.4 or up
  8. – Git 2.7 or up
  9. – Pip 8.1 or up
  10. – Wheel current version
  11. – Setuptools 32.0 or up
  12.  
  13. Feature:
  14. + TCP/IP Attack
  15. + BufferOverflow packet attack.
  16. + executes a DDOS attack on target
  17. + attempts a connection to the target
  18. + sends a payload to the target
  19.  
  20. git clone https://github.com/cocodevienne/nox && nox
  21. cd source:
  22. python setup.py install
  23. nox -h
  24.  
  25.  
  26. $ # connect to a target
  27. $ nox --connect -IP www.facebook.com -port 80 -b 1024
  28. $ # "-b" is the size of the received answer
  29. $ # send a payload
  30. $ nox --pay -IP www.facebook.com -port 80
  31. $ # DDOS on a target
  32. $ nox --ddos -IP www.facebook.com -port 80 -bo 2000000
  33. $ # "-bo" is the bufferoverflow, i.e. the amount of requests that will crash a server
  34.  
  35. Source: https://github.com/cocodevienne
  36. credits: http zanyarmatrix com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement