• blog.gregoweb.ovh
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 12
234 results for tags admin x
  • Why Self-host? | Roman Zipp
    Fri Oct 10 03:32:03 2025 - permalink -
    - https://romanzipp.com/blog/why-a-homelab-why-self-host
    admin auto-hebergement host outils outils-web
  • Comment tester une redirection et comprendre les différents types de redirections | Sébastien LETT
    Wed Sep 24 04:37:54 2025 - permalink -
    - https://www.sebastienlett.com/tester-redirection-et-types-de-redirections/
    admin dev-web redirection seo
  • Vérifiez que votre domaine est bien redirigé
    Wed Sep 24 04:37:09 2025 - permalink -
    - https://soumettre.fr/toolbox/check-domain-redirects
    admin outils-web
  • Beszel | Simple, lightweight server monitoring
    Tue Sep 16 07:37:24 2025 - permalink -
    - https://www.beszel.dev/
    admin monitoring outils outils-web
  • DDoS Botnet Threat Feed for service providers · Cloudflare DDoS Protection docs
    Thu Sep 4 04:51:23 2025 - permalink -
    - https://developers.cloudflare.com/ddos-protection/botnet-threat-feed/#get-day-report
    admin ip security
  • Historical yearly trends in the usage statistics of server-side programming languages for websites, September 2025
    Thu Sep 4 03:54:28 2025 - permalink -
    - https://w3techs.com/technologies/history_overview/programming_language/ms/y
    admin bench dev-web host
  • Mon infrastructure pour 2025, des news diverses et mon abandon de Proxmox
    Tue Sep 2 07:49:56 2025 - permalink -
    - https://www.abyssproject.net/2025/08/mon-infrastructure-pour-2025-des-news-diverses-et-mon-abandon-de-proxmox/
    admin auto-hebergement host proxmox
  • Note : blocage d’IP - Le Hollandais Volant
    Tue Sep 2 02:06:10 2025 - permalink -
    - https://lehollandaisvolant.net/?mode=links&id=20210127124328
    admin ip security
  • Réduire le trafic réseau sous Linux [Wiki de sebsauvage.net]
    Mon Sep 1 04:43:26 2025 - permalink -
    - https://sebsauvage.net/wiki/doku.php?id=reduire
    admin linux
  • Gagner de l'argent en purgeant /var/lib/mysql - GuiGui's Show
    Mon Aug 11 04:57:42 2025 - permalink -
    - https://shaarli.guiguishow.info/?GzvgQQ
    admin backup BDD bdd mysql sql sqlite
  • GitHub - imthenachoman/How-To-Secure-A-Linux-Server: An evolving how-to guide for securing a Linux server.
    Mon Aug 4 05:04:40 2025 - permalink -
    - https://github.com/imthenachoman/How-To-Secure-A-Linux-Server
    admin debian linux security tuto
  • Partitionner disque avec Diskpart
    🧨 Étapes pour supprimer les partitions protégées avec Diskpart

    1. **Ouvre l’invite de commande en mode administrateur** :
      - Touche Windows > tape `cmd` > clic droit > *Exécuter en tant qu’administrateur*.

    2. **Lance Diskpart** :
      ```bash
      diskpart
      ```

    3. **Liste les disques** :
      ```bash
      list disk
      ```
      - Identifie ton disque externe (par sa taille, probablement `931 GB`).

    4. **Sélectionne le disque** :
      ```bash
      select disk X
      ```
      - Remplace `X` par le numéro de ton disque externe.

    5. **Liste les partitions** :
      ```bash
      list partition
      ```

    6. **Supprime chaque partition** :
      ```bash
      select partition Y
      delete partition override
      ```
      - Remplace `Y` par le numéro de chaque partition (EFI, OEM, etc.).
      - L’option `override` permet de forcer la suppression.

    7. **Crée une nouvelle partition unique** :
      ```bash
      create partition primary
      format fs=exfat quick
      assign
      ```
    Sat Aug 2 13:45:09 2025 - permalink -
    - ?tn5rQQ
    admin dique partition windows
  • My Ultimate Self-hosting Setup
    Mon Jul 21 09:04:35 2025 - permalink -
    - https://codecaptured.com/blog/my-ultimate-self-hosting-setup/
    admin auto-hebergement host
  • ProxyAuth | Documentation
    Thu Jul 3 04:18:04 2025 - permalink -
    - https://proxyauth.app/
    admin auth auto-hebergement dev-web sso
  • OWASP Foundation, the Open Source Foundation for Application Security | OWASP Foundation
    Wed Jul 2 05:48:29 2025 - permalink -
    - https://owasp.org/
    admin dev-web security
  • Mon infra en 2021 - blog.lrdf.fr
    Wed Jun 18 06:39:27 2025 - permalink -
    - https://blog.lrdf.fr/article16/mon-infra-en-2021
    admin auto-hebergement host
  • La boîte à outils ultime pour dompter Windows 11 | PC - Mac - Linux | Le site de Korben
    Wed Jun 4 12:43:17 2025 - permalink -
    - https://korben.info/boite-a-outils-windows-11.html
    admin outils outils-web windows
  • GitHub - fosrl/pangolin: Tunneled Mesh Reverse Proxy Server with Identity and Access Control and Dashboard UI - Liens en vrac de sebsauvage
    Mon Jun 2 08:11:27 2025 - permalink -
    - https://sebsauvage.net/links/?i0pG_g
    admin proxy security vpn
  • Debian : Configuration complète d'unattended-upgrades pour une sécurité sans effort - slash-root.fr
    Thu May 15 11:10:42 2025 - permalink -
    - https://slash-root.fr/debian-configuration-complete-dunattended-upgrades-pour-une-securite-sans-effort/
    admin debian host linux security
  • I use Zip Bombs to Protect my Server
    dd if=/dev/zero bs=1G count=10 | gzip -c > 10GB.gz

    Here is what the command does:

       dd: The dd command is used to copy or convert data.
       if: Input file, specifies /dev/zero a special file that produces an infinite stream of zero bytes.
       bs: block size, sets the block size to 1 gigabyte (1G), meaning dd will read and write data in chunks of 1 GB at a time.
       count=10: This tells dd to process 10 blocks, each 1 GB in size. So, this will generate 10 GB of zeroed data.

    We then pass the output of the command to gzip which will compress the output into the file 10GB.gz. The resulting file is 10MB in this case.
    Wed Apr 30 07:15:39 2025 - permalink -
    - https://idiallo.com/blog/zipbomb-protection
    admin anubis compression security zip
Links per page: 20 50 100
◄Older
page 1 / 12