Check out http://www.yo-yoma.com/ Does anybody know how to search for sites created with Drupal? I found this one by searching for the phrase "Enter the password that accompanies your username."

Comments

vm’s picture

yes, it uses drupal. Many sony artists sites are built with drupal.

view the source code search drupal.js

phersotty’s picture

Thanks for the tips! You might have already known, but I just figured out that you can search for drupal.js at google.com/codesearch/ and discover other sites that are powered by drupal.

http://www.google.com/codesearch?hl=en&start=10&sa=N&q=drupal.js

zahor’s picture

Well subtle hints give this site away...like the fact that in the source you see it's loading drupal js and module css files like say: /misc/drupal.js, /sites/all/modules/contrib/panels/js/panels.js. This and not so obvious stuff like the user/password, user/login, user/register (and corresponding code that's consistent with drupal forms) help also.

mm167’s picture

yes. yo-yoma.com is a Drupal site.

I have a small tool that can check if a site is a Drupal site. I will put it on my site as an open service if you guys are interested.

noussh’s picture

phersotty’s picture

noussh... cool site! i put yo-yoma.com in there and came back yes!

contorra’s picture

how fast does the verdict arrive? :)

Haarek’s picture

I use the Firefox addon 'Backend Software Information' -- https://addons.mozilla.org/en-US/firefox/addon/10493 to check what backend the website are running. For a list of what backends the latest release are able to detect see http://www.backendinfo.com/backends-new/

dhana_space1’s picture

thanks for sharing this add-on.

---

contorra’s picture

anohter humble way to tell it:
check /user and /login pages :)

vm’s picture

the above only works if those paths aren't aliased

jdwalling’s picture

I use a combination of these methods, none are infallible:
1) examine Page source with browser and look for Drupal paths or files: e.g. /sites/all/modules, drupal.js, etc.
2) Wappalyzer with FireFox3 - https://addons.mozilla.org/en-US/firefox/addon/10229
-- (detects these apps http://www.wappalyzer.com/apps/ )
3) execute local shell script:

ubuntu:~$ cat is-drupal
#!/usr/bin/env bash

wget -S $1 2>&1 | grep -q -m 1 "Expires: Sun, 19 Nov 1978 05:00:00 GMT" \
&& echo "Yes" || echo "No"

# save the script in a file called is-drupal, and make it executable (i.e. chmod +x is-drupal) and put it in a directory in your path (e.g. ~/local/bin/).
# Now, you can easily check a site with following command:  is-drupal federicopistono.org
# if not in path, execute in same directory:              ./is-drupal federicopistono.org
# source: http://www.federicopistono.org/content/how-to-find-out-if-a-website-is-running-drupal

EXAMPLES:

ubuntu:~$ ./is-drupal google.com
No
ubuntu:~$ ./is-drupal yo-yoma.com
Yes

Postscript: theonion.com was a false negative with the above 3 methods but was a positive with http://isthissitebuiltwithdrupal.com/ I will add it to my tool kit.