Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
sonic-pi /
server /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
clear-logs.rb
717
B
-rw-r--r--
compile-extensions.rb
2.93
KB
-rwxr-xr-x
doc.rb
940
B
-rwxr-xr-x
exit-script.rb
847
B
-rw-r--r--
i18n-tool.rb
7.08
KB
-rwxr-xr-x
init-script.rb
863
B
-rw-r--r--
launch-gce
3.58
KB
-rwxr-xr-x
port-discovery.rb
1.95
KB
-rw-r--r--
qt-doc.rb
9.47
KB
-rwxr-xr-x
sonic-pi-server.rb
15.23
KB
-rwxr-xr-x
task-clear.rb
3.1
KB
-rw-r--r--
task-register.rb
1.02
KB
-rw-r--r--
test.rb
4.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : port-discovery.rb
#!/usr/bin/ruby -wKU # Change these values to alter the ports # Sonic Pi uses to send and receive messages # at run time: # Port which the GUI uses to send messages to the server: gui_send_to_server = 4557 # Port which the GUI uses to listen to messages from the server: gui_listen_to_server = 4558 # Port which the server uses to send messages to the GUI: server_send_to_gui = 4558 # Port which the server uses to listen to messages from the GUI: server_listen_to_gui = 4557 # Port which the SuperCollider server scsynth listens to: # (scsynth will automatically send replies back to the port # from which the message originated from) scsynth = 4556 # Port which the server uses to send messages to scsynth scsynth_send = 4556 # Port which the server uses to listen to messages which # will automatically be converted to cue events: server_osc_cues = 4559 # Port which the Erlang router listens to. erlang_router = 4560 # Port which the server uses to send OSC messages representing # output MIDI. This is used by osmid's o2m to listen to incoming # OSC messages and then forward them on as standard MIDI messages osc_midi_out = 4561 # Port which the server uses to listen to OSC messages generated # by incoming MIDI. This is used by osmid's m2o as the outgoing # port. osc_midi_in = 4562 case (ARGV[0] || "").downcase when "gui-send-to-server" puts gui_send_to_server when "gui-listen-to-server" puts gui_listen_to_server when "server-send-to-gui" puts server_send_to_gui when "server-listen-to-gui" puts server_listen_to_gui when "server-osc-cues" puts server_osc_cues when "scsynth" puts scsynth when "scsynth-send" puts scsynth_send when "erlang-router" puts erlang_router when "osc-midi-out" puts osc_midi_out when "osc-midi-in" puts osc_midi_in else puts "Unknown port name: #{ARGV[0]}.\nExpecting one of:\n* gui-send-to-server\n* gui-listen-to-server\n* server-send-to-gui\n* server-listen-to-gui\n* server-osc-cues\n* scsynth\n* scsynth-send" end
Close