TVT618

Aron

Aug 11th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. Aron - A simple GO script for finding hidden GET & POST parameters with Brute-force
  2.  
  3. Installation
  4. sudo su
  5. apt update
  6. apt install golang golang-1.10 golang-1.10-src golang-1.10-go golang-1.10-doc golang-1.9 golang-1.9-src golang-1.9-go golang-1.9-doc
  7. git clone https://github.com/m4ll0k/Aron
  8. cd Aron
  9. go get github.com/m4ll0k/printer
  10. go env | grep -i gopath
  11. go run aron.go
  12. go build aron.go
  13. cp aron /usr/bin/
  14. aron
  15.  
  16. Usage:
  17. ___
  18. / | _________ ___
  19. / /| | / ___/ __ \/ __\
  20. / ___ |/ / / /_/ / / / /
  21. /_/ |_/_/ \____/_/ /_/ (v0.1.0 beta)
  22. ----------------------------
  23. Momo (M4ll0k) Outaadi
  24.  
  25. Usage of aron:
  26. -data="": Set post data
  27. -get=false: Set get method
  28. -post=false: Set post method
  29. -url="": Set target URL
  30. -wordlist="dict.txt": Set your wordlist
  31.  
  32. GET BRUTEFORCE:
  33. go run aron.go -url http://www.test.com/index.php -get
  34. go run aron.go -url http://www.test.com/index.php<[?|id=1|id=1&]> -get
  35. go run aron.go -url http://www.test.com/index.php<[?|id=1|id=1&]> -get -wordlist my_wordlist.txt
  36.  
  37. <[?|id=1|id=1&]> => Possible end URL
  38.  
  39. OR Note: in this case aron need the wordlist path
  40. aron -url http://www.test.com/index.php -get -wordlist path/wordlist.txt
  41. aron -url http://www.test.com/index.php<[?|id=1|id=1&]> -get -wordlist path/wordlist.txt
  42.  
  43. POST BRUTEFORCE:
  44. go run aron.go -url http://www.test.com/index.php -post
  45. go run aron.go -url http://www.test.com/index.php<[?id=1]> -post
  46. go run aron.go -url http://www.test.com/index.php<[?id=1]> -post -data "user=1"
  47. go run aron.go -url http://www.test.com/index.php<[?id=1]> -post -data "user=1" -wordlist my_wordlist
  48.  
  49. OR Note: in this case aron need the wordlist path
  50. aron -url http://www.test.com/index.php -post -wordlist path/wordlist.txt
  51. aron -url http://www.test.com/index.php<[?id=1]> -post -data "user=1" -wordlist path/wordlist.txt
  52.  
  53. Download Aron: https://github.com/m4ll0k/Aron
Add Comment
Please, Sign In to add comment