Skip to content

Instantly share code, notes, and snippets.

@JburkeRSAC
Created June 8, 2016 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JburkeRSAC/7213d7a8beef9362a4bf358d9eccfacf to your computer and use it in GitHub Desktop.
Save JburkeRSAC/7213d7a8beef9362a4bf358d9eccfacf to your computer and use it in GitHub Desktop.
<?php
$URL = "http://bdpuqvsqmphctrcs.onion.link/json.txt";
$json = file_get_contents($URL);
$json = json_decode($json);
foreach($json AS $a){
foreach($a AS $thisone){
echo "ONION LINK : ".$thisone[1]."\n";
echo "DESCRIPTION : ".$thisone[2]."\n";
echo "SOURCE : ".$thisone[3]."\n";
echo "FIRST SEEN : ".$thisone[4]."\n";
echo "LAST SEEN : ".$thisone[5]."\n\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment