3/13/2016

[WEB HACKING] arachni - Web application security scanner framework

 많은 WVS(Web Vulnerability Scanner) 중 오픈소스 프레임워크인 arachni에 대한 이야기를 할까합니다. 간단하게 테스트 하였고, 무난하게 사용할 수 있을 것 같아 정리합니다.


Install arachni scanner


Download link
http://www.arachni-scanner.com/download/

64bit Command
#> wget https://github.com/Arachni/arachni/releases/download/v1.4/arachni-1.4-0.5.10-linux-x86_64.tar.gz
#> tar -xvf arachni-1.4-0.5.10-linux-x86_64.tar.gz
#> cd arachni-1.4-0.5.10
#> cd system/arachni-ui-web/bin
#> bundle install 
#> ./arachni

Run Scan


#> ./arachni http://127.0.0.1
Arachni - Web Application Security Scanner Framework v1.4
   Author: Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>

           (With the support of the community and the Arachni Team.)

   Website:       http://arachni-scanner.com
   Documentation: http://arachni-scanner.com/wiki


 [~] No checks were specified, loading all.
 [~] No element audit options were specified, will audit links, forms, cookies, UI inputs, UI forms, JSONs and XMLs.

 [*] Initializing...
 [*] Preparing plugins...
 [*] ... done.
 [~] Scheduled 302 redirection: http://127.0.0.1/ => /test

 [*] [HTTP: 302] http://127.0.0.1/
 [~] Analysis resulted in 0 usable paths.
...snip...

 [~] Total: 11
 [+] Without issues: 0
 [-] With issues: 11 ( 100% )

 [~] Report saved at: /test/arachni/system/arachni-ui-web/bin/127.0.0.1 2016-03-08 09_52_55 +0900.afr [0.04MB]

 [~] Audited 3 pages.

 [~] Duration: 00:00:14
 [~] Processed 171/262 HTTP requests.
 [~] -- 16.712 requests/second.
 [~] Processed 0/0 browser jobs.
 [~] -- 0.0 second/job.

 [~] Currently auditing          http://127.0.0.1/test/
 [~] Burst response time sum     37.542 seconds
 [~] Burst response count        37
 [~] Burst average response time 1.015 seconds
 [~] Burst average               10.069 requests/second
 [~] Timed-out requests          0
 [~] Original max concurrency    20
 [~] Throttled max concurrency   20

저장된 Report file(.afr)을 아래 명령처럼 reporter 를 이용하여 결과를 확인할 수 있습니다.
#> ./arachni_reporter  127.0.0.1\ 2016-03-08\ 09_52_55\ +0900.afr

WebUI로도 지원하니 구글링 좀 해보신 후 사용하시면 잘 활용할 수 있는 스캐너로 보입니다. :)

Reference

http://www.arachni-scanner.com


HAHWUL

Security engineer, Gopher and H4cker!

Share: | Coffee Me:

2 comments:

  1. 2년 넘게 지난 글이지만, 내용 추가해봅니다..
    [ 성능 관련 ]
    - 개인적으로 오픈소스중에 가장 좋은 것 같습니다. 탐지율도 좋고 REST API, RPC도 지원해서 고쳐서 쓰기 좋습니다. 대신, 느려요.
    - 벤치마킹 글들 봐도 비슷합니다.
    (http://sectoolmarket.com/price-and-feature-comparison-of-web-application-scanners-unified-list.html)

    [ Custom ]
    Ruby 기반이고 sinatra 기반의 REST API 지원합니다. 코드는 복잡하진 않아요. 덕분에 신나게 파헤치는중..

    [ 샤용법 관련 ]
    http://mrrootable.tistory.com/88
    @Dakkar Key 께서 잘 정리해주셨으니 참고해주세요 :)

    ReplyDelete
  2. Arachni가 전반적으로 스캔 속도가 느린데, 조금이나마 개선할 수 있는 부분들입니다.
    https://www.hahwul.com/2018/09/arachni-optimizing-for-fast-scanning.html

    ReplyDelete