1. <nobr id="easjo"><address id="easjo"></address></nobr>

      <track id="easjo"><source id="easjo"></source></track>
      1. 
        

      2. <bdo id="easjo"><optgroup id="easjo"></optgroup></bdo>
      3. <track id="easjo"><source id="easjo"><em id="easjo"></em></source></track><option id="easjo"><span id="easjo"><em id="easjo"></em></span></option>
          貴州做網站公司
          貴州做網站公司~專業!靠譜!
          10年網站模板開發經驗,熟悉國內外開源網站程序,包括DEDECMS,WordPress,ZBlog,Discuz! 等網站程序,可為您提供網站建設,網站克隆,仿站,網頁設計,網站制作,網站推廣優化等服務。我們專注高端營銷型網站,企業官網,集團官網,自適應網站,手機網站,網絡營銷,網站優化,網站服務器環境搭建以及托管運維等。為客戶提供一站式網站解決方案?。?!

          Kiterunner

          來源:互聯網轉載 時間:2024-01-29 08:22:58

          關于Kiterunner

          長期以來,跟“內容搜索”相關的技術一直都是基于文件和文件夾查找來實現的。雖然這種方法對于托管靜態文件或響應文件路徑的Web服務器來說是有效的,但對于現代Web應用程序來說,這種方法的有效性就沒那么高了,尤其是那些使用了API來實現功能的Web應用程序。

          隨著時間的推移,越來越多的研究人員開始投身于加快內容發現工具的開發上,以便使用更大型的字典,但這種方式仍然沒有本質上的革新。

          Kiterunner這款工具不僅能夠以閃電般的速度執行傳統的內容掃描技術,而且還能夠在現代應用程序中爆破路由或節點。

          現代應用程序框架,例如Flask、Rails、Express、Django等,都遵循顯式定義路由的范式,路由需要特定的HTTP方法、頭、參數和值。當使用傳統的內容發現工具時,這樣的路由常常會被遺漏,而且很難被發現。

          通過整理Swagger規范的數據集并將其壓縮到我們自己的模式中,Kiterunner可以使用此數據集,并通過為它發送的每個請求發送正確的HTTP方法、頭、路徑、參數和值來爆破API節點。

          工具安裝

          下載Release版本

          廣大研究人員可以直接點擊【https://github.com/assetnote/kiterunner/releases】下載該工具的預編譯拷貝。

          源碼構建

          首先,我們需要使用下列命令將該項目源碼克隆至本地:

          git clone https://github.com/assetnote/kiterunner.git

          接下來,構建源碼:

          make build

          設置代碼符號鏈接:

          ln -s $(pwd)/dist/kr /usr/local/bin/kr

          編譯字典:

          kr kb compile routes.json routes.kite

          執行掃描:

          kr scan hosts.txt -w routes.kite -x 20 -j 100 --ignore-length=1053

          JSON格式數據集

          -rootes-large.json(壓縮后118MB,解壓后2.6GB)

          -rootes-small.json(壓縮后14MB,解壓后228MB)

          或者,我們也可以直接下載.kite文件:

          -routes-large.kite(壓縮后40MB,解壓后182MB)

          -routes-small.kite(壓縮后2MB,解壓后35MB)

          工具使用

          快速掃描

          其中的可以是一個文件、域名或者URI:

          kr [scan|brute] <input> [flags]

          有一個待掃描主機的列表,但是沒有字典:

          kr scan hosts.txt -A=apiroutes-210328:20000 -x 5 -j 100 --fail-status-codes 400,401,404,403,501,502,426,411

          有自己的字典:

          kr scan target.com -w routes.kite -A=apiroutes-210328:20000 -x 20 -j 1 --fail-status-codes 400,401,404,403,501,502,426,411

          使用前20000個單詞進行常規爆破:

          kr brute https://target.com/subapp/ -A=aspx-210328:20000 -x 20 -j 1

          使用目錄搜索風格的字典和%EXT%結合掃描:

          kr brute https://target.com/subapp/ -w dirsearch.txt -x 20 -j 1 -exml,asp,aspx,ashx -D

          命令行選項

          Usage:  kite scan [flags]Flags:  -A, --assetnote-wordlist strings    use the wordlists from wordlist.assetnote.io. specify the type/name to use, e.g. apiroutes-210228. You can specify an additional maxlength to use only the first N values in the wordlist, e.g. apiroutes-210228;20000 will only use the first 20000 lines in that wordlist      --blacklist-domain strings      domains that are blacklisted for redirects. We will not follow redirects to these domains      --delay duration                delay to place inbetween requests to a single host      --disable-precheck              whether to skip host discovery      --fail-status-codes ints        which status codes blacklist as fail. if this is set, this will override success-status-codes      --filter-api strings            only scan apis matching this ksuid      --force-method string           whether to ignore the methods specified in the ogl file and force this method  -H, --header strings                headers to add to requests (default [x-forwarded-for: 127.0.0.1])  -h, --help                          help for scan      --ignore-length strings         a range of content length bytes to ignore. you can have multiple. e.g. 100-105 or 1234 or 123,34-53. This is inclusive on both ends      --kitebuilder-full-scan         perform a full scan without first performing a phase scan.  -w, --kitebuilder-list strings      ogl wordlist to use for scanning  -x, --max-connection-per-host int   max connections to a single host (default 3)  -j, --max-parallel-hosts int        max number of concurrent hosts to scan at once (default 50)      --max-redirects int             maximum number of redirects to follow (default 3)  -d, --preflight-depth int           when performing preflight checks, what directory depth do we attempt to check. 0 means that only the docroot is checked (default 1)      --profile-name string           name for profile output file      --progress                      a progress bar while scanning. by default enabled only on Stderr (default true)      --quarantine-threshold int      if the host return N consecutive hits, we quarantine the host as wildcard. Set to 0 to disable (default 10)      --success-status-codes ints     which status codes whitelist as success. this is the default mode  -t, --timeout duration              timeout to use on all requests (default 3s)      --user-agent string             user agent to use for requests (default "Chrome. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36")      --wildcard-detection            can be set to false to disable wildcard redirect detection (default true)Global Flags:      --config string    config file (default is $HOME/.kiterunner.yaml)  -o, --output string    output format. can be json,text,pretty (default "pretty")  -q, --quiet            quiet mode. will mute unecessarry pretty text  -v, --verbose string   level of logging verbosity. can be error,info,debug,trace (default "info")爆破選項bruteforce flags (all the flags above +)  -D, --dirsearch-compat              this will replace %EXT% with the extensions provided. backwards compat with dirsearch because shubs loves him some dirsearch  -e, --extensions strings            extensions to append while scanning  -w, --wordlist strings              normal wordlist to use for scanning

          API掃描

          掃描單個目標:

          kr scan https://target.com:8443/ -w routes.kite -A=apiroutes-210228:20000 -x 10 --ignore-length=34

          掃描單個目標,并嘗試http和https:

          kr scan target.com -w routes.kite -A=apiroutes-210228:20000 -x 10 --ignore-length=34

          掃描目標列表:

          kr scan targets.txt -w routes.kite -A=apiroutes-210228:20000 -x 10 --ignore-length=34

          項目地址

          Kiterunner:【點擊底部閱讀原文獲取】

          標簽:KITERUNNER-

          網絡推廣與網站優化公司(網絡優化與推廣專家)作為數字營銷領域的核心服務提供方,其價值在于通過技術手段與策略規劃幫助企業提升線上曝光度、用戶轉化率及品牌影響力。這...

          在當今數字化時代,公司網站已成為企業展示形象、傳遞信息和開展業務的重要平臺。然而,對于許多公司來說,網站建設的價格是一個關鍵考量因素。本文將圍繞“公司網站建設價...

          在當今的數字化時代,企業網站已成為企業展示形象、吸引客戶和開展業務的重要平臺。然而,對于許多中小企業來說,高昂的網站建設費用可能會成為其發展的瓶頸。幸運的是,隨...

          slot是什么意思?Slot在英語中是Slot的意思。有些手機可能在國外或中國設計有英文標簽,或者是為了生產技術,所以手機上沒有中文標簽,改用英文標簽。什么是Slot?你好,房東,你的問題是什么?如果是一臺電腦,它應該是一種老式電腦主板處理器的插槽。當時,有兩種插槽,一種是插槽1,另一種是插槽2。舊的服務器專用主板也有這種插槽。我希望我能幫忙。忙碌的。timeslot是什么意思?請教一下大家?收音...

          歪歪如何設置鮮花?斜置花的方法如下:1。當等級達到16級時,可以送出一束鮮花。在我的花里,你可以設定一束花的數目。2. 渠道經理可以根據當前渠道刷花的情況,禁止送花或調整花的大小?;ǖ拇笮〔煌簑aiwai voice是廣州多灣信息技術有限公司開發的基于互聯網的團隊語音通信平臺,是一款功能強大、音質清晰、安全穩定、不占用資源、適合游戲玩家的免費語音軟件。在網絡上通常用YY來表示。簡而言之,它是一種...

          csgoiem全球總決賽賽制?還有期末考試。IEM8卡托維茲世界總決賽是繼S3世界總決賽之后第一個真正意義上的LOL國際賽事。IEM8卡托維茲世界總決賽是繼S3世界總決賽之后第一個真正意義上的LOL國際賽事。八支隊伍分成兩組,老對手之間的競爭再次被點燃,新對手也可能出現。雙循環賽制保證了觀眾可以看到各隊之間多樣化的比賽,也給了各隊真正展示實力,爭奪冠軍的機會。we戰隊榮譽都有哪些?2011年WCG...

          TOP
          国产初高中生视频在线观看|亚洲一区中文|久久亚洲欧美国产精品|黄色网站入口免费进人
          1. <nobr id="easjo"><address id="easjo"></address></nobr>

              <track id="easjo"><source id="easjo"></source></track>
              1. 
                

              2. <bdo id="easjo"><optgroup id="easjo"></optgroup></bdo>
              3. <track id="easjo"><source id="easjo"><em id="easjo"></em></source></track><option id="easjo"><span id="easjo"><em id="easjo"></em></span></option>