Search Criteria
Package Details: metasploit-git 1:4.17.14.48540.5ddbf6fd11-1
Git Clone URL: | https://aur.archlinux.org/metasploit-git.git (read-only, click to copy) |
---|---|
Package Base: | metasploit-git |
Description: | Advanced open-source platform for developing, testing, and using exploit code |
Upstream URL: | https://www.metasploit.com/ |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | axper |
Maintainer: | anthraxx (Shibumi) |
Last Packager: | anthraxx |
Votes: | 17 |
Popularity: | 0.000000 |
First Submitted: | 2014-10-19 15:27 |
Last Updated: | 2018-09-23 15:54 |
Dependencies (9)
- git (git-git)
- libpcap (libpcap-git)
- libxml2 (libxml2-linenum, libxml2-git)
- libxslt (libxslt-git)
- postgresql-libs (agensgraph-git, postgresql-libs-1c, postgresql-libs-10, postgresql-src-beta-libs, postgresql-libs-9.5, postgresql-libs-9.4, postgresql-src-libs, postgresql-lts-libs, postgresql-libs-12, postgresql-libs-9.6, postgresql-libs-11)
- ruby (ruby1.8, rvm)
- ruby-bundler
- sqlite (sqlite-fossil, sqlite-replication, sqlite-fts3-parenthesis, sqlite-minimal-git)
- ruby-pg (optional) – database support
Required by (9)
- armitage (requires metasploit)
- armitage-git (requires metasploit)
- ba-pentest-commons-meta (requires metasploit)
- mad-metasploit-archive-git (requires metasploit)
- mad-metasploit-git (requires metasploit)
- metasploit-payload-creator (requires metasploit)
- mysqloit (requires metasploit)
- social-engineer-toolkit (requires metasploit) (optional)
- social-engineer-toolkit-git (requires metasploit) (optional)
Latest Comments
1 2 3 4 5 Next › Last »
Arko commented on 2020-09-12 15:19
Add to dependencies inetutils. Without it msfconsole doesn't start and gives error:
FoxFromDarkness commented on 2020-02-03 15:40
@algebro just run
gem install bundler:1.17.3
dani commented on 2019-08-18 15:10
documentation/
direction is necessary for web ui. please do notmv
it.algebro commented on 2019-05-29 19:35
I'm getting the following error related to Bundler when trying to install this package. Any ideas?
anthraxx commented on 2018-03-15 02:16
Fixed plus switched to ruby 2.5 a small feedback would be appreciated if the regular workflow and exploitation works as always
digital commented on 2018-03-14 05:31
==> Validating source files with sha512sums...
==> Extracting sources...
-> Creating working copy of metasploit-framework git repo...
Switched to a new branch 'makepkg'
==> Starting prepare()...
patching file Gemfile
Hunk #1 FAILED at 19.
1 out of 1 hunk FAILED -- saving rejects to file Gemfile.rej
==> ERROR: A failure occurred in prepare().
anthraxx commented on 2016-02-20 16:18
@ext: try rebuilding and reinstalling. works fine
@mxgr: i will investigate how that can be achieved without the .git directory as the release tarball also does not provide any so i will not include the .git directory here.
digital commented on 2016-02-20 08:22
$ msfconsole
fatal: Not a git repository (or any of the parent directories): .git
Could not find activesupport-4.0.13 in any of the sources
Run `bundle install` to install missing gems.
mxgr commented on 2015-12-18 12:58
The package() function removes the .git folder. However, a repository is necessary for the msfupdate command to work. There is an error message "Cannot determine checkout type".
If I replace the line:
find . -maxdepth 1 -mindepth 1 -not -path './.git*' -exec cp -r '{}' "${pkgdir}/opt/${pkgname}" \;
with:
find . -maxdepth 1 -mindepth 1 -exec cp -r '{}' "${pkgdir}/opt/${pkgname}" \;
Then msfupdate runs without error.
jgabrito commented on 2015-08-08 15:04
Hi,
The 2015-07-18 update to the PKGBUILD script breaks the packaging. The line:
mkdir -p "${pkgdir}/opt" "${pkgdir}/usr/bin"
should be changed to:
mkdir -p "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
Otherwise the main installation directory is not created and the cp's in the next line don't work.