This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Subscribe on YouTube, and follow on TikTok (@mattupham)! Socials found below: | |
| // https://mattupham.com/links | |
| // @ me on Discord with any questions! | |
| https://link.mattupham.com/discord | |
| // -------------------------------------------- | |
| // PLEASE REPLACE "your-api-key-here" WITH AN | |
| // API KEY FROM https://ipgeolocation.io/ | |
| let apiKey = "your-api-key-here"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| header("Content-Type: image/jpeg"); | |
| $curl = curl_init(); | |
| $id=$_GET['id']; //Id Message | |
| curl_setopt_array($curl, array( | |
| CURLOPT_URL => "https://api.line.me/v2/bot/message/".$id."/content", | |
| CURLOPT_RETURNTRANSFER => true, | |
| CURLOPT_ENCODING => "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @author Ammar F. <ammarfaizi2@gmail.com> | |
| */ | |
| $_p['value(user_id)'] = ""; // username | |
| $_p['value(pswd)'] = ""; // password | |
| $_p['value(Submit)'] = "LOGIN"; | |
| $a=curl("https://m.klikbca.com/login.jsp"); | |
| $a = explode('type="hidden"', $a); | |
| for ($i=1;$i<count($a);$i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| // Sublime Text - Build System for Javascript | |
| { | |
| "cmd": ["node", "$file"], | |
| "selector": "source.js" | |
| } |