[ SEA-GHOST MINI SHELL]
<?php
include 'obj/user.php';
include "apikey.php";
/*
*Function used to convert the user's 64 bit ID to a 32 bit ID or vice versa
*
* $id - the user's 32 or 64 bit id to be changed
*/
function convert_id($id){
if (strlen($id) === 17){
$converted = substr($id, 3) - 61197960265728;
}else{
$converted = '765'.($id + 61197960265728);
}
return (string) $converted;
}
// Grab the user's 64 bit steam id
$steam_id = $_GET["steam_id"];
//convert their steam id into a 32 bit steam id
$player_account_id = convert_id($steam_id);
//grab the players last 25 matches and decode it for parsing
$json_player = file_get_contents('https://api.steampowered.com/IDOTA2Match_570/GetMatchHistory/V001/?key=' . $apikey . '&account_id='.$steam_id);
$json_decoded_player = (json_decode($json_player, true));
$current_user = new user($steam_id, $player_account_id);
/*
* Function to get the hero names of their most recent 100 dota2 matches
*
* $player_json - The parsable json for the last 25 matches of the user
* $account_id_32 - the 32 bit account id of the user, used for finding which player the hero is in a game
*/
function get_player_info($player_json, $account_id_32){
$json_heroes = file_get_contents('js/json/heroes.json');
$json_decoded_heroes = (json_decode($json_heroes, true));
foreach($player_json['result']['matches'] as $matches){
foreach($matches['players'] as $players){
if($players['account_id'] == $account_id_32){
$hero_id = $players['hero_id'];
$hero_name = get_hero($json_decoded_heroes, $hero_id);
echo $hero_name."<br>";
}
}
}
}
/*
*
* Grab the 10 random heroes for the user to win games with
*
*/
function get_10_heroes($current_user){
$current_user->get_new_hero_list();
$json_heroes = file_get_contents('js/json/heroes.json');
$json_decoded_heroes = (json_decode($json_heroes, true));
$current_10_heroes = $current_user->get_hero_list();
foreach($current_10_heroes as $hero){
$hero = $hero->get_name();
$hero_no_space = str_replace(" ", "_", $hero); ;
echo '<img src="img/heroes/'.$hero_no_space.'.png" alt="'.$hero.'" height="50px" width="65px" >';
echo "<br />";
}
}
?>
<html>
<head>
</head>
<body>
<div id="heroes">
<?php
echo "<h1> Your 10 heroes! </h1>";
get_10_heroes($current_user);
?>
</div>
</body>
</html>
SEA-GHOST - SHELL CODING BY SEA-GHOST