Skip to content

Commit c2ecd3f

Browse files
committed
2 parents 58b796e + 329cbc7 commit c2ecd3f

File tree

483 files changed

+16328
-13339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

483 files changed

+16328
-13339
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
metasploit-framework (6.4.58)
4+
metasploit-framework (6.4.60)
55
aarch64
66
abbrev
77
actionpack (~> 7.1.0)

LICENSE_GEMS

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ This file is auto-generated by tools/dev/update_gem_licenses.sh
22
Ascii85, 2.0.1, MIT
33
aarch64, 2.1.0, "Apache 2.0"
44
abbrev, 0.1.2, "ruby, Simplified BSD"
5-
actionpack, 7.0.8.7, MIT
6-
actionview, 7.0.8.7, MIT
7-
activemodel, 7.0.8.7, MIT
8-
activerecord, 7.0.8.7, MIT
9-
activesupport, 7.0.8.7, MIT
5+
actionpack, 7.1.5.1, MIT
6+
actionview, 7.1.5.1, MIT
7+
activemodel, 7.1.5.1, MIT
8+
activerecord, 7.1.5.1, MIT
9+
activesupport, 7.1.5.1, MIT
1010
addressable, 2.8.7, "Apache 2.0"
1111
afm, 0.2.2, MIT
1212
allure-rspec, 2.26.0, "Apache 2.0"
@@ -37,6 +37,7 @@ byebug, 11.1.3, "Simplified BSD"
3737
chunky_png, 1.4.0, MIT
3838
coderay, 1.1.3, MIT
3939
concurrent-ruby, 1.3.4, MIT
40+
connection_pool, 2.5.0, MIT
4041
cookiejar, 0.3.4, "Simplified BSD"
4142
crass, 1.0.6, MIT
4243
csv, 3.3.2, "ruby, Simplified BSD"
@@ -91,7 +92,7 @@ memory_profiler, 1.1.0, MIT
9192
metasm, 1.0.5, LGPL-2.1
9293
metasploit-concern, 5.0.4, "New BSD"
9394
metasploit-credential, 6.0.14, "New BSD"
94-
metasploit-framework, 6.4.58, "New BSD"
95+
metasploit-framework, 6.4.60, "New BSD"
9596
metasploit-model, 5.0.3, "New BSD"
9697
metasploit-payloads, 2.0.189, "3-clause (or ""modified"") BSD"
9798
metasploit_data_models, 6.0.9, "New BSD"
@@ -137,10 +138,12 @@ puma, 6.6.0, "New BSD"
137138
racc, 1.8.1, "ruby, Simplified BSD"
138139
rack, 2.2.13, MIT
139140
rack-protection, 3.2.0, MIT
141+
rack-session, 1.0.2, MIT
140142
rack-test, 2.2.0, MIT
143+
rackup, 1.0.1, MIT
141144
rails-dom-testing, 2.2.0, MIT
142145
rails-html-sanitizer, 1.6.2, MIT
143-
railties, 7.0.8.7, MIT
146+
railties, 7.1.5.1, MIT
144147
rainbow, 3.1.1, MIT
145148
rake, 13.2.1, MIT
146149
rasn1, 0.14.0, MIT
@@ -190,6 +193,7 @@ ruby_smb, 3.3.13, "New BSD"
190193
rubyntlm, 0.6.5, MIT
191194
rubyzip, 2.4.1, "Simplified BSD"
192195
sawyer, 0.9.2, MIT
196+
securerandom, 0.4.1, "ruby, Simplified BSD"
193197
simplecov, 0.18.2, MIT
194198
simplecov-html, 0.13.1, MIT
195199
simpleidn, 0.2.3, MIT
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
; build with:
2+
; nasm elf_x64_template.s -f bin -o template_x64_linux.bin
3+
4+
BITS 64
5+
6+
org 0x0000000000400000
7+
8+
ehdr: ; Elf64_Ehdr
9+
db 0x7F, "ELF", 2, 1, 1, 0 ; e_ident
10+
db 0, 0, 0, 0, 0, 0, 0, 0 ;
11+
dw 2 ; e_type = ET_EXEC for an executable
12+
dw 0x3e ; e_machine
13+
dd 1 ; e_version
14+
dq _start ; e_entry
15+
dq phdr - $$ ; e_phoff
16+
dq 0 ; e_shoff
17+
dd 0 ; e_flags
18+
dw ehdrsize ; e_ehsize
19+
dw phdrsize ; e_phentsize
20+
dw 1 ; e_phnum
21+
dw 0 ; e_shentsize
22+
dw 0 ; e_shnum
23+
dw 0 ; e_shstrndx
24+
25+
ehdrsize equ $ - ehdr
26+
27+
phdr: ; Elf64_Phdr
28+
dd 1 ; p_type = PT_LOAD
29+
dd 7 ; p_flags = rwx
30+
dq 0 ; p_offset
31+
dq $$ ; p_vaddr
32+
dq $$ ; p_paddr
33+
dq 0x4141414141414141 ; p_filesz
34+
dq 0x4242424242424242 ; p_memsz
35+
dq 0x1000 ; p_align
36+
37+
phdrsize equ $ - phdr
38+
39+
global _start
40+
41+
_start:
42+

0 commit comments

Comments
 (0)