403Webshell
Server IP : 103.119.228.120  /  Your IP : 18.119.108.233
Web Server : Apache
System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : nobody ( 99)
PHP Version : 5.6.40
Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime
MySQL : ON |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /usr/share/doc/ppp-2.4.5/scripts/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /usr/share/doc/ppp-2.4.5/scripts/secure-card
#!/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 

Youez - 2016 - github.com/yon3zu
LinuXploit