Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <?php
  2. $lines = file(__DIR__ .'/accounts.txt');
  3.  
  4. foreach($lines as $line) {
  5. $cookieurl = trim(preg_replace('/\s\s+/', ' ', explode("|",$line)[4]));
  6. $pass = explode(":",explode("|",$line)[0])[1];
  7. $c = explode("|",$line);
  8.  
  9. $content = file_get_contents($cookieurl);
  10. $b = json_decode($content,true);
  11.  
  12. foreach ($b as $a)
  13. {
  14. if ($a['Name'] == "ds_user")
  15. $username = $a['Value'];
  16. }
  17.  
  18. echo $username.":".$pass."|".$c[1]."|".$c[2]."|".$c[3]."|".$c[4];
  19.  
  20. //echo PHP_EOL;
  21.  
  22. }
  23.  
  24.  
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement