Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5185 links 

page 66 / 260

Liste des liens

Reconnaissance faciale : pour un débat à la hauteur des enjeux | CNIL
2019-11-15 16:11 - permalink -

Cette technologie est de plus en plus présente dans le débat public aux niveaux national, européen et mondial. La reconnaissance faciale soulève en effet des questions inédites touchant à des choix de société. C’est pourquoi la CNIL avait appelé, en 2018, à un débat démocratique sur ce sujet, ainsi que plus largement sur les nouveaux usages de la vidéo. Elle souhaite aujourd’hui contribuer à ce débat, en présentant les éléments techniques, juridiques et éthiques qui doivent selon elle être pris en compte dans l’approche de cette question complexe.

cnil surveillance vidéos vidéosurveillance vie-privée
- https://www.cnil.fr/fr/reconnaissance-faciale-pour-un-debat-la-hauteur-des-enjeux
Affreux, sales et méchants | Reflets.info
2019-11-13 14:22 - permalink -

Va falloir revenir au bon vieux navigateur textuel...

tracker vie-privée web
- https://reflets.info/articles/affreux-sales-et-mechants
OpenVPN Admin
2019-11-13 11:56 - permalink -

Administrate its OpenVPN with a web interface (logs visualisations, users managing...) and a SQL database.

openvpn outils
- https://github.com/Chocobozzz/OpenVPN-Admin
Creating a traceroute program in PHP
2019-11-13 11:40 - permalink -

http://www.adayinthelifeof.nl/2010/07/30/creating-a-traceroute-program-in-php/


define ("SOL_IP", 0);
define ("IP_TTL", 2);    // On OSX, use '4' instead of '2'.

$dest_url = "www.google.com";   // Fill in your own URL here, or use $argv[1] to fetch from commandline.
$maximum_hops = 30;
$port = 33434;  // Standard port that traceroute programs use. Could be anything actually.

// Get IP from URL
$dest_addr = gethostbyname ($dest_url);
print "Tracerouting to destination: $dest_addr\n";

$ttl = 1;
while ($ttl < $maximum_hops) {
    // Create ICMP and UDP sockets
    $recv_socket = socket_create (AF_INET, SOCK_RAW, getprotobyname ('icmp'));
    $send_socket = socket_create (AF_INET, SOCK_DGRAM, getprotobyname ('udp'));

    // Set TTL to current lifetime
    socket_set_option ($send_socket, SOL_IP, IP_TTL, $ttl);

    // Bind receiving ICMP socket to default IP (no port needed since it's ICMP)
    socket_bind ($recv_socket, 0, 0);

    // Save the current time for roundtrip calculation
    $t1 = microtime (true);

    // Send a zero sized UDP packet towards the destination
    socket_sendto ($send_socket, "", 0, 0, $dest_addr, $port);

    // Wait for an event to occur on the socket or timeout after 5 seconds. This will take care of the
    // hanging when no data is received (packet is dropped silently for example)
    $r = array ($recv_socket);
    $w = $e = array ();
    socket_select ($r, $w, $e, 5, 0);

    // Nothing to read, which means a timeout has occurred.
    if (count ($r)) {
        // Receive data from socket (and fetch destination address from where this data was found)
        socket_recvfrom ($recv_socket, $buf, 512, 0, $recv_addr, $recv_port);

        // Calculate the roundtrip time
        $roundtrip_time = (microtime(true) - $t1) * 1000;

        // No decent address found, display a * instead
        if (empty ($recv_addr)) {
            $recv_addr = "*";
            $recv_name = "*";
        } else {
            // Otherwise, fetch the hostname for the address found
            $recv_name = gethostbyaddr ($recv_addr);
        }

        // Print statistics
        printf ("%3d   %-15s  %.3f ms  %s\n", $ttl, $recv_addr,  $roundtrip_time, $recv_name);
    } else {
        // A timeout has occurred, display a timeout
        printf ("%3d   (timeout)\n", $ttl);
    }

    // Close sockets
    socket_close ($recv_socket);
    socket_close ($send_socket);

    // Increase TTL so we can fetch the next hop
    $ttl++;

    // When we have hit our destination, stop the traceroute
    if ($recv_addr == $dest_addr) break;
}

You need to be root. This means it probably is not going to work when running it from a web-server, you have to run it from the command line:

jthijssen@tarabas:~/traceroute$ sudo php traceroute.php
Tracerouting to destination: 199.6.1.164
  1   192.168.1.1      0.004 ms  192.168.1.1
  2   *                0.005 ms  static.kpn.net
  3   (timeout)
  4   139.156.113.141  0.005 ms  nl-asd-dc2-ias-csg01-ge-3-2-0-kpn.net
  5   195.190.227.221  0.005 ms  asd2-rou-1022.nl.euroringen.net
  6   134.222.229.105  0.005 ms  asd2-rou-1001.NL.eurorings.net
  7   134.222.97.186   0.007 ms  kpn-1402.xe-0-0-0.jun1.galilei.network.bit.nl
  8   213.154.236.75   0.012 ms  213.154.236.75
  9   199.6.1.164      0.012 ms  pub3.kernel.org

This is a traceroute to www.kernel.org. I’ve removed the second hop (because that’s the IP at my place). The 3rd hop returned a timeout. Probably the station there did not return a ICMP packet back to use.

The above code can be found on github: https://github.com/jaytaph/traceroute

ip outils php
- https://stackoverflow.com/questions/12463819/php-script-to-traceroute
Shaft Inc. : Escalade dans la traque en ligne, le cas Eulerian
2019-11-12 15:57 - permalink -

LES BÂTARDS DE MERDE...

cookies internet levons-nous mouchards publicité vie-privée
- https://www.shaftinc.fr/escalade-traque-eulerian.html
Pure CSS Font
2019-11-12 14:7 - permalink -

A customizable, scalable font made entirely of css and html.

For private, SEO-hidden, CAPTCHA-friendly unselectable text. Deter plagiarism and spambots!

The theme is based on em units, so it scales in size like any other font. Its color will also be inherited according to its parents color attribute.

Give it a try at cyanharlow.github.io/PureCSS-Font

css font
- https://github.com/cyanharlow/PureCSS-Font
God sur Twitter : "Legally, everyone’s innocent until proven guilty.Actually, everyone’s innocent until they commit a crime." - Le Hollandais Volant
2019-11-8 10:17 - permalink -

Société de suspicion et de surveillance. Nous sommes tombés bien bas.

levons-nous politique société
- https://lehollandaisvolant.net/?mode=links&id=20191108063718
Intelligence artificielle : un tournant pour la radiothérapie ? - Onko+
2019-11-7 16:12 - permalink -

En gros, c'est quand même pas pour demain...

intelligence-artificielle? Médecine
- https://onko.fr/intelligence-artificielle-un-tournant-pour-la-radiotherapie/?from=newsletter
Salaire : êtes-vous riche ou pauvre ?
2019-11-7 12:52 - permalink -

Ça permet de relativiser un peu ou au contraire de voir l'inégalité de la société.

inégalités salaires société
- https://www.inegalites.fr/Salaire-etes-vous-riche-ou-pauvre
OnCOGITE | Les Ateliers qui reconnectent les Neurones !
2019-11-6 12:31 - permalink -

Bien que le fond de ce site soit plutôt bien, la forme est à chier : un script tout moisi "empêche" la consultation du code html.
Ce script, plus quelques lignes de css, le voici :

<script id="wpcp_disable_selection" type="text/javascript">
//<![CDATA[
var image_save_msg='You Can Not Save images!';
    var no_menu_msg='Context Menu disabled!';
    var smessage = "Content is protected !!";

function disableEnterKey(e)
{
    if (e.ctrlKey){
     var key;
     if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox (97)
    //if (key != 17) alert(key);
     if (key == 97 || key == 65 || key == 67 || key == 99 || key == 88 || key == 120 || key == 26 || key == 85  || key == 86 || key == 83 || key == 43)
     {
          show_wpcp_message('You are not allowed to copy content or view source');
          return false;
     }else
        return true;
     }
}

function disable_copy(e)
{   
    var elemtype = e.target.nodeName;
    var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
    elemtype = elemtype.toUpperCase();
    var checker_IMG = '';
    if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail >= 2) {show_wpcp_message(alertMsg_IMG);return false;}
    if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
    {
        if (smessage !== "" && e.detail == 2)
            show_wpcp_message(smessage);

        if (isSafari)
            return true;
        else
            return false;
    }   
}
function disable_copy_ie()
{
    var elemtype = window.event.srcElement.nodeName;
    elemtype = elemtype.toUpperCase();
    if (elemtype == "IMG") {show_wpcp_message(alertMsg_IMG);return false;}
    if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
    {
        //alert(navigator.userAgent.indexOf('MSIE'));
            //if (smessage !== "") show_wpcp_message(smessage);
        return false;
    }
}   
function reEnable()
{
    return true;
}
document.onkeydown = disableEnterKey;
document.onselectstart = disable_copy_ie;
if(navigator.userAgent.indexOf('MSIE')==-1)
{
    document.onmousedown = disable_copy;
    document.onclick = reEnable;
}
function disableSelection(target)
{
    //For IE This code will work
    if (typeof target.onselectstart!="undefined")
    target.onselectstart = disable_copy_ie;

    //For Firefox This code will work
    else if (typeof target.style.MozUserSelect!="undefined")
    {target.style.MozUserSelect="none";}

    //All other  (ie: Opera) This code will work
    else
    target.onmousedown=function(){return false}
    target.style.cursor = "default";
}
//Calling the JS function directly just after body load
window.onload = function(){disableSelection(document.body);};
//]]>
</script>
    <script id="wpcp_disable_Right_Click" type="text/javascript">
    //<![CDATA[
    document.ondragstart = function() { return false;}
    /* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    Disable context menu on images by GreenLava Version 1.0
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
        function nocontext(e) {
           return false;
        }
        document.oncontextmenu = nocontext;
    //]]>
    </script>
<style>
.unselectable
{
-moz-user-select:none;
-webkit-user-select:none;
cursor: default;
}
html
{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
</style>
<script id="wpcp_css_disable_selection" type="text/javascript">
var e = document.getElementsByTagName('body')[0];
if(e)
{
    e.setAttribute('unselectable',on);
}
</script>

Et l'agence web le place sur tous les sites qu'elle conçoit.
C'est totalement inefficace (car facilement contournable) et je ne vois pas l'intérêt du truc. Ils facturent cette merde combien à leurs clients ?

css développement html javascript tout-moisi
- https://oncogite.com/#ateliers
Les 10 paliers de libération d’un téléphone Android - LinuxFr.org
2019-11-5 12:31 - permalink -
ordiphones vie-privée
- https://linuxfr.org/news/les-10-paliers-de-liberation-d-un-telephone-android#toc-palier4---supprimer-ses-premi%C3%A8res-applications-privatrices
MistServer developer portal
2019-11-4 14:49 - permalink -

Welcome to the MistServer developer portal! MistServer is a full-featured, next-generation streaming media toolkit for OTT (internet streaming), designed to be ideal for developers and system integrators. Below you'll find direct links to the most often searched for information and pages.

serveurs
- https://mistserver.org/
Alerte rouge sur les données de santé de tous les Français
2019-11-4 14:28 - permalink -

HealthDataHub français euh pardon américain avec des données françaises dedans, gérées par Micro$oft.

data Médecine vie-privée
- https://www.medshake.net/blog/a408/alerte-rouge-sur-les-donnees-sante-tous-les-francais/
Collecte de masse, algorithme auto-apprenant... quand le fisc s'échine
2019-11-4 14:17 - permalink -

Tout va bien...

politique
- https://www.nextinpact.com/news/108359-collecte-masse-algorithme-auto-apprenant-quand-fisc-sechine.htm
Les symboles politiques : des cibles
2019-11-4 14:15 - permalink -

C'est bizarre les points de vue : j'aurais plutôt retenu celle-ci (parmi tant d'autres) https://photos.lci.fr/images/1024/576/980937-000_g86mo-19ee59-0@1x.jpeg

désinformation levons-nous société
- https://www.franceculture.fr/emissions/concordance-des-temps/les-symboles-nationaux-des-cibles
Robots tueurs autonomes : malgré une mise en garde de l'ONU, leur développement continue
2019-11-4 11:42 - permalink -

Le scénariste de Terminator ne se serait trompé que de quelques années...

armée robot société
- https://information.tv5monde.com/info/robots-tueurs-autonomes-malgre-une-mise-en-garde-de-l-onu-leur-developpement-continue-243991
Opinion | The Rich Really Do Pay Lower Taxes Than You - The New York Times
2019-11-4 11:28 - permalink -

C'est pourtant pas un journal de gauche, il me semble...

société
- https://www.nytimes.com/interactive/2019/10/06/opinion/income-tax-rate-wealthy.html
Les girafes s'éteignent dans la plus grande indifférence
2019-11-4 11:27 - permalink -

À quand l'homme ?

extinction nature
- https://www.nationalgeographic.fr/animaux/2019/10/les-girafes-seteignent-dans-la-plus-grande-indifference
(2) «Les abeilles sont une alternative aux intrants chimiques» - Libération
2019-11-4 11:25 - permalink -
écologie
- https://www.liberation.fr/france/2019/10/22/les-abeilles-sont-une-alternative-aux-intrants-chimiques_1757776
Macron sommé de réagir sur une note très embarrassante du ministère de la Justice | Le Huffington Post
2019-11-4 11:21 - permalink -

De mieux en mieux...

arnaque mensonge politique société élections
- https://www.huffingtonpost.fr/entry/macron-somme-de-reagir-sur-une-note-tres-embarrassante-pour-le-ministere-de-la-justice_fr_5db17205e4b01ca2a8583d31
page 66 / 260


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2