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 /
lib /
scsi /
[ HOME SHELL ]
Name
Size
Permission
Action
cache
1.4
KB
-rwxr-xr-x
control
1.42
KB
-rwxr-xr-x
disconnect
1.19
KB
-rwxr-xr-x
error
2.25
KB
-rwxr-xr-x
format
1.92
KB
-rwxr-xr-x
generic
3.32
KB
-rw-r--r--
inquiry
5.95
KB
-rwxr-xr-x
notch
1.79
KB
-rwxr-xr-x
overview
12.61
KB
-rwxr-xr-x
peripheral
3.05
KB
-rwxr-xr-x
rigid
1.26
KB
-rwxr-xr-x
save-changes
868
B
-rwxr-xr-x
save-file
1.75
KB
-rwxr-xr-x
tworands
5.99
KB
-rwxr-xr-x
verify
1.81
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : save-file
#!/usr/bin/wish -f set sdevice $argv frame .win frame .win.h label .win.h.l -bitmap questhead -background pink message .win.h.m -aspect 400 -background pink -justify center -text \ {Save the selected values from the target into a disk file. \ The file is executable. Just execute it with /bin/sh to make these \ settings the current settings. Then you can decide to store them in the NVRAM \ of the target device with scsiinfo or scsi-config.} pack .win.h.l .win.h.m -side left -padx 5 pack .win.h -side top -pady 20 -padx 20 frame .win.fname label .win.fname.label -text "Filename:" text .win.fname.text -background white -height 1 -width 40 -relief sunken -borderwidth 2 pack .win.fname.label .win.fname.text -side left -padx 1 pack .win.fname -side top -padx 20 -pady 10 set base [exec basename $sdevice] .win.fname.text delete 1.0 end .win.fname.text insert end "/var/run/scsi-config.$base" frame .win.f radiobutton .win.cur -text "Current values" -width 20 -variable flag -value "-LXR" -anchor w radiobutton .win.sav -text "Saved values" -width 20 -variable flag -value "-LXRS" -anchor w radiobutton .win.man -text "Factory defaults" -width 20 -variable flag -value "-LXRM" -anchor w pack .win.cur .win.sav .win.man -padx 3 .win.cur select button .win.f.quit -width 10 -text "Quit" -command exit \ -activebackground red -activeforeground white button .win.f.continue -width 10 -text "Save" \ -activebackground green \ -command {global fname; set fname [.win.fname.text get 1.0 "end -1 chars"]; destroy .win} pack .win.f.continue .win.f.quit -side left -padx 30 -ipadx 2 -ipady 2 pack .win.f -pady 10 pack .win tkwait window .win # This should do it. Do not come and complain to me if this # does not work exec scsiinfo $flag $sdevice > $fname exec chmod 700 $fname exit
Close