agent009
Junior Member
- Jul 17, 2010
- 127
- 45
HEllo guys !
I hope that my english will be clear for you, i am an old member here, and wanted to share as much i can and give something in return to this great Forum, This is my second Share , the first was about my free php script to send emails using smtp servers or even gmail / yahoo accounts and reach the inbox , find it here : https://www.blackhatworld.com/seo/send-thousands-of-emails-and-with-70-inbox.1080009/
I will Go ahead about my second addition to the forum, it's a free script made by exploiting an existing library called "mgp25" the original library link is here https://github.com/mgp25/Instagram-API
So i used to it to create a script which will allow you to contact your followers or any ig profil, First let's download my customized script from here https://www65.zippyshare.com/v/XW2kL1kI/file.html
Here is the virus total link
https://www.virustotal.com/gui/file...40cde5644f35a39d71681fc84cbabdb6a91/detection
The script just need to be uploaded to your hosting website without importing anything with the freaking composer, so i edited it the way its easy to work after a simple upload,
1) the "index.php" in the root is what we need , open it and change , $username and $password , cause we need to login with a real working ig,
2) the following lines are the usernames that you want to contact , you can send your message to many as a dm group so its easy than send one by one that will take time, and don't send to more than 29 this is the actual limit of instagram. the code ares :
and so until user29
3) you add this users then to the array to prepare our dm request like the following
4) last step is to write the message that shoud be sent to this receipents , edit it here
That's all Guys Enjoy it, don't hesitate to contact me , thumb up
Warning This script is not for spam use but only legal use
I hope that my english will be clear for you, i am an old member here, and wanted to share as much i can and give something in return to this great Forum, This is my second Share , the first was about my free php script to send emails using smtp servers or even gmail / yahoo accounts and reach the inbox , find it here : https://www.blackhatworld.com/seo/send-thousands-of-emails-and-with-70-inbox.1080009/
I will Go ahead about my second addition to the forum, it's a free script made by exploiting an existing library called "mgp25" the original library link is here https://github.com/mgp25/Instagram-API
So i used to it to create a script which will allow you to contact your followers or any ig profil, First let's download my customized script from here https://www65.zippyshare.com/v/XW2kL1kI/file.html
Here is the virus total link
https://www.virustotal.com/gui/file...40cde5644f35a39d71681fc84cbabdb6a91/detection
The script just need to be uploaded to your hosting website without importing anything with the freaking composer, so i edited it the way its easy to work after a simple upload,
1) the "index.php" in the root is what we need , open it and change , $username and $password , cause we need to login with a real working ig,
2) the following lines are the usernames that you want to contact , you can send your message to many as a dm group so its easy than send one by one that will take time, and don't send to more than 29 this is the actual limit of instagram. the code ares :
PHP:
$user1 = $ig->people->getUserIdForName("rachelmalone05");
$user2 = $ig->people->getUserIdForName("kimwageyy");
3) you add this users then to the array to prepare our dm request like the following
PHP:
$recipients = array("users"=>array($user1,$user2,$user3,$user4,$user12,$user5,$user6,$user7,$user8,$user9,$user10,$user11,$user13,$user14,$user16,$user17,$user18,$user19,$user20,$user21,$user22,$user23,$user24,$user25,$user26,$user27));
4) last step is to write the message that shoud be sent to this receipents , edit it here
PHP:
$text = "Hello this is a test Direct message ! ";
That's all Guys Enjoy it, don't hesitate to contact me , thumb up
Warning This script is not for spam use but only legal use
Last edited by a moderator: