
Recherche avancée
Autres articles (69)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (9254)
-
Merge commit ’4ab496261b12e20ef293b7adca4fcaef1a67c538’
19 mars 2017, par James AlmerMerge commit ’4ab496261b12e20ef293b7adca4fcaef1a67c538’
* commit ’4ab496261b12e20ef293b7adca4fcaef1a67c538’ :
libvpx : Cast a pointer to const to squelch a warningThis commit is a noop, see 09b3bbe6057c9d03dff2467b1e6748a617afea15
Merged-by : James Almer <jamrial@gmail.com>
-
Merge commit ’8ddfa5ae5ef64a25dd087d74954ebdb9081f0d67’
31 mars 2017, par James AlmerMerge commit ’8ddfa5ae5ef64a25dd087d74954ebdb9081f0d67’
* commit ’8ddfa5ae5ef64a25dd087d74954ebdb9081f0d67’ :
vf_drawtext : Drop wrong void* castThis commit is a noop, see 4c96985af1b8870482b6b6ef9120960633f62cee
Merged-by : James Almer <jamrial@gmail.com>
-
avutil/aes : Don't use misaligned pointers
21 octobre 2022, par Andreas Rheinhardtavutil/aes : Don't use misaligned pointers
The AES code uses av_aes_block, a union consisting of
uint64_t[2], uint32_t[4], uint8_t[4][4] and uint8_t[16].
subshift() performs byte-wise manipulations of two av_aes_blocks,
but when encrypting, it does so with a shift of two bytes ;
more precisely, it uses
"av_aes_block *s1 = (av_aes_block *) (s0[0].u8 - s)"
and lateron uses the uint8_t[16] member to access s0.
Yet av_aes_block requires to be suitably aligned for
the uint64_t[2] member, which s0[0].u8 - 2 is certainly
not. This is in violation of 6.3.2.3 (7) of C11. UBSan
reports this in the aes_ctr, mov-3elist-encrypted,
mov-frag-encrypted, mov-tenc-only-encrypted and srtp
tests.
Furthermore, there is another issue here : The pointer points
outside of s0 ; this works, because all the accesses lateron
use an index >= 3. (Clang-)UBSan reports this as
"runtime error : index -2 out of bounds for type 'uint8_t[16]'".This commit fixes both of these issues : The latter issue
is fixed by applying an offset of "+ 3" during the cast
and subtracting this from the indices used lateron.
The former issue is solved by not casting to av_aes_block*
at all ; instead simply cast to unsigned char*.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>