Merge pull request #269842 from fabaff/metasploit-bump
metasploit: 6.3.43 -> 6.3.44
This commit is contained in:
commit
3fc3fd1e15
4 changed files with 18 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.3.43"
|
||||
gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.3.44"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
GIT
|
||||
remote: https://github.com/rapid7/metasploit-framework
|
||||
revision: 58dcabe21524d8b2c4d05618ca8509dc42cc6515
|
||||
ref: refs/tags/6.3.43
|
||||
revision: 54a9eee7f85d369feef55d6a340340ad965f80a0
|
||||
ref: refs/tags/6.3.44
|
||||
specs:
|
||||
metasploit-framework (6.3.43)
|
||||
metasploit-framework (6.3.44)
|
||||
actionpack (~> 7.0.0)
|
||||
activerecord (~> 7.0.0)
|
||||
activesupport (~> 7.0.0)
|
||||
|
@ -462,4 +462,4 @@ DEPENDENCIES
|
|||
metasploit-framework!
|
||||
|
||||
BUNDLED WITH
|
||||
2.4.20
|
||||
2.4.22
|
||||
|
|
|
@ -15,17 +15,22 @@ let
|
|||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "metasploit-framework";
|
||||
version = "6.3.43";
|
||||
version = "6.3.44";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rapid7";
|
||||
repo = "metasploit-framework";
|
||||
rev = version;
|
||||
sha256 = "sha256-IWdSxXhJFGbNTo9xqEjBJNEWB6imzdwzgnXoUbfao/g=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-LBmyFE617G2ryEAp5fig3G2T/goa9NXUggu0XH4X1xs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ (python3.withPackages (ps: [ ps.requests ])) ];
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
(python3.withPackages (ps: [ ps.requests ]))
|
||||
];
|
||||
|
||||
dontPatchELF = true; # stay away from exploit executables
|
||||
|
||||
|
|
|
@ -654,12 +654,12 @@
|
|||
platforms = [];
|
||||
source = {
|
||||
fetchSubmodules = false;
|
||||
rev = "58dcabe21524d8b2c4d05618ca8509dc42cc6515";
|
||||
sha256 = "1y53vavm3s3mh8rxrkd6m03idl94q54ahwcg9v6nc529g32m4rr1";
|
||||
rev = "54a9eee7f85d369feef55d6a340340ad965f80a0";
|
||||
sha256 = "06yp2xz5rd0bhbadbx0s1bz96vfwl3wfaaa0r2mnvv5m9qab469c";
|
||||
type = "git";
|
||||
url = "https://github.com/rapid7/metasploit-framework";
|
||||
};
|
||||
version = "6.3.43";
|
||||
version = "6.3.44";
|
||||
};
|
||||
metasploit-model = {
|
||||
groups = ["default"];
|
||||
|
|
Loading…
Reference in a new issue