Posts

Showing posts with the label Scripts

Pen Testing Scripts By Common Exploits

Image
It has been a long time since I have posted on the blog, I have been very busy! I have created quite a few new scripts over the last year that I have finally shared and also have updated a few. These typically are scripts I have made for specific jobs I have been to make life easier. Things to consider, some of the scripts are older and may have bugs. These are scripts I have created with basic knowledge of bash etc. They do the job, use them or don’t use them, so I am not looking for a code review thanks  Here is a list of tools you can find and a brief overview of what they do: New tools released 2014. Whatsfree https://github.com/commonexploits/whatsfree Useful for when conducting pentests. Quickly find a live IP address to use. This can be handy when the client says “just pick one that is free” or when they give you a spreadsheet with an IP address to use and you want to ensure it is really free. Quite often typos will occur and you could take out a live box if you set the wron...

How To Install and Secure phpMyAdmin

Image
How To Install and Secure phpMyAdmin Relational database management systems like MySQL are needed for a significant portion of web sites and applications. However, not all users feel comfortable administering their data from the command line. To solve this problem, a project called phpMyAdmin was created in order to offer an alternative in the form of a web-based management interface. In this guide, we will demonstrate how to install and secure a phpMyAdmin configuration on an Ubuntu 14.04 server. We will build this setup on top of the Nginx web server, which has a good performance profile and can handle heavy loads better than some other web servers. Before we begin, there are a few requirements that need to be settled. Ubuntu Server LEMP (Linux, Nginx, MySQL, and PHP) stack on your Ubuntu server. Install phpMyAdmin With our LEMP platform already in place, we can begin right away with installing the phpMyAdmin software. sudo apt-get update sudo apt-get install phpmyadmin During the in...

CVV Checker (Visa & Mastercard)

Save it as something.php upload it a host and check PHP Code: <?php ob_start (); @ session_start (); set_time_limit ( 0 ); function  _curl ( $url , $post = "" , $usecookie  =  false ) {       $ch  =  curl_init ();     if( $post ) {          curl_setopt ( $ch ,  CURLOPT_POST  , 1 );          curl_setopt  ( $ch ,  CURLOPT_POSTFIELDS ,  $post );     }      curl_setopt ( $ch ,  CURLOPT_URL ,  $url );      curl_setopt ( $ch ,  CURLOPT_FOLLOWLOCATION ,  1 );      curl_setopt ( $ch ,  CURLOPT_USERAGENT ,  "Mozilla/6.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.7) Gecko/20050414 Firefox/1.0.3" );      curl_setopt ( $ch ,  CURLOPT_SSL...