PHP Code:
#!/bin/bash
# Red V!per Joomla Version Checker
# Coded By Red H4t V!per
# Tnx 2 : Pawel Frankowskiurl="$1"Usage()
{
echo ""echo "# ****************************************************************************************************#"echo "# Usage : Red V!per Joomla Version Checker <target> *#"echo "# Help : -h && --help : Show This Menu *#"echo "# RunScript : Give Permision to script and run it !! *#"echo "# Example : ./script.sh [url]www.example.com/joomla/[/url] *#"echo "# *******************************************************************************#"echo ""exit
}Check_Arguments()
{
if [ -z "$url" ] || [ "$url" == "-h" ] || [ "$url" == "--help" ]; then
Usage;
exitfi}Check_Joomla_Version()
{clear
i=0echo -e '\E[32m'"[*] Start Check ..."; tput sgr0echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
wget -q "$url/templates/system/css/system.css"Version=`cat system.css | grep "OpenID icon style"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.5 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
version=`cat system.css | grep "2011-01-09 02:40:25Z ian"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.6 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
version=`cat system.css | grep "2011-05-11 01:10:29Z dextercowley"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.7 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
version=`cat system.css | grep "2012 Open Source Matters"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 2.5 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
wget -q "$url/media/system/js/mootools-more.js"Version=`cat mootools-more.js | grep "MooTools={version:"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.5 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat mootools-more.js | grep "1.3.0.1"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.6 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat mootools-more.js | grep "1.3.2.1"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.7 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat mootools-more.js | grep "1.4.0.1"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 2.5.6 or 3.0 alpha 2 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
wget -q "$url/language/en-GB/en-GB.ini"Version=`cat en-GB.ini | grep "11391 2009-01-04 13:35:50Z ian"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.5.26 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat en-GB.ini | grep "20196 2011-01-09 02:40:25Z ian"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.6.0 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat en-GB.ini | grep "2011-03-18 16:42:30Z infograf768"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.6.5 or 1.7.1 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat en-GB.ini | grep "22183 2011-09-30 09:04:32Z infograf768"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 1.7.3 or 1.7.5 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat en-GB.ini | grep "<version>2.5.0"`
if [ -z "$Version" ]; then
let i=$i+1echo -e '\E[32m'"[*] Testing method ($i) ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 2.5.0 -> 2.5.4 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi
Version=`cat en-GB.ini | grep "<version>2.5.5"`
if [ -z "$Version" ]; thenecho -e '\E[32m'"[*] Shit :( Not Found ..."; tput sgr0
sleep 0.5else
echo -e '\E[32m'"[*] Found : $url (joomla) Version is 2.5.5 or 2.5.6 "; tput sgr0echo -e '\E[32m'"[*] Finish ..."; tput sgr0exitfi}pre_remove()
{rm -rf system.css*rm -rf mootools-more.js*rm -rf en-GB.ini*
}main()
{pre_remove;Check_Arguments;Check_Joomla_Version;
}main;
Hello world
ReplyDeleteI teach hacking andriod apk virus - windows Hacking - web server hacking -
Reseller :- Hacking Tools & Hacking services, Also Teach Hacking Methods Via teem weaver or Anydesk,
Each Method Take minimum 1 hour to learn with vedio Tutorial And Hacking Tools ,
How to Make Money hacking tools,
- Spamming & Tools ,
- Carding & Tools ,
- Virus with control panal and Spy bot files,
- Virus With Builder And Crypter ,
- Scanners with Bruters ,
- Crypters with Doc Exploits ,pdf Exploits ,TExtfile Exploits ,
- PHP Exploits with shell and mailer
- OTP verications Bypass with Bulletproof Scam-page and Otp control
- Company Ceo or cfo leads Any country
- Rat virus with builder
- Cookies Stealers and Builder
- keyloger and builder
- Credit card Scam-pages
- Bank login Scam-pages
- debit card topup scam page
- donation scam-page
- dhl login and tracking scam-page
- fedax login and tracking scam-page
- Shipping Tools
Place & Ground
learners you will pay cheap $ for demo Tools & Method
Business grounds
Credit card Low Interest Services,
- Credit card with Fullz Information - Minimum Investment 150$ - With 50k Credit limit And balance
- Debit Card Topup AS per Card limit - Minimum Investment 200$ - With 8000$ balance
- Dating scam Fresh male female Logins - Minimum Investment 80$ - Dating Login upto 30
-----------------
ABOUT US :
Icq :-675452902
Skype: rushr00t000
email me:- hackitbackd00r@gmail.com