fix-issue-19384

Resolve issue 19384 where msfvenom was unable to be run outside of the metasploit working directory.
This commit is contained in:
Isaac
2025-07-04 14:02:20 -04:00
committed by GitHub
parent 346c17dcb7
commit 1db87f1501
+3
View File
@@ -1,6 +1,9 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('Gemfile', __dir__)
require 'bundler/setup'
class MsfVenomError < StandardError; end
class HelpError < StandardError; end
class UsageError < MsfVenomError; end