Skip to main content

https://www.movimento5stelle.it again | several vulnerabilities, system compromise

Old vulnerabilities and other informations.

The main website shares the same problems with http://rousseau.movimento5stelle.it.

NOTE/Disclaimer: if you are supposing to vote in a safe manner (It's less safe than the cheapest italian service provider with an old version of commoly used scripts, like wordpress or joomla, installed by your "cousin") I can tell you without problems that you are wrong and you've been tricked by your own leaders. I'm not responsible for what they are saying and doing ... you are.
The server mostly haven't been updated for years, except for just what they thought was worth updating.
Please, do not contact me for legal issues. I haven't saved/stored and I do not share any particular *confidential* information. I've nothing to do with any problem that you are facing on those websites.
No, I'm not "politically attacking" anybody. Those, that you are probably supposing, are political speculations from your respective leaders (the same goes for the websites and leaders of other political parties). I'm not involved in any political party.
Think that  I'm helping you to understand that your data is not safe at all.
You must point your finger to those that are managing your confidential informations (and possibly allowing to tamper your vote) without using the most basic good practices and attitude.
I'm not even talking about having the best technology, even the old one could be good as long as they are fixed/patched when/where needed.
I'm not a threat to the future political votes (I'm not tampering data), the party itself is falling in those, and several other, issues and they have been there for years (since 2009?).

Your vote for #parlamentarie in 17/01/2018 was totally insecure as the previous ones. I sent a long time ago, and then published, the informations before the votes but the security problems are still there.
I cannot show more informations than those that can be reached from the "web" (you can use a search engine, the flawed website and your brain to verify) since I got too much attention, even from newspapers, and it's not the purpose of this blog to be somewhat "famous".
Read and think whatever you like, understand, fix whatever you want, don't bother me with silly questions or childish offenses.


----
Local and remote exploitable problem
Perl eval injection vulnerability in the digest module (The payload can be sent via movable type - see below).
https://www.cvedetails.com/cve/CVE-2012-5195/


Movable Type 4* is vulnerable to specific problems.
In another CVE reports "unspecified vectors". A diff of the files between the MT versions leads to the specific problem.

I don't need to (and I can't - see disclaimer) show anything.
It works for sure, just rewrite old (perl) exploits (see the CVE) and add a few lines of extra code.
In around 1 hr of cut/paste/write/run you are root.
___
Some interesting paths

Smarty Demo (with errors since the templates_c is missing):
https://www.movimento5stelle.it/cgi-bin/mt-4/php/extlib/smarty/demo/index.php
http://archive.is/6hh07
It can be mis-used

https://www.movimento5stelle.it/cgi-bin/mt-4/mt-testbg.cgi


-ilblogdellestelle.it-
on the same server of beppegrillo.it shares the same problems and the same database.



*****
(no explanation is needed)
Users/authors:
alberto-callaioli
alberto-moscarda
alessandra-romozzi
alessandro-pirrone
alvise-maniero
chiacchieroni-alfredo
chiara-appendino
danilo-facecchia
emiliano-giancarlo-abbati
fabio-martina
fabio-tercovich
felice-marra
gianpiero-paladino
ivano-tarquini
luca-casmiri
luca-frangella
manlio-cuccaro
marco-fioschini
mariano-zodo
marilena-checchi
paola-indigeno
paolo-cicerone
paolo-tkalez
pasquale-roffini
sabrina-anselmo
salvatore-lisi
stefano-scardia
...


***
other interesting paths

https://www.movimento5stelle.it/cgi-bin/mt-4/tools/*
convert-db
find-junk
list-objects
mt-tmpl-preview
mt-tmpl-test
pl-viewer
plugin-config
rebuild-benchmark
rebuild-pages
remove-object
report-slow-request
run-periodic-tasks
sig-validate
upgrade

example: https://www.movimento5stelle.it/cgi-bin/mt-4/tools/report-slow-request


https://www.movimento5stelle.it/cgi-bin/mt-4/mt-testbg.cgi

#!/usr/bin/perl -w

# Movable Type (r) Open Source (C) 2001-2009 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: mt-testbg.cgi 3455 2009-02-23 02:29:31Z auno $

use strict;

local $| = 1;
print "Content-Type: text/html\n\n";
print "<html>\n<body>\n<pre>\n\n";

eval {
    local $SIG{__WARN__} = sub { print "**** WARNING: $_[0]\n" };

    my $pid = fork();
    if (defined $pid)
    {
        if ($pid) {
            print wait() > 0
                   ? "Background tasks are available\n"
                   : "Background tasks are not available\n";
        } else {
            sleep 1;
            exit(0);
        }
    } else { print "Background tasks are not available\n"; }
};
print "Got an error: $@" if $@;

print "\n\n</pre>\n</body>\n</html>";


mt-tb.cgi - trackback
https://www.movimento5stelle.it/cgi-bin/mt-4/mt-tb.cgi

#!/usr/bin/perl -w

# Movable Type (r) Open Source (C) 2001-2009 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: mt-tb.cgi 3455 2009-02-23 02:29:31Z auno $

use strict;
use lib $ENV{MT_HOME} ? "$ENV{MT_HOME}/lib" : 'lib';
#use MT::Bootstrap App => 'MT::App::Trackback';
require MT::Bootstrap; MT::Bootstrap->import(App => 'MT::App::Trackback');


spamlookup.pm
https://www.movimento5stelle.it/cgi-bin/mt-4/plugins/spamlookup/lib/spamlookup.pm
# Movable Type (r) Open Source (C) 2006-2009 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: spamlookup.pm 3455 2009-02-23 02:29:31Z auno $

# Original copyright (c) 2004-2006, Brad Choate and Tobias Hoellrich

package spamlookup;

use strict;
use MT::JunkFilter qw(ABSTAIN);

sub tborigin {
    my $plugin = shift;
    my ($obj) = @_;

    # only filter TrackBack pings...
    return (ABSTAIN) unless UNIVERSAL::isa($obj, 'MT::TBPing');

    my $domain = extract_domains($obj->source_url, 1);

    my $config = $plugin->get_config_hash('blog:' . $obj->blog_id); # config($plugin);
    my $pingip = $obj->ip;

    if (domain_or_ip_in_whitelist($domain, $pingip, $config->{whitelist})) {
        return (ABSTAIN);
    }
....

References:
original code sources: https://movabletype.org/downloads/archives/ http://www.majordojo.com/projects/

________________________
The store of movimento5stelle is located on different servers, probably managed  by "upcommerce". The server are managed far better than those of the m5s but not good as supposed.
The store is using magento (more than obvious) but it's not updated to the latest version and there are still some sec. fixes to be added. The good part is that they *hide* the administration panel but it's available via the customers' account.
The main problem is not in the store.m5s scripts but in the configuration of  the server.


52.174.21.194
hosted websites
magento.upcommerce.com
store.elitetartufi.com
store.movimento5stelle.it
shop.asiagocheese.it
www.neronailscosmetics.com
www.merchandisingplaza.com
...



_________________________
 

***
Fun fact:

The theme, with modifications, is almost the same since 2009
In the css we can even read it in the comments.

Archived page:http://archive.is/39WSe


In 2009: /*by Pier Antonio Romano @ Casaleggio Associati - 2009*/
and now: /* Casaleggio Associati - 2009 */ (2017)
http://www.beppegrillo.it/stylesheet_13.css

***


________________________
Updated 01/2018 - 09/2018
beppegrillo.it moved to a new website with different ip addresses (on cloudfront)

The mail  server is still the same and the accounts are mostly unchanged: 151.1.253.3 mail.beppegrillo.it | cslweb03.beppegrillo.it


Old ip addresses of the website (still configured on the servers):  151.1.253.20 151.1.253.2 www.beppegrillo.it


-Old domains-

cslfe01.beppegrillo.it
cslfe02.beppegrillo.it
cslfe03.beppegrillo.it
cslfe04.beppegrillo.it
cslfe08.beppegrillo.it
cslweb01.beppegrillo.it 151.1.253.1
cslweb02.beppegrillo.it 151.1.253.2
cslweb03.beppegrillo.it 151.1.253.3
cslweb04.beppegrillo.it 151.1.253.4
cslweb23.beppegrillo.it -  151.1.253.23
eventi5stelle.beppegrillo.it

notizie.beppegrillo.it
sistemaoperativom5s.beppegrillo.it
test.beppegrillo.it
www.beppegrillo.it
www2.beppegrillo.it
--
151.1.253.3
grillorama.beppegrillo.it  (beppegrillo.it - old shop)
archive: http://web.archive.org/web/20170707162545/http://grillorama.beppegrillo.it/catalog/
--

notizie2.beppegrillo.it - 87.117.241.35
It was used for the mailing list (spam - without optin) by using the lyris "mail marketing software" (as specified by accessing the web interface).
--


-Unaffiliated (dead) - not related to casaleggio-

www.cantu5stelle.it
www.erba5stelle.it
liberal5stelle.it
italia5stelle.org
erba5stelle.it
como5stelle.it
___________________________


-Still working-


(ITnet S.r.l. - css-grillo-1.it.net ip addresses)
___


151.1.253.1
piraticinquestelle.it
piraticinquestelle.com
piratia5stelle.it
movimentocinquestelle.com.
___


___
151.1.253.4
www.casaleggioassociati.it
www.casaleggio.it
casaleggio.it
cslweb04.casaleggio.it
___

151.1.253.20
www.blogdellestelle.it, ilblogdellestelle.com, blogdellestelle.it  (not anymore beppegrillo.com )
___

efdd-m5seuropa.com  151.1.253.29

___

Comments

Popular posts from this blog

Moodle 3.8.1+ - path leak via errors in several files

Moodle 3.8.1+ ----------------------------------------------- File: admin/mailout-debugger.php #!/usr/bin/php Notice : Disabled. in \admin\mailout-debugger.php on line 73 File: admin/settings/appearance.php Notice : Undefined variable: hassiteconfig in \admin\settings\appearance.php on line 10 Fatal error : Uncaught Error: Call to undefined function has_any_capability() in \admin\settings\appearance.php:10 Stack trace: #0 {main} thrown in \admin\settings\appearance.php on line 10 File: admin/settings/badges.php Notice : Undefined variable: hassiteconfig in \admin\settings\badges.php on line 30 Fatal error : Uncaught Error: Call to undefined function has_any_capability() in \admin\settings\badges.php:30 Stack trace: #0 {main} thrown in \admin\settings\badges.php on line 30 File: admin/settings/courses.php Notice : Undefined variable: hassiteconfig in \admin\settings\courses.php on line 32 Fatal error : Uncaught Error: Call to undefined function

2022 - Remove (the too many) Ads from Memu launcher

Simple method Download from pureapk "MEmu Launcher2" ex: MEmu Launcher2_v6.0.9_apkpure.com Install "System app remover" (root) remove from system apps the "memu launcher 2" import the "purified" MEmu Launcher2 apk with the Memu utility ("apk" on the right toolbar) Longer method Install "Export Apk" Export the memu launcher2  Install purify https://github.com/echo-devim/purify/raw/master/Purify.apk use purify with the exported memu launcher 2 Install "System app remover" (root) remove from system apps the "memu launcher 2" import the "purified" MEmu Launcher2 apk with the Memu utility ("apk" on the right toolbar)