Skip to content

Commit

Permalink
bumped version to 1.0
Browse files Browse the repository at this point in the history
removed auto loading last hook on start
  • Loading branch information
koto committed Jul 25, 2012
1 parent 9f7f551 commit 2417f81
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ XSS ChEF - Chrome Extension Exploitation Framework
======

by [Krzysztof Kotowicz](http://blog.kotowicz.net)
ver 0.1
ver 1.0

https://github.com/koto/xsschef

Expand Down
6 changes: 4 additions & 2 deletions console.html
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ <h3>Hooked session details</h3>
<h3>About XSS ChEF</h3>
</div>
<div class="modal-body">
<h2><a href="https://github.com/koto/xsschef/">XSS ChEF </a><small>ver 0.1</small></h2>
<h2><a href="https://github.com/koto/xsschef/">XSS ChEF </a><small>ver 1.0</small></h2>
<h3>Chrome Extension Exploitation Framework</h3>
<address>by <a href="http://blog.kotowicz.net">Krzysztof Kotowicz</a></address><address> Logo design by <a href="http://www.thespanner.co.uk/">Gareth Heyes</a></address>
<p>This is a Chrome Extension Exploitation Framework - think <a href="http://beefproject.com/">BeEF</a> for Chrome extensions.
Expand Down Expand Up @@ -441,7 +441,7 @@ <h3>Saved screenshots <small>(experimental)</small></h3>
var DEFAULT_WS_HOST = document.location.host.replace(/:.*/, '') + ':8080';

// current hook name
var hook = localStorage['lastHook'] || '';
var hook = ''; // localStorage['lastHook'] || '';
var currentTab = null;

if (window.mozIndexedDB) {
Expand Down Expand Up @@ -1193,12 +1193,14 @@ <h3>Saved screenshots <small>(experimental)</small></h3>
}
});

/*
// start with saved data
refreshTabsTable(hookStorage.getTabs(hook));
refreshPersistentScriptList(hookStorage.retrieve(hook, 'persistent', []));
refreshPersistentScriptLog(getPersistentLog());
fillDataTemplate($('#tab-ext-info'), hookStorage.retrieve(hook, 'info', {}));
al("Refreshed state from local storage");
*/
$.get('README.md', function(t) { $('#readme').text(t) });
});
</script>
Expand Down

0 comments on commit 2417f81

Please sign in to comment.