Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
w3m /
examples /
Bonus /
[ HOME SHELL ]
Name
Size
Permission
Action
2ch.cgi
4.64
KB
-rw-r--r--
README.eng
1.83
KB
-rw-r--r--
README.ja
2.5
KB
-rw-r--r--
backslash_to_slash.cgi
151
B
-rw-r--r--
goodict.cgi
1.15
KB
-rw-r--r--
google.cgi
577
B
-rw-r--r--
html2latex
10.32
KB
-rw-r--r--
htmldump
198
B
-rw-r--r--
makeref
4.78
KB
-rw-r--r--
oldconfigure.sh
3.95
KB
-rw-r--r--
scanhist.rb
1.62
KB
-rw-r--r--
smb.cgi
9.27
KB
-rw-r--r--
utf8.cgi
474
B
-rw-r--r--
wrap3m
450
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scanhist.rb
#!/usr/bin/ruby # scan history def usage STDERR.print "usage: scanhist -h HISTORY ML-archive1 ML-archive2 ...\n" exit 1 end def html_quote(s) s.gsub!(/&/,"&") s.gsub!(/</,"<") s.gsub!(/>/,">") s end if ARGV.size == 0 then usage end histfile = nil while ARGV[0] =~ /^-/ case ARGV.shift when "-h" histfile = ARGV.shift else usage end end if histfile.nil? then usage end patched = {} histline = {} f = open(histfile) while f.gets if /Subject: (\[w3m-dev.*\])/ then patched[$1] = true histline[$1] = $. end end f.close archive = {} subject = nil for fn in ARGV f = open(fn) while f.gets if /^From / then # beginning of a mail subject = nil elsif subject.nil? and /^Subject: / then $_ =~ /Subject: (\[w3m-dev.*\])/ subject = $1 archive[subject] = [$_.chop.sub(/^Subject:\s*/,""),false,fn+"#"+($.).to_s] elsif /^\+\+\+/ or /\*\*\*/ or /filename=.*(patch|diff).*/ or /^begin \d\d\d/ archive[subject][1] = true end end f.close end print "<html><head><title>w3m patch configuration\n</title></head><body>\n" print "<pre>\n" for sub in archive.keys.sort a = archive[sub] if a[1] then if patched[sub] then print "[<a href=\"#{histfile}\##{histline[sub]}\">+</a>]" else print "[-]" end print "<a href=\"#{a[2]}\">" print "<b>",html_quote(a[0]),"</b></a>\n" else if patched[sub] then print "[<a href=\"#{histfile}\##{histline[sub]}\">o</a>]" else print " " end print "<a href=\"#{a[2]}\">" print "<b>",html_quote(a[0]),"</b></a>\n" end end print "</pre></body></html>\n"
Close