2023-06-01 11:07:04 +00:00
## Objective-C
{% hint style="danger" %}
2023-06-03 13:10:46 +00:00
Notez que les programmes écrits en Objective-C **conservent** leurs déclarations de classe **lorsqu'ils** sont compilés en [binaires Mach-O ](macos-files-folders-and-binaries/universal-binaries-and-mach-o-format.md ). Ces déclarations de classe **incluent** le nom et le type de :
2023-06-01 11:07:04 +00:00
{% endhint %}
2023-06-03 13:10:46 +00:00
* La classe
* Les méthodes de classe
* Les variables d'instance de classe
2023-06-01 11:07:04 +00:00
2023-06-03 13:10:46 +00:00
Vous pouvez obtenir ces informations en utilisant [**class-dump** ](https://github.com/nygard/class-dump ) :
2023-06-01 11:07:04 +00:00
```bash
class-dump Kindle.app
```
2023-06-03 13:10:46 +00:00
Notez que ces noms peuvent être obscurcis pour rendre la rétro-ingénierie du binaire plus difficile.
2023-06-01 11:07:04 +00:00
2023-06-03 13:10:46 +00:00
## Classes, méthodes et objets
2023-05-08 22:07:46 +00:00
2023-06-03 13:10:46 +00:00
### Interface, propriétés et méthodes
2023-05-08 22:07:46 +00:00
```objectivec
// Declare the interface of the class
@interface MyVehicle : NSObject
// Declare the properties
@property NSString *vehicleType;
@property int numberOfWheels;
// Declare the methods
- (void)startEngine;
- (void)addWheels:(int)value;
@end
```
2023-06-03 13:10:46 +00:00
### **Classe**
2023-05-08 22:07:46 +00:00
```objectivec
@implementation MyVehicle : NSObject
// No need to indicate the properties, only define methods
- (void)startEngine {
NSLog(@"Engine started");
}
- (void)addWheels:(int)value {
self.numberOfWheels += value;
}
@end
```
2023-06-03 13:10:46 +00:00
### **Objet et Appel de Méthode**
2023-05-08 22:07:46 +00:00
2023-06-03 13:10:46 +00:00
Pour créer une instance d'une classe, la méthode ** `alloc` ** est appelée, ce qui **alloue de la mémoire** pour chaque **propriété** et **initialise à zéro** ces allocations. Ensuite, ** `init` ** est appelé, ce qui **initialise les propriétés** aux **valeurs requises** .
2023-05-08 22:07:46 +00:00
```objectivec
// Something like this:
MyVehicle *newVehicle = [[MyVehicle alloc] init];
// Which is usually expressed as:
MyVehicle *newVehicle = [MyVehicle new];
// To call a method
// [myClassInstance nameOfTheMethodFirstParam:param1 secondParam:param2]
[newVehicle addWheels:4];
```
2023-06-03 13:10:46 +00:00
### **Méthodes de classe**
2023-05-08 22:07:46 +00:00
2023-06-03 13:10:46 +00:00
Les méthodes de classe sont définies avec le **signe plus** (+) et non le trait d'union (-) utilisé avec les méthodes d'instance. Comme la méthode de classe ** `stringWithString` ** de la classe **NSString** :
2023-05-08 22:07:46 +00:00
```objectivec
+ (id)stringWithString:(NSString *)aString;
```
2023-05-09 00:02:08 +00:00
### Setter & Getter
2023-05-08 22:07:46 +00:00
2023-06-03 13:10:46 +00:00
Pour **définir** et **obtenir** des propriétés, vous pouvez le faire avec une **notation pointée** ou comme si vous appeliez une **méthode** :
2023-05-08 22:07:46 +00:00
```objectivec
// Set
newVehicle.numberOfWheels = 2;
[newVehicle setNumberOfWheels:3];
// Get
NSLog(@"Number of wheels: %i", newVehicle.numberOfWheels);
NSLog(@"Number of wheels: %i", [newVehicle numberOfWheels]);
```
2023-06-03 13:10:46 +00:00
### **Variables d'instance**
2023-05-08 22:07:46 +00:00
2023-06-03 13:10:46 +00:00
En alternative aux méthodes setter et getter, vous pouvez utiliser des variables d'instance. Ces variables ont le même nom que les propriétés, mais commencent par un "\_":
2023-05-08 22:07:46 +00:00
```objectivec
- (void)makeLongTruck {
2023-05-09 00:02:08 +00:00
_numberOfWheels = +10000;
NSLog(@"Number of wheels: %i", self.numberOfLeaves);
2023-05-08 22:07:46 +00:00
}
```
2023-06-03 13:10:46 +00:00
### Protocoles
2023-05-08 22:07:46 +00:00
2023-06-03 13:10:46 +00:00
Les protocoles sont des ensembles de déclarations de méthodes (sans propriétés). Une classe qui implémente un protocole implémente les méthodes déclarées.
2023-05-09 00:02:08 +00:00
2023-06-03 13:10:46 +00:00
Il existe 2 types de méthodes : **obligatoires** et **optionnelles** . Par **défaut** , une méthode est **obligatoire** (mais vous pouvez également l'indiquer avec une balise ** `@required` **). Pour indiquer qu'une méthode est optionnelle, utilisez ** `@optional` **.
2023-05-09 00:02:08 +00:00
```objectivec
@protocol myNewProtocol
- (void) method1; //mandatory
@required
- (void) method2; //mandatory
@optional
- (void) method3; //optional
@end
```
2023-06-03 13:10:46 +00:00
### Tout ensemble
2023-05-09 00:02:08 +00:00
```objectivec
// gcc -framework Foundation test_obj.m -o test_obj
#import <Foundation/Foundation.h>
@protocol myVehicleProtocol
- (void) startEngine; //mandatory
@required
- (void) addWheels:(int)value; //mandatory
@optional
- (void) makeLongTruck; //optional
@end
@interface MyVehicle : NSObject < myVehicleProtocol >
@property int numberOfWheels;
- (void)startEngine;
- (void)addWheels:(int)value;
- (void)makeLongTruck;
@end
@implementation MyVehicle : NSObject
- (void)startEngine {
NSLog(@"Engine started");
}
- (void)addWheels:(int)value {
self.numberOfWheels += value;
}
- (void)makeLongTruck {
_numberOfWheels = +10000;
NSLog(@"Number of wheels: %i", self.numberOfWheels);
}
@end
int main() {
MyVehicle* mySuperCar = [MyVehicle new];
[mySuperCar startEngine];
mySuperCar.numberOfWheels = 4;
NSLog(@"Number of wheels: %i", mySuperCar.numberOfWheels);
[mySuperCar setNumberOfWheels:3];
NSLog(@"Number of wheels: %i", mySuperCar.numberOfWheels);
[mySuperCar makeLongTruck];
}
```
2023-06-03 13:10:46 +00:00
### Classes de base
2023-05-09 00:02:08 +00:00
2023-06-03 13:10:46 +00:00
#### Chaîne de caractères
2023-05-09 00:02:08 +00:00
{% code overflow="wrap" %}
```objectivec
// NSString
NSString *bookTitle = @"The Catcher in the Rye";
NSString *bookAuthor = [[NSString alloc] initWithCString:"J.D. Salinger" encoding:NSUTF8StringEncoding];
NSString *bookPublicationYear = [NSString stringWithCString:"1951" encoding:NSUTF8StringEncoding];
```
{% endcode %}
2023-06-03 13:10:46 +00:00
Les classes de base sont **immuables** , donc pour ajouter une chaîne de caractères à une chaîne existante, **une nouvelle NSString doit être créée** .
2023-05-09 00:02:08 +00:00
{% code overflow="wrap" %}
```objectivec
NSString *bookDescription = [NSString stringWithFormat:@"%@ by %@ was published in %@", bookTitle, bookAuthor, bookPublicationYear];
```
{% endcode %}
2023-06-03 13:10:46 +00:00
Ou vous pouvez également utiliser une classe de chaîne **mutable** :
2023-05-09 00:02:08 +00:00
{% code overflow="wrap" %}
```objectivec
NSMutableString *mutableString = [NSMutableString stringWithString:@"The book "];
[mutableString appendString:bookTitle];
[mutableString appendString:@" was written by "];
[mutableString appendString:bookAuthor];
[mutableString appendString:@" and published in "];
[mutableString appendString:bookPublicationYear];
```
{% endcode %}
2023-06-03 13:10:46 +00:00
#### Nombre
2023-05-09 00:02:08 +00:00
{% code overflow="wrap" %}
```objectivec
// character literals.
NSNumber *theLetterZ = @'Z'; // equivalent to [NSNumber numberWithChar:'Z']
// integral literals.
NSNumber *fortyTwo = @42 ; // equivalent to [NSNumber numberWithInt:42]
NSNumber *fortyTwoUnsigned = @42U ; // equivalent to [NSNumber numberWithUnsignedInt:42U]
NSNumber *fortyTwoLong = @42L ; // equivalent to [NSNumber numberWithLong:42L]
NSNumber *fortyTwoLongLong = @42LL ; // equivalent to [NSNumber numberWithLongLong:42LL]
// floating point literals.
NSNumber *piFloat = @3 .141592654F; // equivalent to [NSNumber numberWithFloat:3.141592654F]
NSNumber *piDouble = @3 .1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535]
// BOOL literals.
NSNumber *yesNumber = @YES ; // equivalent to [NSNumber numberWithBool:YES]
NSNumber *noNumber = @NO ; // equivalent to [NSNumber numberWithBool:NO]
```
2023-06-03 13:10:46 +00:00
#### Tableau, Ensembles & Dictionnaire
2023-05-09 00:02:08 +00:00
{% code overflow="wrap" %}
```objectivec
// Inmutable arrays
NSArray *colorsArray1 = [NSArray arrayWithObjects:@"red", @"green", @"blue", nil];
NSArray *colorsArray2 = @[@"yellow", @"cyan", @"magenta"];
NSArray *colorsArray3 = @[firstColor, secondColor, thirdColor];
// Mutable arrays
NSMutableArray *mutColorsArray = [NSMutableArray array];
[mutColorsArray addObject:@"red"];
[mutColorsArray addObject:@"green"];
[mutColorsArray addObject:@"blue"];
[mutColorsArray addObject:@"yellow"];
[mutColorsArray replaceObjectAtIndex:0 withObject:@"purple"];
// Sets
NSSet *fruitsSet1 = [NSSet setWithObjects:@"apple", @"banana", @"orange", nil];
NSSet *fruitsSet2 = [NSSet setWithArray:@[@"apple", @"banana", @"orange"]];
// Inmutable sets
NSMutableSet *mutFruitsSet = [NSMutableSet setWithObjects:@"apple", @"banana", @"orange", nil];
[mutFruitsSet addObject:@"grape"];
[mutFruitsSet removeObject:@"apple"];
// Dictionary
NSDictionary *fruitColorsDictionary = @{
@"apple" : @"red",
@"banana" : @"yellow",
@"orange" : @"orange",
@"grape" : @"purple"
};
// In dictionaryWithObjectsAndKeys you specify the value and then the key:
NSDictionary *fruitColorsDictionary2 = [NSDictionary dictionaryWithObjectsAndKeys:
@"red", @"apple",
@"yellow", @"banana",
@"orange", @"orange",
@"purple", @"grape",
nil];
// Mutable dictionary
NSMutableDictionary *mutFruitColorsDictionary = [NSMutableDictionary dictionaryWithDictionary:fruitColorsDictionary];
[mutFruitColorsDictionary setObject:@"green" forKey:@"apple"];
[mutFruitColorsDictionary removeObjectForKey:@"grape"];
```
{% endcode %}
2023-06-03 13:10:46 +00:00
### Blocs
2023-05-09 13:53:58 +00:00
2023-06-03 13:10:46 +00:00
Les blocs sont des **fonctions qui se comportent comme des objets** et peuvent donc être passés en paramètre de fonctions ou **stockés** dans des **tableaux** ou des **dictionnaires** . De plus, ils peuvent **représenter une valeur s'ils sont donnés des valeurs** , ce qui est similaire aux lambdas.
2023-05-09 13:53:58 +00:00
```objectivec
returnType (^blockName)(argumentType1, argumentType2, ...) = ^(argumentType1 param1, argumentType2 param2, ...){
//Perform operations here
};
// For example
int (^suma)(int, int) = ^(int a, int b){
return a+b;
};
NSLog(@"3+4 = %d", suma(3,4));
```
{% endcode %}
2023-06-03 13:10:46 +00:00
Il est également possible de **définir un type de bloc à utiliser en tant que paramètre** dans les fonctions :
2023-05-09 13:53:58 +00:00
```objectivec
// Define the block type
typedef void (^callbackLogger)(void);
// Create a bloack with the block type
callbackLogger myLogger = ^{
NSLog(@"%@", @"This is my block");
};
// Use it inside a function as a param
void genericLogger(callbackLogger blockParam) {
NSLog(@"%@", @"This is my function");
blockParam();
}
genericLogger(myLogger);
// Call it inline
genericLogger(^{
NSLog(@"%@", @"This is my second block");
});
```
2023-06-03 13:10:46 +00:00
### Fichiers
2023-05-09 13:53:58 +00:00
{% code overflow="wrap" %}
```objectivec
// Manager to manage files
NSFileManager *fileManager = [NSFileManager defaultManager];
// Check if file exists:
if ([fileManager fileExistsAtPath:@"/path/to/file.txt" ] == YES) {
NSLog (@"File exists");
}
// copy files
if ([fileManager copyItemAtPath: @"/path/to/file1.txt" toPath: @"/path/to/file2.txt" error:nil] == YES) {
NSLog (@"Copy successful");
}
// Check if the content of 2 files match
if ([fileManager contentsEqualAtPath:@"/path/to/file1.txt" andPath:@"/path/to/file2.txt"] == YES) {
NSLog (@"File contents match");
}
// Delete file
if ([fileManager removeItemAtPath:@"/path/to/file1.txt" error:nil]) {
NSLog(@"Removed successfully");
}
```
{% endcode %}
2023-06-03 13:10:46 +00:00
Il est également possible de gérer les fichiers **en utilisant des objets `NSURL` au lieu d'objets `NSString`** . Les noms des méthodes sont similaires, mais **avec `URL` au lieu de `Path`** .
2023-05-09 13:53:58 +00:00
```objectivec
NSURL *fileSrc = [NSURL fileURLWithPath:@"/path/to/file1.txt"];
NSURL *fileDst = [NSURL fileURLWithPath:@"/path/to/file2.txt"];
[fileManager moveItemAtURL:fileSrc toURL:fileDst error: nil];
```
2023-06-03 13:10:46 +00:00
La plupart des classes de base ont une méthode `writeToFile:<path> atomically:<YES> encoding:<encoding> error:nil` définie qui leur permet d'être directement écrites dans un fichier :
2023-05-09 13:53:58 +00:00
{% code overflow="wrap" %}
```objectivec
NSString* tmp = @"something temporary";
[tmp writeToFile:@"/tmp/tmp1.txt" atomically:YES encoding:NSASCIIStringEncoding error:nil];
```
{% endcode %}
2023-05-08 22:07:46 +00:00
< details >
< 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 >
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 ).
2023-05-08 22:07:46 +00:00
< / details >