Year updated from 2011 to 2012

This commit is contained in:
Wade Alcorn
2011-12-31 22:24:36 +10:00
parent 5476faab07
commit 06899ca267
369 changed files with 534 additions and 502 deletions

View File

@@ -1,5 +1,5 @@
//
// Copyright 2011 Wade Alcorn wade@bindshell.net
// 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.

View File

@@ -1,5 +1,5 @@
#
# Copyright 2011 Wade Alcorn wade@bindshell.net
# 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.

View File

@@ -1,5 +1,5 @@
#
# Copyright 2011 Wade Alcorn wade@bindshell.net
# 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.

View File

@@ -1,5 +1,5 @@
//
// Copyright 2011 Wade Alcorn wade@bindshell.net
// 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.

View File

@@ -1,5 +1,5 @@
#
# Copyright 2011 Wade Alcorn wade@bindshell.net
# 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.

View File

@@ -1,5 +1,5 @@
#
# Copyright 2011 Wade Alcorn wade@bindshell.net
# 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.
@@ -13,12 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
class Test_return_ascii_chars < BeEF::Core::Command
def post_execute
content = {}
content['Result String'] = @datastore['result_string']
save content
end
end
class Test_return_ascii_chars < BeEF::Core::Command
def post_execute
content = {}
content['Result String'] = @datastore['result_string']
save content
end
end

View File

@@ -1,5 +1,5 @@
//
// Copyright 2011 Wade Alcorn wade@bindshell.net
// 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.

View File

@@ -1,5 +1,5 @@
#
# Copyright 2011 Wade Alcorn wade@bindshell.net
# 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.

View File

@@ -1,5 +1,5 @@
#
# Copyright 2011 Wade Alcorn wade@bindshell.net
# 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.
@@ -13,20 +13,20 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
class Test_return_long_string < BeEF::Core::Command
class Test_return_long_string < BeEF::Core::Command
def self.options
return [
{'name' => 'repeat', 'description' => 'Times to repeat', 'ui_label' => 'Times to repeat', 'value' =>'1024'},
{'name' => 'repeat_string', 'description' => 'Strings to repeat', 'ui_label' => 'String to repeat', 'value' =>'\u00AE'}
{'name' => 'repeat', 'description' => 'Times to repeat', 'ui_label' => 'Times to repeat', 'value' =>'1024'},
{'name' => 'repeat_string', 'description' => 'Strings to repeat', 'ui_label' => 'String to repeat', 'value' =>'\u00AE'}
]
end
def post_execute
content = {}
content['Result String'] = @datastore['result_string']
save content
end
end
def post_execute
content = {}
content['Result String'] = @datastore['result_string']
save content
end
end