Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=windows-1256" />
- <title>Joomla Version Checker v.01</title>
- <br /><br /><font color="#33FFFF" face="Georgia" size="4"> ~!! Check joomla version !!~ </font>
- <br /> <br /><br /><br />
- <style type="text/css">
- body{
- background-color: #000000;
- text-align: center;
- color: #999999;
- }
- </style>
- </head>
- <body>
- <form method="POST" action="" />
- Site : <input type="text" name="site" size="30"/>
- <input type="submit" value="submit" />
- </form>
- <?php
- /**
- * @author : SD-r1z
- * @copyright : 2012
- * @Greet : To all Sec4ever Memeberz .. and my SD friendz :D
- * @Specail : Thanks To Damane-DZ
- * @DESCRITPTION : The script show the version of joomla if exists
- */
- $site = $_POST["site"];
- if (isset($_POST["site"])) {
- $whois = @file_get_contents($site);
- if($whois){
- preg_match("@mla!([^|]+)- O@", $whois, $ver);
- echo '<font color="white"><center>JoomLa Version : </font>';
- echo '<font color="red">'.$ver[1].'<br></font></center>';
- }
- }
- ?>
- <br /><br /><br /><br />
- </body>
- <p align="center" style="color: #999999" style="font:bold">Coded by <span style="color: #FF0000">SD-r1z</span> </p>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement