iamvinny / instasniper

This is a tool written in PHP to test the security of Instagram accounts through BruteForce.
19 stars 11 forks source link

It crashes. #2

Closed markusbug closed 6 years ago

markusbug commented 6 years ago

It always crasches but theres no error output

[---------------------------------------]
[ Instagram BruteForce v1.1  By: Vinny! ]
[---------------------------------------]

[!] Password and Proxy list loaded succesfully!

[!] 101 passwords have been loaded.

[!] Starting the attack...
iamvinny commented 6 years ago

What OS are you using? Do you have PHP Curl installed?

markusbug commented 6 years ago

kali linux and yes

iamvinny commented 6 years ago

Ok, try enabling the error reporting, comment out this line.

// error_reporting(0);

markusbug commented 6 years ago

It´s already uncommented

iamvinny commented 6 years ago

ok, replace the 0 with E_ALL

Like this:

error_reporting(E_ALL);

save and and try to run the script again..

markusbug commented 6 years ago

Report: `PHP Fatal error: Uncaught Error: Call to undefined function curl_init() in /root/instasniper/script.php:63 Stack trace:

0 {main}

thrown in /root/instasniper/script.php on line 63 `

iamvinny commented 6 years ago

It seems like you don’t have curl installed.

Install it with: sudo apt-get install php-curl

And restart apache sudo service apache2 restart