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
#!/bin/sh ################################################################### # # Script to dial the remote system, negotiate the connection, and send # it the id. Then wait for the modem to disconnect. Reset the modem # to answer mode and wait for the system to call back. # # The telephone number and modempass are used when establishing the # connection to the modem. # PHONE=555-1212 MODEMPASS=modem_identifier # # Once the modem calls back, the account name and password are used for # a UNIX style login operation. # ACCOUNT=my_account_name PASSWORD=my_password ################################################################### # # Step 1. Dial the modem and negotiate the initial dialog. # note: the modem is configured to ignore loss of DCD at this point. # it is important that this be performed because the loss of DCD # will normally prevent system from working since 'modem' is used # for pppd. # # The script is terminated normally when the carrier is lost. # chat -v \ TIMEOUT 3 \ ABORT '\nBUSY\r' \ ABORT '\nNO ANSWER\r' \ ABORT '\nRINGING\r\n\r\nRINGING\r' \ '' AT \ 'OK-+++\c-OK' 'AT&C0&D2S0=0H0' \ TIMEOUT 30 \ OK ATDT$TELEPHONE \ CONNECT '' \ assword: $MODEMPASS \ "\nNO CARRIER\r" if [ "$?" = "0" ]; then ################################################################### # # Step 2. Wait for the call back from the remote. This will wait for at most # 30 seconds for the call back should the first attempt fail or # something happen with the callback logic at the remote. # # note: when the callback occurs, the DCD setting is re-enabled. # # If some voice call should happen during this period, the system will # answer the telephone and then hang up on them. I realize that this is # rude, but there is little that this script can do. # chat -v \ TIMEOUT 30 \ ABORT '\nVOICE\r' \ '\nRING\r' 'AT&C1A' \ CONNECT '' \ TIMEOUT 10 \ ogin:--ogin: $ACCOUNT \ TIMEOUT 45 \ assword: $PASSWORD if [ "$?" = "0" ]; then exit 0 fi fi ################################################################### # # The script has failed. Terminate the connection mode. # chat -v TIMEOUT 3 "" AT 'OK-+++\c-OK' 'AT&C1&D2S0=0H0' OK exit 1