Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
ppp /
examples /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
chatchat
[ DIR ]
drwxr-xr-x
2024-08-21 22:52
README
6.63
KB
-rw-r--r--
2022-02-25 02:14
autopppd
5.69
KB
-rw-r--r--
2022-02-24 00:12
callback
2.25
KB
-rwxr-xr-x
2021-01-05 08:06
chat-callback
2.73
KB
-rw-r--r--
2021-01-05 08:06
ip-down.local.add
548
B
-rw-r--r--
2021-01-05 08:06
ip-up.local.add
729
B
-rw-r--r--
2021-01-05 08:06
ipv6-down.sample
609
B
-rw-r--r--
2021-01-05 08:06
ipv6-up.sample
815
B
-rw-r--r--
2021-01-05 08:06
options-rsh-loc
86
B
-rw-r--r--
2021-01-05 08:06
options-rsh-rem
92
B
-rw-r--r--
2021-01-05 08:06
options-ssh-loc
86
B
-rw-r--r--
2021-01-05 08:06
options-ssh-rem
92
B
-rw-r--r--
2021-01-05 08:06
plog
146
B
-rw-r--r--
2021-01-05 08:06
poff
2.72
KB
-rw-r--r--
2021-01-05 08:06
pon
970
B
-rw-r--r--
2021-01-05 08:06
pon.1
3.52
KB
-rw-r--r--
2021-01-05 08:06
ppp-off
967
B
-rwxr-xr-x
2021-01-05 08:06
ppp-on
1.6
KB
-rwxr-xr-x
2021-01-05 08:06
ppp-on-dialer
397
B
-rwxr-xr-x
2021-01-05 08:06
ppp-on-rsh
1.98
KB
-rwxr-xr-x
2021-01-05 08:06
ppp-on-ssh
2.26
KB
-rwxr-xr-x
2021-01-05 08:06
redialer
2.31
KB
-rwxr-xr-x
2022-02-25 02:14
secure-card
2.32
KB
-rwxr-xr-x
2021-01-05 08:06
Save
Rename
#!/usr/bin/expect -f # # This script was written by Jim Isaacson <jcisaac@crl.com>. It is # designed to work as a script to use the SecureCARD(tm) device. This # little device is mated with a central controller. The number displayed # on this card changes every so often and you need to enter the number # along with your user account name in order to gain access. Since chat # is based upon fixed strings this procedure will not work with chat. # # It is included by permission. An excellent reference for the expect # program used by this script is in the book: # # "Exploring Expect" # by Don Libes # Published by O'Rielly and Associates # send_user "hello, starting ppp\n" system "stty 19200 -echoe -echo raw < /dev/ttyS3 > /dev/ttyS3" # # These are the parameters for the program. # set user Pxxxxxx set password xxxxxxx set modem /dev/ttyS3 set dialup <put phone number here> set timeout 60 spawn -noecho -open [open $modem "r+"] send "AT&F\r" expect "OK" send "ATe0v1x4&c1q0&d2&c1s2=128s0=0DT $dialup\r" set timeout 15 set counter 0 set still_connecting 1 expect { -re ".*CONNECT.*\n" { set timeout 5 set still_connecting 0 continue -expect } -re ".*CONNECT.*\r" { set timeout 5 set still_connecting 0 continue -expect } -re ".*NO.*CARRIER" { send_user "Failed to Connect, exiting...\n" exit } -re ".*NO.*DIAL.*TONE" { send_user "Failed to Connect, exiting...\n" exit } -re ".*VOICE" { send_user "Failed to Connect, exiting...\n" exit } -re ".*sscode:.*\n" { continue -expect } -re ".*sscode:" { set timeout -1 expect_user -re "(.*)\n" send "$expect_out(1,string)\r" set timeout 30 continue -expect } -re ".*Next.*:" { set timeout -1 expect_user -re "(.*)\n" send "$expect_out(1,string)\r" set timeout 30 continue -expect } -re "Your.*" { send "\r" continue -expect } -re ".*in:" { send "$user\r" continue -expect } -re ".*word:" { send "$password\r" } timeout { if { $still_connecting > 0 } { continue -expect } set timeout 15 send "\r" incr counter if { $counter > 8 } { send_user "Cannot Connect\n" exit } else { continue -expect } } } overlay -0 $spawn_id -1 $spawn_id pppd /dev/ttyS3 19200 192.111.187.215: \ crtscts modem defaultroute debug