Updated a few module names
Added mailing list signup form to the advanced demo page in preperation for the stored password theft module
This commit is contained in:
@@ -39,18 +39,26 @@ Welcome to The Butcher, your source of delicious meats. Please feel free to view
|
||||
<div class="normal">
|
||||
<button type="button" onclick="showfriends();">Our Meaty Friends</button> <button type="button" onclick="showHamper();">Order Your BeEF-Hamper</button>
|
||||
<div id="friends">
|
||||
<a href="http://www.beefproject.com">BeEF Project</a><br />
|
||||
<a href="http://www.bindshell.net">Bindshell</a><br />
|
||||
<a href="http://www.slashdot.org">Slashdot</a><br />
|
||||
<a href="http://ha.ckers.org/">ha.ckers.org homepage</a><br />
|
||||
</div>
|
||||
<div id="hamper">
|
||||
Delicious delicious hamper, straight to your door!<br />
|
||||
<form method="GET" action="index.html">Name: <input type="text" name="yourname" /><br />
|
||||
<p>Delicious delicious hamper, straight to your door!</p>
|
||||
<form method="GET" action="index.html">
|
||||
Name: <input type="text" name="yourname" /><br />
|
||||
Phone: <input type="text" name="phone" /><br />
|
||||
Address: <input type="text" name="address" /><br />
|
||||
Credit Card: <input type="text" name="creditcard" /><br />
|
||||
<input type="submit" value="Buy buy!" />
|
||||
</form>
|
||||
<p>Sign up to our mailing list for delicious meats delivered straight to your inbox!</p>
|
||||
<form method="GET" action="index.html">
|
||||
E-mail: <input type="text" name="yourname" /><br />
|
||||
Password: <input type="password" name="password" /><br />
|
||||
<input type="submit" value="Sign Up!">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="smaller">
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
extract_local_storage:
|
||||
get_local_storage:
|
||||
enable: true
|
||||
category: "Browser"
|
||||
name: "Get Local Storage"
|
||||
@@ -13,7 +13,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
class Extract_local_storage < BeEF::Core::Command
|
||||
class Get_local_storage < BeEF::Core::Command
|
||||
|
||||
# More info:
|
||||
# http://dev.w3.org/html5/webstorage/
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
collect_links:
|
||||
get_page_links:
|
||||
enable: true
|
||||
category: "Browser"
|
||||
name: "Get Page HREFs"
|
||||
@@ -13,7 +13,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
class Collect_links < BeEF::Core::Command
|
||||
class Get_page_links < BeEF::Core::Command
|
||||
|
||||
def post_execute
|
||||
content = {}
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
extract_session_storage:
|
||||
get_session_storage:
|
||||
enable: true
|
||||
category: "Browser"
|
||||
name: "Get Session Storage"
|
||||
@@ -13,7 +13,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
class Extract_session_storage < BeEF::Core::Command
|
||||
class Get_session_storage < BeEF::Core::Command
|
||||
|
||||
# More info:
|
||||
# http://dev.w3.org/html5/webstorage/
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
detect_visited_urls:
|
||||
get_visited_urls:
|
||||
enable: true
|
||||
category: "Browser"
|
||||
name: "Get Visited URLs"
|
||||
@@ -13,7 +13,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
class Detect_visited_urls < BeEF::Core::Command
|
||||
class Get_visited_urls < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
return [
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
hook_ie:
|
||||
hook_default_browser:
|
||||
enable: true
|
||||
category: "Host"
|
||||
name: "Hook Default Browser"
|
||||
@@ -14,7 +14,7 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
class Hook_ie < BeEF::Core::Command
|
||||
class Hook_default_browser < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
configuration = BeEF::Core::Configuration.instance
|
||||
Reference in New Issue
Block a user