Detect Website Backends
RSS icon Email icon
  • Version 1.2.7.0

    Posted on February 5th, 2009 admin 3 comments

    Today I’ve been playing around with UML and implemented a developer toolbox, that makes it easy to test, debug and improve filters.

    Furthermore, thanks to some anonymous posters in the forum, I’ve added two new filters:

    • Trac
    • Bugzilla

    Both only the basic detection.

    
    filters.push({
        name: "Trac",
        image: "chrome://backendinfo/skin/trac.png",
        require: new Array({
            url: '/', contains: new Array('/chrome/common/js/trac.js') }
        )
    });
    
    filters.push({
        name: "Bugzilla",
        image: "chrome://backendinfo/skin/bugzilla.png",
        require: new Array(
            { url: '/', contains: new Array('show_bug.cgi', 'skins/standard/global.css', /bugzilla/i) },
            { url: '/', contains: new Array('query.cgi', 'skins/standard/global.css', /bugzilla/i) }
        )
    });
    
     

    3 Responses to “Version 1.2.7.0”

    1. Since the forum seems to not exist at the moment, I thought I’d post this filter here. It’s for Blogger, which isn’t a self-host piece of software like other filters here, but I think it’s worth having.

      filters.push({
      name: “Blogger”,
      require: new Array(
      { url: ‘/’, contains: new Array(’<link rel=”stylesheet” type=”text/css” href=”http://www.blogger.com/dyn-css/authorization.css?’) }
      )
      });

    2. Great plugin. A lot better than Wappalyzer. But sad that it always stop functioning when upgrading Firefox. I’ve had Firefox 3.6 now for weeks, and the plugin haven’t worked during this time…

    3. hi, is 1.2.8 posted as they say on mozilla? the forums are gone too.

    Leave a Reply

brought to you by linuxuser.at