├── .gitignore ├── .gitmodules ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── backend ├── Makefile.am ├── deps │ ├── json_spirit │ │ ├── .json_spirit_utils.h.swp │ │ ├── CMakeLists.txt │ │ ├── json_spirit.h │ │ ├── json_spirit.vcproj │ │ ├── json_spirit_error_position.h │ │ ├── json_spirit_reader.cpp │ │ ├── json_spirit_reader.h │ │ ├── json_spirit_reader_template.h │ │ ├── json_spirit_stream_reader.h │ │ ├── json_spirit_utils.h │ │ ├── json_spirit_value.cpp │ │ ├── json_spirit_value.h │ │ ├── json_spirit_writer.cpp │ │ ├── json_spirit_writer.h │ │ └── json_spirit_writer_template.h │ └── winpcap │ │ ├── include │ │ ├── Packet32.h │ │ ├── Win32-Extensions.h │ │ ├── bittypes.h │ │ ├── ip6_misc.h │ │ ├── pcap-bpf.h │ │ ├── pcap-namedb.h │ │ ├── pcap-stdinc.h │ │ ├── pcap.h │ │ ├── pcap │ │ │ ├── bluetooth.h │ │ │ ├── bpf.h │ │ │ ├── namedb.h │ │ │ ├── pcap.h │ │ │ ├── sll.h │ │ │ ├── usb.h │ │ │ └── vlan.h │ │ └── remote-ext.h │ │ └── lib │ │ ├── Packet.dll │ │ └── wpcap.dll └── src │ ├── abstract_platform.hpp │ ├── config.h │ ├── firesheep_platform.hpp │ ├── http_packet.cpp │ ├── http_packet.hpp │ ├── http_sniffer.cpp │ ├── http_sniffer.hpp │ ├── interface_info.hpp │ ├── libfiresheep.cpp │ ├── linux_platform.cpp │ ├── linux_platform.hpp │ ├── main.cpp │ ├── osx_platform.cpp │ ├── osx_platform.hpp │ ├── tcpip.h │ ├── unix_platform.hpp │ ├── windows_platform.cpp │ └── windows_platform.hpp ├── boost.m4 ├── configure.ac ├── scripts └── runfoxrun.sh └── xpi ├── chrome.manifest ├── chrome ├── content │ ├── about.xul │ ├── browserOverlay.js │ ├── browserOverlay.xul │ ├── customizeToolbarOverlay.xul │ ├── preferences │ │ ├── advancedPane.xul │ │ ├── capturePane.js │ │ ├── capturePane.xul │ │ ├── prefsWindow.xul │ │ ├── websiteEditor.js │ │ ├── websiteEditor.xul │ │ ├── websitesPane.js │ │ └── websitesPane.xul │ ├── sidebar.js │ └── sidebar.xul ├── locale │ └── en-US │ │ ├── about.dtd │ │ ├── options.dtd │ │ ├── overlay.dtd │ │ └── overlay.properties └── skin │ ├── bottombar_bg.png │ ├── bottombar_handle.png │ ├── default_avatar.jpg │ ├── details_button.png │ ├── details_button_pressed.png │ ├── menu_button.png │ ├── menu_button_pressed.png │ ├── overlay.css │ ├── preferences-osx.css │ ├── preferences.css │ ├── prefs-advanced.png │ ├── prefs-capture.png │ ├── prefs-websites.png │ ├── sidebar-osx.css │ ├── sidebar-win.css │ ├── sidebar.css │ └── toolbar-button.png ├── defaults └── preferences │ └── prefs.js ├── handlers ├── akfdemo.js ├── amazon.js ├── basecamp.js ├── bitly.js ├── cisco.js ├── cnet.js ├── enom.js ├── evernote.js ├── facebook.js ├── fiverr.js ├── flickr.js ├── foursquare.js ├── google.js ├── gowalla.js ├── groupme.js ├── hackernews.js ├── harvest.js ├── linkedin.js ├── live.js ├── nytimes.js ├── posterous.js ├── quora.js ├── reddit.js ├── sandiego_toorcon.js ├── shutterstock.js ├── stackoverflow.js ├── tumblr.js ├── twitter.js ├── vimeo.js ├── wordpress.js ├── yahoo.js └── yelp.js ├── install.rdf └── modules ├── Firesheep.js ├── FiresheepBackend.js ├── FiresheepConfig.js ├── FiresheepResult.js ├── FiresheepSession.js └── util ├── Base64.js ├── CookieMonster.js ├── FileTail.js ├── Observers.js ├── Preferences.js ├── RailsHelper.js ├── RubyMarshal.js ├── ScriptParser.js ├── Utils.js └── underscore.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/autogen.sh -------------------------------------------------------------------------------- /backend/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/Makefile.am -------------------------------------------------------------------------------- /backend/deps/json_spirit/.json_spirit_utils.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/.json_spirit_utils.h.swp -------------------------------------------------------------------------------- /backend/deps/json_spirit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/CMakeLists.txt -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit.vcproj -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_error_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_error_position.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_reader.cpp -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_reader.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_reader_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_reader_template.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_stream_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_stream_reader.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_utils.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_value.cpp -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_value.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_writer.cpp -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_writer.h -------------------------------------------------------------------------------- /backend/deps/json_spirit/json_spirit_writer_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/json_spirit/json_spirit_writer_template.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/Packet32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/Packet32.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/Win32-Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/Win32-Extensions.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/bittypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/bittypes.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/ip6_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/ip6_misc.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap-bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap-bpf.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap-namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap-namedb.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap-stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap-stdinc.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/bluetooth.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/bpf.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/namedb.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/pcap.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/sll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/sll.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/usb.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/pcap/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/pcap/vlan.h -------------------------------------------------------------------------------- /backend/deps/winpcap/include/remote-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/include/remote-ext.h -------------------------------------------------------------------------------- /backend/deps/winpcap/lib/Packet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/lib/Packet.dll -------------------------------------------------------------------------------- /backend/deps/winpcap/lib/wpcap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/deps/winpcap/lib/wpcap.dll -------------------------------------------------------------------------------- /backend/src/abstract_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/abstract_platform.hpp -------------------------------------------------------------------------------- /backend/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/config.h -------------------------------------------------------------------------------- /backend/src/firesheep_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/firesheep_platform.hpp -------------------------------------------------------------------------------- /backend/src/http_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/http_packet.cpp -------------------------------------------------------------------------------- /backend/src/http_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/http_packet.hpp -------------------------------------------------------------------------------- /backend/src/http_sniffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/http_sniffer.cpp -------------------------------------------------------------------------------- /backend/src/http_sniffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/http_sniffer.hpp -------------------------------------------------------------------------------- /backend/src/interface_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/interface_info.hpp -------------------------------------------------------------------------------- /backend/src/libfiresheep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/libfiresheep.cpp -------------------------------------------------------------------------------- /backend/src/linux_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/linux_platform.cpp -------------------------------------------------------------------------------- /backend/src/linux_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/linux_platform.hpp -------------------------------------------------------------------------------- /backend/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/main.cpp -------------------------------------------------------------------------------- /backend/src/osx_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/osx_platform.cpp -------------------------------------------------------------------------------- /backend/src/osx_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/osx_platform.hpp -------------------------------------------------------------------------------- /backend/src/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/tcpip.h -------------------------------------------------------------------------------- /backend/src/unix_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/unix_platform.hpp -------------------------------------------------------------------------------- /backend/src/windows_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/windows_platform.cpp -------------------------------------------------------------------------------- /backend/src/windows_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/backend/src/windows_platform.hpp -------------------------------------------------------------------------------- /boost.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/boost.m4 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/configure.ac -------------------------------------------------------------------------------- /scripts/runfoxrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/scripts/runfoxrun.sh -------------------------------------------------------------------------------- /xpi/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome.manifest -------------------------------------------------------------------------------- /xpi/chrome/content/about.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/about.xul -------------------------------------------------------------------------------- /xpi/chrome/content/browserOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/browserOverlay.js -------------------------------------------------------------------------------- /xpi/chrome/content/browserOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/browserOverlay.xul -------------------------------------------------------------------------------- /xpi/chrome/content/customizeToolbarOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/customizeToolbarOverlay.xul -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/advancedPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/advancedPane.xul -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/capturePane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/capturePane.js -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/capturePane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/capturePane.xul -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/prefsWindow.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/prefsWindow.xul -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/websiteEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/websiteEditor.js -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/websiteEditor.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/websiteEditor.xul -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/websitesPane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/websitesPane.js -------------------------------------------------------------------------------- /xpi/chrome/content/preferences/websitesPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/preferences/websitesPane.xul -------------------------------------------------------------------------------- /xpi/chrome/content/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/sidebar.js -------------------------------------------------------------------------------- /xpi/chrome/content/sidebar.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/content/sidebar.xul -------------------------------------------------------------------------------- /xpi/chrome/locale/en-US/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/locale/en-US/about.dtd -------------------------------------------------------------------------------- /xpi/chrome/locale/en-US/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/locale/en-US/options.dtd -------------------------------------------------------------------------------- /xpi/chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /xpi/chrome/locale/en-US/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/locale/en-US/overlay.properties -------------------------------------------------------------------------------- /xpi/chrome/skin/bottombar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/bottombar_bg.png -------------------------------------------------------------------------------- /xpi/chrome/skin/bottombar_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/bottombar_handle.png -------------------------------------------------------------------------------- /xpi/chrome/skin/default_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/default_avatar.jpg -------------------------------------------------------------------------------- /xpi/chrome/skin/details_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/details_button.png -------------------------------------------------------------------------------- /xpi/chrome/skin/details_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/details_button_pressed.png -------------------------------------------------------------------------------- /xpi/chrome/skin/menu_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/menu_button.png -------------------------------------------------------------------------------- /xpi/chrome/skin/menu_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/menu_button_pressed.png -------------------------------------------------------------------------------- /xpi/chrome/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/overlay.css -------------------------------------------------------------------------------- /xpi/chrome/skin/preferences-osx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/preferences-osx.css -------------------------------------------------------------------------------- /xpi/chrome/skin/preferences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/preferences.css -------------------------------------------------------------------------------- /xpi/chrome/skin/prefs-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/prefs-advanced.png -------------------------------------------------------------------------------- /xpi/chrome/skin/prefs-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/prefs-capture.png -------------------------------------------------------------------------------- /xpi/chrome/skin/prefs-websites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/prefs-websites.png -------------------------------------------------------------------------------- /xpi/chrome/skin/sidebar-osx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/sidebar-osx.css -------------------------------------------------------------------------------- /xpi/chrome/skin/sidebar-win.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/sidebar-win.css -------------------------------------------------------------------------------- /xpi/chrome/skin/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/sidebar.css -------------------------------------------------------------------------------- /xpi/chrome/skin/toolbar-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/chrome/skin/toolbar-button.png -------------------------------------------------------------------------------- /xpi/defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /xpi/handlers/akfdemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/akfdemo.js -------------------------------------------------------------------------------- /xpi/handlers/amazon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/amazon.js -------------------------------------------------------------------------------- /xpi/handlers/basecamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/basecamp.js -------------------------------------------------------------------------------- /xpi/handlers/bitly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/bitly.js -------------------------------------------------------------------------------- /xpi/handlers/cisco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/cisco.js -------------------------------------------------------------------------------- /xpi/handlers/cnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/cnet.js -------------------------------------------------------------------------------- /xpi/handlers/enom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/enom.js -------------------------------------------------------------------------------- /xpi/handlers/evernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/evernote.js -------------------------------------------------------------------------------- /xpi/handlers/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/facebook.js -------------------------------------------------------------------------------- /xpi/handlers/fiverr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/fiverr.js -------------------------------------------------------------------------------- /xpi/handlers/flickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/flickr.js -------------------------------------------------------------------------------- /xpi/handlers/foursquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/foursquare.js -------------------------------------------------------------------------------- /xpi/handlers/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/google.js -------------------------------------------------------------------------------- /xpi/handlers/gowalla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/gowalla.js -------------------------------------------------------------------------------- /xpi/handlers/groupme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/groupme.js -------------------------------------------------------------------------------- /xpi/handlers/hackernews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/hackernews.js -------------------------------------------------------------------------------- /xpi/handlers/harvest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/harvest.js -------------------------------------------------------------------------------- /xpi/handlers/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/linkedin.js -------------------------------------------------------------------------------- /xpi/handlers/live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/live.js -------------------------------------------------------------------------------- /xpi/handlers/nytimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/nytimes.js -------------------------------------------------------------------------------- /xpi/handlers/posterous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/posterous.js -------------------------------------------------------------------------------- /xpi/handlers/quora.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/quora.js -------------------------------------------------------------------------------- /xpi/handlers/reddit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/reddit.js -------------------------------------------------------------------------------- /xpi/handlers/sandiego_toorcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/sandiego_toorcon.js -------------------------------------------------------------------------------- /xpi/handlers/shutterstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/shutterstock.js -------------------------------------------------------------------------------- /xpi/handlers/stackoverflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/stackoverflow.js -------------------------------------------------------------------------------- /xpi/handlers/tumblr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/tumblr.js -------------------------------------------------------------------------------- /xpi/handlers/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/twitter.js -------------------------------------------------------------------------------- /xpi/handlers/vimeo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/vimeo.js -------------------------------------------------------------------------------- /xpi/handlers/wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/wordpress.js -------------------------------------------------------------------------------- /xpi/handlers/yahoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/yahoo.js -------------------------------------------------------------------------------- /xpi/handlers/yelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/handlers/yelp.js -------------------------------------------------------------------------------- /xpi/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/install.rdf -------------------------------------------------------------------------------- /xpi/modules/Firesheep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/Firesheep.js -------------------------------------------------------------------------------- /xpi/modules/FiresheepBackend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/FiresheepBackend.js -------------------------------------------------------------------------------- /xpi/modules/FiresheepConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/FiresheepConfig.js -------------------------------------------------------------------------------- /xpi/modules/FiresheepResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/FiresheepResult.js -------------------------------------------------------------------------------- /xpi/modules/FiresheepSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/FiresheepSession.js -------------------------------------------------------------------------------- /xpi/modules/util/Base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/Base64.js -------------------------------------------------------------------------------- /xpi/modules/util/CookieMonster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/CookieMonster.js -------------------------------------------------------------------------------- /xpi/modules/util/FileTail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/FileTail.js -------------------------------------------------------------------------------- /xpi/modules/util/Observers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/Observers.js -------------------------------------------------------------------------------- /xpi/modules/util/Preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/Preferences.js -------------------------------------------------------------------------------- /xpi/modules/util/RailsHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/RailsHelper.js -------------------------------------------------------------------------------- /xpi/modules/util/RubyMarshal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/RubyMarshal.js -------------------------------------------------------------------------------- /xpi/modules/util/ScriptParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/ScriptParser.js -------------------------------------------------------------------------------- /xpi/modules/util/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/Utils.js -------------------------------------------------------------------------------- /xpi/modules/util/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebutler/firesheep/HEAD/xpi/modules/util/underscore.js --------------------------------------------------------------------------------