This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /aaa | |
| /allscreens | |
| /ancot | |
| /bootstrap | |
| /dolimed | |
| /ecommerce | |
| /extensions | |
| /forceproject | |
| /lea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST / HTTP/1.1 | |
| Host: localhost | |
| User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 | |
| Next-Action: x | |
| Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryx8jO2oVc6SWP3Sad | |
| Content-Length: 459 | |
| ------WebKitFormBoundaryx8jO2oVc6SWP3Sad | |
| Content-Disposition: form-data; name="0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define BUFFER_SIZE (1024 * 1024) // 1 Mo par écriture | |
| void create_large_file(const char *filename, unsigned long size_mb) { | |
| FILE *file = fopen(filename, "wb"); | |
| if (!file) { | |
| perror("Erreur lors de la création du fichier"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/expect -f | |
| set force_conservative 0 ; | |
| if {$force_conservative} { | |
| set send_slow {1 .1} | |
| proc send {ignore arg} { | |
| sleep .1 | |
| exp_send -s -- $arg | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM bitnami/minideb:buster AS modperl | |
| # Install cpm to install cpanfile dependencies | |
| RUN set -x \ | |
| && install_packages \ | |
| apache2 | |
| # Run 'www-data' user as host user with id 1001 | |
| # You can override the `WWW_DATA_HOST_USER` argument when building the container to specify your own user | |
| ARG WWW_DATA_HOST_USER=1001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pid /tmp/nginx.pid; | |
| worker_processes 4; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| # MIME / Charset | |
| # include mime.types; | |
| default_type application/octet-stream; |