Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: payment_confirmation.php
<?php include 'security.php' ?> <html> <head> <title>Secure Acceptance - Payment Form Example</title> <link rel="stylesheet" type="text/css" href="payment.css"/> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> </head> <body class="container"> <form id="payment_confirmation" action="https://secureacceptance.cybersource.com/pay" method="post"/> <?php foreach($_REQUEST as $name => $value) { $params[$name] = $value; } ?> <fieldset id="confirmation"> <legend>Review Payment Details</legend> <div> <?php foreach($params as $name => $value) { echo "<div>"; echo "<span class=\"fieldName\">" . $name . "</span><span class=\"fieldValue\">" . $value . "</span>"; echo "</div>\n"; } ?> </div> </fieldset> <?php foreach($params as $name => $value) { echo "<input type=\"hidden\" id=\"" . $name . "\" name=\"" . $name . "\" value=\"" . $value . "\"/>\n"; } echo "<input type=\"hidden\" id=\"signature\" name=\"signature\" value=\"" . sign($params) . "\"/>\n"; ?> <input type="submit" id="submit" value="Confirm"/> </form> </body> </html>