Only search in httpdocs
This commit is contained in:
parent
bc3cd2503e
commit
8db17b965b
20
stats-cms.sh
20
stats-cms.sh
|
|
@ -1,13 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Plus besoin de ce script → https://octoforge.fr/octopuce/cmsscanner <3
|
# Plus besoin de ce script → https://octoforge.fr/octopuce/cmsscanner <3
|
||||||
# Compte le nombre de fichiers spécifiques à divers CMS pour établir grosso-modo le nombre de CMS hébergés
|
# Compte le nombre de fichiers spécifiques à divers CMS pour établir grosso-modo le nombre de CMS hébergés
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name wp-config.php | wc -l | sed 's/.*/Wordpress : &/' > stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name wp-config.php | wc -l | sed 's/.*/Wordpress : &/' > stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name spip.png | wc -l | sed 's/.*/SPIP : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name spip.png | wc -l | sed 's/.*/SPIP : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name association.sqlite | wc -l | sed 's/.*/Garradin : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name association.sqlite | wc -l | sed 's/.*/Garradin : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name joomla.php | wc -l | sed 's/.*/Joomla : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name joomla.php | wc -l | sed 's/.*/Joomla : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name drupal | wc -l | sed 's/.*/Drupal : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name drupal | wc -l | sed 's/.*/Drupal : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name popuphelp.php | wc -l | sed 's/.*/Piwigo : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name popuphelp.php | wc -l | sed 's/.*/Piwigo : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name occ | wc -l | sed 's/.*/Nextcloud : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name occ | wc -l | sed 's/.*/Nextcloud : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name now.json | wc -l | sed 's/.*/Guppy : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name now.json | wc -l | sed 's/.*/Guppy : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name renfilesantispam.inc | wc -l | sed 's/.*/Grav : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name renfilesantispam.inc | wc -l | sed 's/.*/Grav : &/' >> stats-cms.txt
|
||||||
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name doku.php | wc -l | sed 's/.*/Dokuwiki : &/' >> stats-cms.txt
|
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -path '*/httpdocs/*' -name doku.php | wc -l | sed 's/.*/Dokuwiki : &/' >> stats-cms.txt
|
||||||
Loading…
Reference in New Issue