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.

5166 links 

page 4 / 5

Liste des liens

94 results tagged web x
WebAuthn : le futur du web sans mot de passe se rapproche | Journal du Geek
2018-07-25 17:50 - permalink -

Autant le dongle USB peut être sécurisé, autant les empreintes ou la reconnaissance faciale peuvent être assez facilement falsifiées.

Le problème est comment fera-t-on, lorsque l'on perdra sa clef ou qu'elle tombera en panne, pour s'authentifier et prouver que c'est bien nous qui souhaitons nous connecter ?

Quand c'est dans une entreprise, c'est assez facile : on va voir le service informatique (des gens que l'on peut voir physiquement et qui ont la possibilité de nous identifier), et ils peuvent nous fournir une nouvelle clé et désactiver l'ancienne.

Mais pour un site web tiers, quels seront les autres éléments à fournir pour nous identifier formellement ? Est-ce qu'une navigation "anonyme" sera toujours possible ?

mot-de-passe sécurité w3c web webauthn
- https://www.journaldugeek.com/2018/04/12/webauthn-futur-web-de-passe-se-rapproche/
Introduction à WAI ARIA (traduction) · Les intégristes
2018-05-29 13:44 - permalink -
accessibilité ARIA html web
- https://www.lesintegristes.net/2008/12/09/introduction-a-wai-aria-traduction/
Décoder un script PHP malveillant, comment s’en protéger – Le blog de Seboss666
2018-05-16 15:6 - permalink -
php serveurs sécurité web
- https://blog.seboss666.info/2018/05/decoder-un-script-php-malveillant-comment-sen-proteger/
Cure53 – Fine penetration tests for fine websites
2018-03-21 15:9 - permalink -
application css html svg sécurité web
- https://cure53.de/
Official Home Page for ZendTo - Web-Based File Transfer
2018-02-21 18:33 - permalink -

Pour transférer de gros fichiers.
Via le barbu digressif

fichiers Linux transfert web
- http://www.zend.to/index.php
Cours ASRALL — Serveurs web
2017-12-13 10:36 - permalink -

Cours de Luc Didry (Framasky).

serveurs tutoriels web
- https://luc.frama.io/cours-asrall/serveurs_web/index.html
Ace - The High Performance Code Editor for the Web
2017-07-24 18:4 - permalink -

Un éditeur de code en ligne. Fonctionne plutôt pas mal.
Le wiki est ici : https://github.com/ajaxorg/ace/wiki
Et la version packagée ici : https://github.com/ajaxorg/ace-builds/

editeur en-ligne outils web
- https://ace.c9.io/
How to defend your website with ZIP bombs
2017-07-7 16:55 - permalink -

If you have ever hosted a website or even administrated a server you'll be very well aware of bad people trying bad things with your stuff.

When I first hosted my own little linux box with SSH access at age 13 I read through the logs daily and report the IPs (mostly from China and Russia) who tried to connect to my sweet little box (which was actually an old ThinkPad T21 with a broken display running under my bed) to their ISPs.

Actually if you have a linux server with SSH exposed you can see how many connection attempts are made every day:

    grep 'authentication failures' /var/log/auth.log

Hundreds of failed login attempts even though this server has disabled password authentication and runs on a non-standard port

Wordpress has doomed us all

Ok to be honest, web vulnerability scanners have existed before Wordpress but since WP is so widely deployed most web vuln scanners include scans for some misconfigured wp-admin folders or unpatched plugins.

So if a small, new hacking group wants to gain some hot cred they'll download one of these scanner things and start testing against many websites in hopes of gaining access to a site and defacing it.

Sample of a log file during a scan using the tool Nikto

This is why all server or website admins have to deal with gigabytes of logs full with scanning attempts. So I was wondering..

Is there a way to strike back?

After going through some potential implementations with IDS or Fail2ban I remembered the old ZIP bombs from the old days.

WTH is a ZIP bomb?

So it turns out ZIP compression is really good with repetitive data so if you have a really huge text file which consists of repetitive data like all zeroes, it will compress it really good. Like REALLY good.

As 42.zip shows us it can compress a 4.5 peta byte (4.500.000 giga bytes) file down to 42 kilo bytes. When you try to actually look at the content (extract or decompress it) then you'll most likely run out of disk space or RAM.

How can I ZIP bomb a vuln scanner?

Sadly, web browsers don't understand ZIP, but they do understand GZIP.

So firstly we'll have to create the 10 giga byte GZIP file filled with zeroes. We could make multiple compressions but let's keep it simple for now.

Creating the bomb and checking its size

    dd if=/dev/zero bs=1M count=10240 | gzip > 10G.gzip

And for checking file size

    du -sh 10G.zip

As you can see it's 10 MB large. We could do better but good enough for now.

Now that we have created this thing, let's set up a PHP script that will deliver it to a client.

    <?php
    //prepare the client to recieve GZIP data. This will not be suspicious
    //since most web servers use GZIP by default
   header("Content-Encoding: gzip");
   header("Content-Length: ".filesize('10G.gzip'));
   //Turn off output buffering
   if (ob_get_level()) ob_end_clean();
   //send the gzipped file to the client
   readfile('10G.gzip');

That's it!

So we could use this as a simple defense like this:

    <?php
    $agent = filter_input(INPUT_SERVER, 'HTTP_USER_AGENT');

    //check for nikto, sql map or "bad" subfolders which only exist on wordpress
    if (strpos($agent, 'nikto') !== false || strpos($agent, 'sqlmap') !== false || startswith($url,'wp-') || startswith($url,'wordpress') || startswith($url,'wp/'))
    {
          sendBomb();
          exit();
    }

    function sendBomb(){
            //prepare the client to recieve GZIP data. This will not be suspicious
            //since most web servers use GZIP by default
            header("Content-Encoding: gzip");
            header("Content-Length: ".filesize('10G.gzip'));
            //Turn off output buffering
            if (ob_get_level()) ob_end_clean();
            //send the gzipped file to the client
            readfile('10G.gzip');
    }

    function startsWith($a, $b) { 
        return strpos($a, $b) === 0;
   }

This script obviously is not - as we say in Austria - the yellow of the egg, but it can defend from script kiddies I mentioned earlier who have no idea that all these tools have parameters to change the user agent.

Sooo. What happens when the script is called?

Client Result
IE 11 Memory rises, IE crashes
Chrome Memory rises, error shown
Edge Memory rises, then dripps and loads forever
Nikto Seems to scan fine but no output is reported
SQLmap High memory usage until crash
Safari Hight memory usage, then crashes and reloads, then memory rises again, etc..
Chrome (Android) Memory rises, error shown

(if you have tested it with other devices/browsers/scripts, please let me know and I'll add it here)

bombe spam sécurité web
- https://blog.haschek.at/post/f2fda
Phishing with Unicode Domains - Xudong Zheng
2017-04-19 13:2 - permalink -

Firefox users can limit their exposure to this bug by going to about:config and setting network.IDN_show_punycode to true.

Via Timo

phishing sécurité web
- https://www.xudongz.com/blog/2017/idn-phishing/
Certified Malice – text/plain
2017-02-21 17:18 - permalink -

Via Timo.

Vérifiez TOUJOURS l'url du site sur lequel vous vous connectez. TOUJOURS. Même si le cadenas est vert...

internet sécurité web
- https://textslashplain.com/2017/01/16/certified-malice/
Héberger son serveur avec OpenBSD
2016-12-14 23:1 - permalink -

À lire

autohébergement mail serveurs tutoriels web
- https://yeuxdelibad.net/ah/#toc60
Tutoriels | MDN
2016-12-14 10:27 - permalink -

Une série de tutoriels sur les technologies du web : html, css, javascript

css html javascript tutoriels web
- https://developer.mozilla.org/fr/docs/Web/Tutoriels
Here’s a secret: ɢoogle.com is not google.com – Analytics Edge - Le Hollandais Volant
2016-11-23 16:21 - permalink -

Une faille de l’utilisation possible de l'Unicode dans les noms de domaine.
Note pour plus tard : vérifier à deux fois les urls des liens sur lesquels on clique !!

failles sécurité web
- http://lehollandaisvolant.net/?mode=links&id=20161122173444
Petit guide des polices et de la typographie
2016-08-14 13:22 - permalink -
tutoriels web
- http://coreight.com/content/guide-polices-typographie
Web beacon - Wikipedia, the free encyclopedia
2016-07-22 14:5 - permalink -

Une recette de cuisine à la sauce codeur...

cookies gif tracker web
- https://en.wikipedia.org/wiki/Web_beacon
Comment connaître l'adresse IP de quelqu'un, caché derrière un VPN ?
2016-07-9 14:35 - permalink -
vpn web
- https://www.jesaisquivousetes.com/faille-securite-vpn-windows-stun/
Using Service Workers - Web APIs | MDN
2016-07-9 14:25 - permalink -
offline web workers
- https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers
Photon
2015-12-3 23:42 - permalink -

Créer des applications de bureau à l'aide des technologies du web (html, css, js)

application desktop developpement web
- http://photonkit.com/
Random Useful Websites
2015-08-21 15:36 - permalink -

"C'est horrible pour la productivité ce genre de site !" : c'est clair ^_^

blog outils sites web
- http://www.randomusefulwebsites.com/
The Great Suspender
2015-07-21 15:57 - permalink -

J'en connais une installée par défaut sur toutes les machines : la corbeille.

navigateur web
- https://chrome.google.com/webstore/detail/the-great-suspender/klbibkeccnjlkjkiokjodocebajanakg
page 4 / 5


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