1. ホーム
  2. Qt

metasploitに関するいくつかのアーキテクチャカタログ

2022-02-11 20:32:33

usr/share/metasploit-framework にある metasploit フレームワークのディレクトリは、次のように ls -l を実行した後に見ることができます。


root@kali:/usr/share/metasploit-framework# ls -l
Total usage 508
drwxr-xr-x 4 root root 4096 Sep 29 08:31 app
-rw-r--r-- 1 root root 51 Oct 3 01:10 build_rev.txt
drwxr-xr-x 2 root root 4096 Oct 7 15:37 config
drwxr-xr-x 23 root root root 4096 Oct 7 15:37 data
drwxr-xr-x 3 root root root 4096 Oct 7 15:37 db
-rwxr-xr-x 1 root root 2090 Oct 3 00:59 Gemfile
-rw-r--r-- 1 root root 5561 Oct 3 00:59 Gemfile.lock
drwxr-xr-x 20 root root 4096 Oct 7 15:37 lib
-rw-r--r-- 1 root root 349334 Oct 3 01:10 metasploit-framework.gemspec
drwxr-xr-x 8 root root 4096 Jul 14 01:08 modules
-rwxr-xr-x 1 root root 7487 Oct 3 00:59 msfbinscan
-rwxr-xr-x 1 root root 16553 Oct 3 00:59 msfcli
-rwxr-xr-x 1 root root 1140 Oct 3 00:59 msfconsole
-rwxr-xr-x 1 root root 2640 Oct 3 00:59 msfd
-rwxr-xr-x 1 root root 2924 Oct 3 00:59 msfelfscan
-rwxr-xr-x 1 root root 7549 Oct 3 00:59 msfencode
-rwxr-xr-x 1 root root 2484 Oct 3 00:59 msfmachscan
-rwxr-xr-x 1 root root 5590 Oct 3 00:59 msfpayload
-rwxr-xr-x 1 root root 4508 Oct 3 00:59 msfpescan
-rwxr-xr-x 1 root root 4304 Oct 3 00:59 msfrop
-rwxr-xr-x 1 root root 2160 Oct 3 00:59 msfrpc
-rwxr-xr-x 1 root root 3098 Oct 3 00:59 msfrpcd
-rwxr-xr-x 1 root root 9647 Oct 3 00:59 msfupdate
-rwxr-xr-x 1 root root 8156 Oct 3 00:59 msfvenom
drwxr-xr-x 2 root root root 4096 Oct 7 15:37 plugins
-rwxr-xr-x 1 root root 478 Oct 3 00:59 Rakefile
drwxr-xr-x 6 root root root 4096 Jul 14 01:08 scripts
drwxr-xr-x 5 root root 4096 Oct 7 15:37 tools
drwxr-xr-x 3 root root 4096 Jul 14 01:08 vendor






ディレクトリ全体に対してtreeを実行すると、以下のようなファイル構成になります。


.
├─ app
│ ├── concerns
│ │ └── metasploit
│ │ └── credential
│ │ └── core
│ │ └── to_credential.rb
│ └── validators
│ ├── metasploit
│ │ └── framework
│ │ ├── executable_path_validator.rb
│ │ └── file_path_validator.rb
│ └── metasploit.rb
├── build_rev.txt
├── config
│ ├── application.rb
│ ├── boot.rb
│ ├── cucumber.yml
│ ├── database.yml.example
│ ├── database.yml.travis
│ └── environment.rb
├─ data
│ ├── android
│ │ ├── apk
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── classes.dex
│ │ │ │ ├── resources.arsc
│ │ │ ├─ libs
│ │ │ ├── armeabi
│ │ │ │ │ ├── libndkstager.so
│ │ │ │ ├── mips
│ │ │ │ └─ libndkstager.so
│ │ │ │ └── x86
│ │ │ │ └── libndkstager.so
│ │ │ ├── meterpreter.jar
│ │ ├── metstage.jar
│ │ ├── shell.jar
│ ├── cpuinfo
│ │ ├── build.sh
│ │ ├── cpuinfo.c
│ │ ├── cpuinfo.exe
│ │ ├── cpuinfo.ia32.bin
│ │ ├── cpuinfo.ia64.bin
│ ├── eicar.com
│ ├── eicar.txt
│ ├── emailer_config.yaml
│ ├── exploits
│ │ ├── batik_svg
│ │ │ │ ├─ Exploit$1.class
│ │ │ │ ├── Exploit.class
│ │ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── capture
│ │ │ └── http
│ │ │ │ ├── alexa.txt
│ │ │ │ ├── forms
│ │ │ │ │ ├── 01net.com.txt
│ │ │ │ │ ├── 126.com.txt
│ │ │ │ │ ├── 163.com.txt
│ │ │ │ │ ├─ 1und1.de.txt
│ │ │ │ │ ├── 2ch.net.txt
│ │ │ │ │ ├── 4shared.com.txt
│ │ │ │ │ ├── 56.com.txt
│ │ │ │ │ ├── 6park.com.txt
│ │ │ │ │ ├── 89.com.txt
│ │ │ │ │ ├── abcnews.go.com.txt
│ │ │ │
│ │ │ │ │ ├── seznam.cz.txt
│ │ │ │ │ ├── shopping.com.txt
│ │ │ │ │ ├── sify.com.txt
│ │ │ │ │ ├─ skype.com.txt
│ │ │ │ ├── skyrock.com.txt
│ │ │ │ │ ├─ slashdot.org.txt
│ │ │ │ │ ├── slickdeals.net.txt
│ │ │ │ │ ├── slide.com.txt
│ │ │ │ │ ├── softonic.com.txt
│ │ │ │ │ ├── softpedia.com.txt
│ │ │ │ │ ├── sogou.com.txt
│ │ │ │ │ ├── sohu.com.txt
│ │ │ │ │ ├─ so-net.ne.jp.txt
│ │ │ │ │ ├─ sonico.com.txt
│ │ │ │ │ ├── soso.com.txt
│ │ │ │ ├── soufun.com.txt
│ │ │ │ │ ├── sourceforge.net.txt
│ │ │ │ │ ├── spankwire.com.txt
│ │ │ │ │ ├─ spiegel.de.txt
│ │ │ │ │ ├── squidoo.com.txt
│ │ │ │ │ ├── starware.com.txt
│ │ │ │ │ ├─ studiverzeichnis.com.txt
│ │ │ │ │ ├─ symantec.com.txt
│ │ │ │ ├── tagged.com.txt
│ │ │ │ │ ├── target.com.txt
│ │ │ │ │ ├─ taringa.net.txt
│ │ │ │ ├── teacup.com.txt
│ │ │ │ ├── technorati.com.txt
│ │ │ │ │ ├── terra.com.br.txt
│ │ │ │ │ ├── thefreedictionary.com.txt
│ │ │ │ │ ├── thepiratebay.org.txt
│ │ │ │ │ ├── thottbot.com.txt
│ │ │ │ │ ├─ tianya.cn.txt
│ │ │ │ │ ├── tinypic.com.txt
│ │ │ │ │ ├─ tom.com.txt
│ │ │ │ │ ├─ torrentreactor.net.txt
│ │ │ │ │ ├── torrentz.com.txt
│ │ │ │ │ ├── torrentz.ws.txt
│ │ │ │ │ ├─ tripod.com.txt
│ │ │ │ │ ├─ truveo.com.txt
│ │ │ │ │ ├── tudou.com.txt
│ │ │ │ │ ├── tu.tv.txt
│ │ │ │ │ ├── tv.com.txt
│ │ │ │ ├── twitter.com.txt
│ │ │ │ │ ├─ ucoz.ru.txt
│ │ │ │ │ ├── ultimate-guitar.com.txt
│ │ │ │ │ ├── uol.com.br.txt
│ │ │ │ │ ├── ups.com.txt
│ │ │ │ │ ├── usercash.com.txt
│ │ │ │ │ ├── usps.com.txt
│ │ │ │ │ ├── vagos.es.txt
│ │ │ │ │ ├── veoh.com.txt
│ │ │ │ │ ├── verizon.net.txt
│ │ │ │ │ ├── verycd.com.txt
│ │ │ │ │ ├── videosz.com.txt
│ │ │ │ │ ├─ vkontakte.ru.txt
│ │ │ │ │ ├── vmn.net.txt
│ │ │ │ │ ├── walmart.com.txt
│ │ │ │ │ ├── wamu.com.txt
│ │ │ │ │ ├── warez-bb.org.txt
│ │ │ │ │ ├── washingtonpost.com.txt
│ │ │ │ │ ├── watch-movies.net.txt
│ │ │ │ │ ├── weather.com.txt
│ │ │ │ │ ├── web.de.txt
│ │ │ │ │ ├── webshots.com.txt
│ │ │ │ │ ├── wikia.com.txt
│ │ │ │ │ ├── wikipedia.org.txt
│ │ │ │ │ ├── wordpress.com.txt
│ │ │ │ │ ├── wordreference.com.txt
│ │ │ │ │ ├── wowarmory.com.txt
│ │ │ │ ├── wow-europe.com.txt
│ │ │ │ │ ├── wowhead.com.txt
│ │ │ │ │ ├── wp.pl.txt
│ │ │ │ │ ├── wretch.cc.txt
│ │ │ │ │ ├── wsj.com.txt
│ │ │ │ │ ├── wwe.com.txt
│ │ │ │ │ ├── www.care2.com.txt
│ │ │ │ ├── www.careerbuilder.com.txt
│ │ │ │ │ ├── www.ecademy.com.txt
│ │ │ │ │ ├── www.gather.com.txt
│ │ │ │ │ ├─ www.google.com.txt
│ │ │ │ │ ├─ www.linkedin.com.txt
│ │ │ │ │ ├─ www.livejournal.com.txt
│ │ │ │ │ ├─ www.monster.com.txt
│ │ │ │ │ ├─ www.myspace.com.txt
│ │ │ │ │ ├─ www.plaxo.com.txt
│ │ │ │ │ ├─ www.ryze.com.txt
│ │ │ │ │ ├─ www.slashdot.org.txt
│ │ │ │ │