Luke Imhoff
|
f61afe2598
|
Merge branch 'master' into bug/MSP-11368/boot-profiling
MSP-11368
|
2014-09-22 10:00:07 -05:00 |
jvazquez-r7
|
46e4235e79
|
Add spec templates
|
2014-09-22 09:16:21 -05:00 |
William Vu
|
ebacb26e51
|
Land #3838, msfvenom badchar fix
|
2014-09-22 03:08:57 -05:00 |
William Vu
|
8a0f86fb27
|
Land #3843, typo fix for download_file
|
2014-09-22 00:48:46 -05:00 |
Joe Vennix
|
ec88957ff4
|
Whitespace tweaks.
|
2014-09-21 23:57:58 -05:00 |
Joe Vennix
|
d9e6f2896f
|
Add the JSObfu mixin to a lot of places.
|
2014-09-21 23:45:59 -05:00 |
Joe Vennix
|
829248f427
|
Land #3840, @wchen-r7's tweaks to os.js and module addition.
|
2014-09-21 22:38:27 -05:00 |
sinn3r
|
2a714a7c4d
|
Fix a typo
Downloading and deleting are two very different things. Thanks Dan.
|
2014-09-21 18:35:26 -05:00 |
sinn3r
|
2e96026725
|
avoid saying 'should'
|
2014-09-21 00:56:13 -05:00 |
sinn3r
|
e1cfc74c32
|
Move jsobfu to a mixin
|
2014-09-21 00:39:04 -05:00 |
sinn3r
|
cd037466a6
|
upate doc
|
2014-09-20 23:40:47 -05:00 |
sinn3r
|
9191af6241
|
Update js_obfuscate
|
2014-09-20 23:38:35 -05:00 |
sinn3r
|
a9420befa4
|
Default to 0
|
2014-09-20 21:39:20 -05:00 |
sinn3r
|
046045c608
|
Chagne option description
|
2014-09-20 21:38:57 -05:00 |
sinn3r
|
fd5aee02d7
|
Update js_obfuscate
|
2014-09-20 21:36:17 -05:00 |
sinn3r
|
cd70014446
|
Fix os detection rspec
no more window
|
2014-09-20 21:29:13 -05:00 |
Josh Abraham
|
b7a0847114
|
SRC IP spoofing added to the SSDP amplification module
|
2014-09-20 21:37:01 -04:00 |
sinn3r
|
7bab825224
|
Last changes
|
2014-09-20 18:39:09 -05:00 |
sinn3r
|
2d828a2144
|
Update rspec
|
2014-09-20 18:09:22 -05:00 |
sinn3r
|
135bed254d
|
Update BrowserExploitServer for JSObfu
|
2014-09-20 17:59:36 -05:00 |
Joe Vennix
|
d9a713b415
|
Decode the badchars string correctly.
|
2014-09-20 17:48:03 -05:00 |
Josh Abraham
|
bb018de3a1
|
chargen src IP spoofing
|
2014-09-20 16:08:52 -04:00 |
Josh Abraham
|
cd8b1318e0
|
send data based on input not @probe
|
2014-09-20 15:18:58 -04:00 |
Josh Abraham
|
3fb00ece9e
|
refactored the code based on PR feedback
|
2014-09-20 14:10:00 -04:00 |
sinn3r
|
d52236fe05
|
Land #3835 - JSObfu to a gem
|
2014-09-20 01:38:45 -05:00 |
Joe Vennix
|
8e1b00ce95
|
Adds JSObfu.disabled for spec stubbing, fixes BES specs.
|
2014-09-19 20:42:05 -05:00 |
Joe Vennix
|
df999db547
|
Add spec to ensure gem loads without error.
|
2014-09-19 19:49:01 -05:00 |
Joe Vennix
|
0f4be63903
|
Move JSObfu a gem then pull it into the Rex namespace.
|
2014-09-19 19:10:39 -05:00 |
jvazquez-r7
|
9acccfe9ba
|
Fix description
|
2014-09-19 17:18:59 -05:00 |
jvazquez-r7
|
d826132f87
|
Delete CVE, add EDB
|
2014-09-19 17:16:03 -05:00 |
jvazquez-r7
|
7afbec9d6c
|
Land #2890, @Ahmed-Elhady-Mohamed module for OSVDB 93034
|
2014-09-19 17:12:49 -05:00 |
jvazquez-r7
|
1fa5c8c00c
|
Add check method
|
2014-09-19 17:11:16 -05:00 |
jvazquez-r7
|
ce0b00bb0b
|
Change module location and filename
|
2014-09-19 16:59:35 -05:00 |
jvazquez-r7
|
0267e889e2
|
Use FileDropper
|
2014-09-19 16:58:21 -05:00 |
jvazquez-r7
|
6fd5027e05
|
Avoid UploadPath datastore option, parse from response
|
2014-09-19 16:55:28 -05:00 |
jvazquez-r7
|
2ce9bdf152
|
Use target_uri.path.to_s instead of uri
|
2014-09-19 16:43:40 -05:00 |
jvazquez-r7
|
eb55c7108b
|
Fix indentantion again
|
2014-09-19 16:41:07 -05:00 |
jvazquez-r7
|
cbfb7e600d
|
Use Rex::MIME::Message
|
2014-09-19 16:29:09 -05:00 |
jvazquez-r7
|
cffb28b5d3
|
Fix indentantion
|
2014-09-19 16:18:46 -05:00 |
Luke Imhoff
|
5884cbc196
|
Optimize skip logic in #update_all_module_details
MSP-11368
Use `Hash<String, Set<String>>` instead of `Array<(String, String)>` so
that `include?` call is faster because (1) it's only search through
reference names of the same module_type and (2) `Set#include?` is faster
than `Array#include?`. This change is a 8.20% average reduction in boot
time compare to b863978028 , for a overall
reduction of 40.95% over b5c3c87790 .
See statistics at
https://docs.google.com/spreadsheets/d/1TnZIUFIR1S5nCnkeM-7XR3AVSbyCl39x2mItJKJCOqg/edit?usp=sharing
and data at
https://drive.google.com/folderview?id=0Bx1hRHfpRW92VEFvQ2FaN3RoWWs&usp=drive_web
|
2014-09-19 15:34:10 -05:00 |
jvazquez-r7
|
b16085baa6
|
Land #3244, @dmaloney-r7's fix for integer comparisions on metasm
|
2014-09-19 15:31:37 -05:00 |
jvazquez-r7
|
c00094ba6e
|
Land #3345, @mvdevnull's auxiliary module for OSVDB 106815, Alienvault sqli
|
2014-09-19 15:01:21 -05:00 |
jvazquez-r7
|
62414e2214
|
Add Timeout to exploit sqli
|
2014-09-19 15:00:54 -05:00 |
jvazquez-r7
|
db6372ec8b
|
Do minor module cleanup
|
2014-09-19 14:43:35 -05:00 |
Luke Imhoff
|
8b5a146067
|
Wrap Array#include? usage
MSP-11368
Wrap skipped.include? call to confirm it is the culprit for
Array#include? inside of with_connection in profile.
|
2014-09-19 14:38:12 -05:00 |
jvazquez-r7
|
4a9294e3bf
|
Mark module as not executable
|
2014-09-19 14:36:44 -05:00 |
jvazquez-r7
|
405ac34a16
|
Fix author name
|
2014-09-19 13:56:13 -05:00 |
jvazquez-r7
|
79d5fb56d4
|
Land #3829, @jhart-r7's UDP emtpy probe scanner
|
2014-09-19 13:54:35 -05:00 |
Jon Hart
|
737f77d31a
|
Cleaner output when PORTS is invalid
|
2014-09-19 11:12:14 -07:00 |
Jon Hart
|
3493987300
|
report_service when we find something this way
|
2014-09-19 10:45:06 -07:00 |