4428 links
38 private links
  • Strak.ch | Actu et liens en vrac
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 67 / 220
Newer►
  • Protection de données: le suisse Veeam lève un demi-milliard de dollars - Le Temps

    Ça marche pour Veeam.

    January 18, 2019 at 12:53:09 AM GMT+1 - permalink -
    QRCode
    - https://www.letemps.ch/economie/protection-donnees-suisse-veeam-leve-un-demimilliard-dollars
    Veeam Economie
  • The curious case of the Raspberry Pi in the network closet

    Un article-enquête suite à la découverte d'un Raspberry planqué illégalement dans un rack ! :D

    via Sebsauvage

    January 16, 2019 at 6:25:11 PM GMT+1 * - permalink -
    QRCode
    - https://blog.haschek.at/2018/the-curious-case-of-the-RasPi-in-our-network.html
    RaspberryPi Enquête
  • Mauvaise nouvelle : Twitter va fermer ses portes – Framablog

    Fiction ? Pas forcément, le cas se reproduit régulièrement, seul change le nom de l'entité décédée.

    January 16, 2019 at 6:13:23 PM GMT+1 - permalink -
    QRCode
    - https://framablog.org/2019/01/16/mauvaise-nouvelle-twitter-va-fermer-ses-portes/
    Twitter Fiction Histoire
  • What's my OS?

    Un site pour déterminer le système d'exploitation utilisé. Ne fonctionne pas à tous les coups.

    January 15, 2019 at 10:01:47 PM GMT+1 - permalink -
    QRCode
    - http://whatsmyos.com/
    OS Web Outils
  • Windows Server - Serveur d'impression et isolation des pilotes | Système | IT-Connect

    Je ne connaissais pas ce mode, "isolé" pour les pilotes d'impression, intéressant.

    January 15, 2019 at 9:55:33 PM GMT+1 - permalink -
    QRCode
    - https://www.it-connect.fr/windows-server-serveur-dimpression-et-isolation-des-pilotes/
    WindowsServer Impression
  • GoDaddy is sneakily injecting JavaScript into your website and how to stop it | Igor Kromin

    Godaddy injecte du JavaScript par défaut dans les sites qu'il héberge.

    via https://sebsauvage.net/links/?OsQhog

    January 15, 2019 at 9:53:13 PM GMT+1 - permalink -
    QRCode
    - https://www.igorkromin.net/index.php/2019/01/13/godaddy-is-sneakily-injecting-javascript-into-your-website-and-how-to-stop-it/
    Hébergement ViePrivée Injection Javascript
  • WoT: ProMod

    Un mod pour WoT (World Of Tanks).

    January 13, 2019 at 6:45:43 PM GMT+1 - permalink -
    QRCode
    - https://www.oldskool.vip/en/about/
    Mod WoT
  • Dozens of .gov HTTPS certs expire, webpages offline, FBI on ice, IT security slows... Yup, it's day 20 of Trump's govt shutdown • The Register

    Plein de sites web américains sont inaccessibles à cause du shutdown: plus personne ne renouvelle les certificats SSL...

    January 11, 2019 at 11:02:52 PM GMT+1 - permalink -
    QRCode
    - https://www.theregister.co.uk/2019/01/11/government_shutdown_security/
    USA WTF
  • Error, Success, Warning, and Info Messages with CSS

    Pour insérer de jolis message box en CSS, cool.

    January 11, 2019 at 2:27:02 PM GMT+1 - permalink -
    QRCode
    - https://isabelcastillo.com/error-info-messages-css
    CSS
  • Agent Ransack: Free File Searching Utility

    "Agent Ransack is a free software program for finding files on your PC or network drives.
    It is a ‘lite’ version of FileLocator Pro and is a free for both personal and commercial use."

    January 10, 2019 at 2:25:51 PM GMT+1 - permalink -
    QRCode
    - https://www.mythicsoft.com/agentransack/
    Outils SearchEngine Windows
  • How To Set up OpenVPN Server In 5 Minutes on Ubuntu Linux - nixCraft

    Alors que je m'énervais avec OpenVPN, je suis tombé sur ce script de génie qui m'a effectivement permis de me connecter en moins de 5 minutes. Une pépite !

    La commande à retenir:

    wget https://git.io/vpn -O openvpn-install.sh 
    January 10, 2019 at 12:29:16 PM GMT+1 - permalink -
    QRCode
    - https://www.cyberciti.biz/faq/howto-setup-openvpn-server-on-ubuntu-linux-14-04-or-16-04-lts/
    OpenVPN Debian
  • [MODULE] MagiskHide Props Config - SafetyNet, improved hiding, prop edits, and more

    Module complémentaire à MagiskHide pour passer le scan Safetynet.

    January 9, 2019 at 11:21:46 PM GMT+1 - permalink -
    QRCode
    - https://forum.xda-developers.com/apps/magisk/module-magiskhide-props-config-t3789228
    Android Root
  • 16 indices qui laissent penser que votre WordPress court le risque d’être hacké

    De bons rappels concernant la sécurité de WordPress.

    January 8, 2019 at 11:25:29 PM GMT+1 - permalink -
    QRCode
    - https://wpformation.com/wordpress-risque-hacke/
    WordPress Sécurité Hacking ViePrivée
  • DocFetcher - Fast Document Search

    "DocFetcher est une application Open Source pour la recherche de contenu local sur ordinateur: elle vous permet de faire des recherches dans le contenu des fichiers sur votre ordinateur."
    Pas testé, juste indexé.

    Edit: quelqu'un l'a testé, ce n'a pas été concluant pour le besoin en question.
    Voir plutôt: https://liens.strak.ch/?ZxcSKQ

    January 8, 2019 at 4:26:29 PM GMT+1 * - permalink -
    QRCode
    - http://docfetcher.sourceforge.net/fr/index.html
    Windows Outils SearchEngine
  • Managing IIS Log File Storage | Microsoft Docs

    Un script vbs pour nettoyer les logs IIS.

    sLogFolder = "c:\inetpub\logs\LogFiles"
    iMaxAge = 30   'in days
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    set colFolder = objFSO.GetFolder(sLogFolder)
    For Each colSubfolder in colFolder.SubFolders
            Set objFolder = objFSO.GetFolder(colSubfolder.Path)
            Set colFiles = objFolder.Files
            For Each objFile in colFiles
                    iFileAge = now-objFile.DateCreated
                    if iFileAge > (iMaxAge+1)  then
                            objFSO.deletefile objFile, True
                    end if
            Next
    Next
    January 8, 2019 at 8:47:27 AM GMT+1 * - permalink -
    QRCode
    - https://docs.microsoft.com/en-us/iis/manage/provisioning-and-managing-iis/managing-iis-log-file-storage
    Windows IIS Script
  • Qnap: accélérer les téléchargements

    Un petit tuto du dimanche, pour télécharger comme jamais.

    January 6, 2019 at 4:23:35 PM GMT+1 - permalink -
    QRCode
    - https://strak.ch/qnap-accelerer-les-telechargements/
    Qnap Tutos Download
  • Exchange 2016 : Installation et configuration – RDR IT

    Une bonne synthèse de l'installation d'Exchange 2016. Et un blog technique orienté Windows de plus dans mes flux !

    January 5, 2019 at 3:37:39 PM GMT+1 - permalink -
    QRCode
    - https://rdr-it.com/exchange2016-installation-configuration/
    Windows Exchange
  • Piratage : La plus grande fuite de données de l'histoire allemande | UnderNews

    À propos du "Bundestag Leaks".

    January 5, 2019 at 3:32:02 PM GMT+1 - permalink -
    QRCode
    - https://www.undernews.fr/hacking-hacktivisme/piratage-la-plus-grande-fuite-de-donnees-de-lhistoire-allemande.html
    Hack Leak Piratage
  • Picole Pixel 2019 | Gally blog

    Excellent, un "calendrier de boisson", je sais pas comment appeler ça ahah ! ^^"

    January 3, 2019 at 5:57:13 PM GMT+1 - permalink -
    QRCode
    - http://gallybox.com/blog/2019/picole-pixel-2019/
    Fun BD Alcool
  • Blog Stéphane Bortzmeyer: RFC 8499: DNS Terminology

    Un très gros récapitulatif de tout ce qui touche au DNS.

    January 3, 2019 at 5:55:04 PM GMT+1 - permalink -
    QRCode
    - https://www.bortzmeyer.org/8499.html
    DNS RFC
Links per page: 20 50 100
◄Older
page 67 / 220
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation