Samuel AUBERTIN
twitter.com/sk4nz
sk4.nz
Un peu de hardware
; hello_world.nasm
section .data
; maVariable: valeur
helloMsg: db 'Hello world!',10 ; Hello world!\n
helloSize: equ $-helloMsg ; 13 = sizeof('Hello world!\n');
section .text
; main()
global _start
_start:
mov eax, 4 ; A = Appel système N° 4 : "write" (sys_write)
mov ebx, 1 ; B = Descripteur de fichier N° 1 : STDOUT (sortie standard)
mov ecx, helloMsg ; C = Paramètre : la chaîne à afficher
mov edx, helloSize ; D = Paramètre : la taille de la chaîne
int 80h ; Exécution de l'appel système avec l'interruption 0x80
; === MODE NOYAU ===
mov eax, 1 ; Appel système "exit"
mov ebx, 0 ; Code de retour
int 80h ; Exécution de l'appel système avec l'interruption 0x80
; === MODE NOYAU ===
<unistd.h> : ssize_t sys_write(unsigned int fd, const char * buf, size_t count)
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello World !\n");
return 0;
}
#include <unistd.h>
int main(int argc, char **argv) {
write(1, "Hello World!", 12);
return 0;
}
Noyau
Système d'exploitation
Interface utilisateur
Hardware
API/ABI
Drivers
POSIX
API
ABI
Rasoir d'Ockham : Pluralitas non est ponenda sine necessitate
(les multiples ne doivent pas être utilisés sans nécessité)
La simplicité est la sophistication suprême
Léonard de Vinci
Il semble que la perfection soit atteinte non quand il n'y a plus rien à ajouter, mais quand il n'y a plus rien à retrancher
Antoine de Saint-Exupéry
"Do One Thing and Do It Well."
ls
cat
grep
cd
cp
Un noyau ET une base.
Facilement modifiable.
Une équipe de développeurs barbus.
~15 vulnérabilités/an
Patchs dans -STABLE et -CURRENT :
# pkg install nmap
Installation de nmap via les packages
# portsnap fetch extract
# cd /usr/ports/security/nmap/
# make install clean
Installation de nmap via les ports
Beaucoup de littérature parue !
Copyright (c) 1998, Regents of the University of California
All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the University of California, Berkeley nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
57 architectures supportées
http://www.netbsd.org/ports/
Tous proviennent du projet OpenBSD !
OpenSSH
OpenSMTPd
OpenBGPd
OpenNTPd
PacketFilter
LibreSSL
~7.5 vulns/an !
strlcpy()
strlcat()
W^X
segments .rodata
random malloc()
random mmap()
chroot amélioré
doas
pledge()
Pas de BLOBS !
Dedicated OpenBSD Application Subexecutor : le sudo maison.
#/etc/sudoers
sk4nz ALL = (root) NOPASSWD: /usr/sbin/nmap
#/etc/doas.conf
permit nopass sk4nz as root cmd /usr/sbin/nmap
#include <unistd.h>
int pledge(const char *promises, const char *paths[]);
if (pledge(“dns”, NULL) == -1)
err(1, “Pledge Init”);
Avec pledge(), on promets à l'OS que le programme ne fera que ce qui est énoncé.
La plus complète de toutes celles que j'ai pu lire.
# cat /etc/httpd.conf
server "sk4.nz" {
listen on * port 80
}
# cat /etc/httpd.conf
server "sk4.nz" {
listen on * port 80
location "/*.php*" {
fastcgi socket "/run/php-fpm.sock"
}
}
Copyright (C) <année(s)> <détenteur(s)> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.