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.20
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 /
share /
doc /
libio-prompt-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
clear.pl
280
B
-rwxr-xr-x
cmdline.pl
233
B
-rwxr-xr-x
data.pl
1.3
KB
-rwxr-xr-x
default.pl
427
B
-rwxr-xr-x
hand.pl
332
B
-rwxr-xr-x
interactive.pl
115
B
-rwxr-xr-x
lingua.pl
1.81
KB
-rwxr-xr-x
menu.pl
806
B
-rw-r--r--
nonl.pl
202
B
-rwxr-xr-x
num.pl
253
B
-rwxr-xr-x
passwd.pl
516
B
-rwxr-xr-x
record.pl
734
B
-rwxr-xr-x
require.pl
688
B
-rwxr-xr-x
to.pl
544
B
-rwxr-xr-x
tty.pl
473
B
-rwxr-xr-x
underscore.pl
688
B
-rwxr-xr-x
while_until.pl
439
B
-rwxr-xr-x
yesno.pl
594
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : data.pl
#!/usr/bin/perl use IO::Prompt; # The input is taken from the __PROMPT__ section below # # Hitting <return> immediately after the prompt will cause the next # __PROMPT__ line to be typed in for you. # Useful for pretending to type without bothering with the keyboard. # # Hitting any other key immediately after the prompt will put you into # "smart typing" mode: the next __PROMPT__ line will be typed in # for you, one letter for every key you hit (no matter what key you hit) # Useful for pretending to type without looking at the keyboard. # # Hitting <escape> immediately after the prompt will escape from the # automated input process and allow you to type whatever you like # # Because the __PROMPT__ section ends with a line containing only <ctrl>-D, # input terminates when that line is reached. If the last line *didn't* # contain the <ctrl>-D (or <ctrl>-Z if you prefer) then input would # continue from the keyboard after all the __PROMPT__ lines were used # while (prompt -line, "\nNext line: ") { print "Input was: $_"; while (<DATA>) { print "Datum was: $_"; last; } } print "\n"; while (<DATA>) { print "Datum was: $_"; } __DATA__ This is data line 1 This is data line 2 This is data line 3 This is data last line __PROMPT__ This is input line 1 This is input line 2
Close