web-dev-qa-db-ja.com

Metasploitで、カスタムexeをペイロードとして使用するにはどうすればよいですか?

質問はメーリングリストに一度ありましたが、回答がありませんでした。 metasploitのペイロードとしてカスタムexeを使用したい。たとえば、exploit/multi/browser/Java_atomicreferencearrayを使用して自分のpayload.exeを実行したい場合、どうすればよいですか?

カスタム実行可能ファイルをインポートするだけのSETでも可能です。

Metasploitで可能ですか?

2
JohnnyFromBF

Msfconsoleを次のオプションで使用して、任意のペイロードファイルまたは文字列を実行できます。

PAYLOADFILE The file to read the payload from
PAYLOADSTR  The string to use as a payload
Arch        The architecture that is being targeted
PLATFORM    The platform that is being targeted
VERBOSE     Enable detailed status messages
WORKSPACE   Specify the workspace for this module

http://www.metasploit.com/modules/payload/generic/custom

4
Rory Alsop