ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content

sKage's Content

There have been 43 items by sKage (Search limited from Apr 29, 2023)


By content type

See this member's


Sort by                Order  

#32734059 [PRIVATE METHOD] HOW TO BAN ANY INSTAGRAM ACCOUNT | UP TO 10.000 FOLLOWERS

Posted by sKage on 27 February 2021 - 12:40 PM in Tutorials, Guides, Ebooks, etc.

This is sweet, thank you!




#32734026 DOX ANY GMAIL [NAME, LIVE LOCATION, PHOTOS, DEVICES, CALENDAR] (SOURCE)

Posted by sKage on 27 February 2021 - 12:36 PM in Other languages

This tool allows you to obtain the following information on a gmail account:

    Owner's name
    Last time the profile was edited
    Google ID
    If the account is a Hangouts Bot
    Activated Google services (YouTube, Photos, Maps, News360, Hangouts, etc.)
    Possible YouTube channel
    Possible other usernames
    Public photos
    Phones models
    Phones firmwares
    Installed softwares
    Google Maps reviews
    Possible physical location
    Events from Google Calendar

Seems like an awesome release, will check it out!




#32734003 Make Spotify PC Premium Any Version [source code inc]

Posted by sKage on 27 February 2021 - 12:33 PM in Other languages

 

Hi people, I am sharing with you the ownsome tool that I found over the internet.


With a simple click you will make your Spotify application premium, no ads, no limits no ….


The file is .bat file, so you can view the whole code that will be executed (Security first).

 

 

 

 

 

PLZ If You Like This Post Rate It Up  :eyesroll:   To Encourage The Author, Dont Be A Leecher

 

Don't suggest downloading it until you have ran a virustotal scan on the file. 




#32723652 Discord bot for Sellix

Posted by sKage on 26 February 2021 - 06:54 PM in Other languages

 

PAID LEAKSellix bot in py for discord, take sellix payments thru your channel/discord server!

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import discord
from discord.ext import commands
from discord.ext import tasks
import json
import datetime
import requests
TOKEN = ""
PREFIX = ""
API_KEY = ""
ROLES = []
orders = []
feedback = []
stock_list = dict()
with open('config.json') as json_file:
    data = json.load(json_file)
    TOKEN = data["token"]
    PREFIX = data["prefix"]
    ROLES = data["permission_roles"]
    API_KEY = data["sellix_api_key"]
    CUSTOMER_ROLE = data["customer_role"]

header = {
    'Authorization': 'Bearer '+API_KEY,
    'User-Agent': 'Sellix-Bot'
}

client = commands.Bot(command_prefix=PREFIX)
client.remove_command("help")

@tasks.loop(seconds=60)
async def update():
    global stock_list
    with open('config.json') as json_file:
        data = json.load(json_file)
        restock_channel = data["restock_channel"]
    print("=> Updating...")
    products = get_products()
    for product in products:
        if product["uniqid"] in stock_list:
            if stock_list[product["uniqid"]] != int(product["stock"]):
                stock_list[product["uniqid"]] = int(product["stock"])
                if int(product["stock"]) == 1:
                    embed = discord.Embed(title="Stock warning", description=product["title"] + " is low on stock", color=discord.Color.orange())
                    await client.get_channel(restock_channel).send(embed=embed)
                elif int(product["stock"]) == 0:
                    embed = discord.Embed(title="Empty Stock", description=product["title"] + " is empty on stock",
                                          color=discord.Color.red())
                    await client.get_channel(restock_channel).send(embed=embed)
                else:
                    embed = discord.Embed(title="Product restocked", description=product["title"] + " was restocked",
                                          color=discord.Color.purple())
                    if product["stock"] == -1:
                        stock = "Service"
                    else:
                        stock = str(product["stock"])
                    embed.add_field(name="Stock", value=stock)
                    await client.get_channel(restock_channel).send(embed=embed)
        else:
            stock_list[product["uniqid"]] = int(product["stock"])
    print("=> Update finished ")

@client.command(name="help")
async def help(ctx):
    embed = discord.Embed(title="Help", description="See all Commands for "+client.user.name, color=discord.Color.blue())
    embed.add_field(name=PREFIX+"help", value="Displays the help", inline=False)
    embed.add_field(name=PREFIX+"stock", value="Displays the current stock", inline=False)
    embed.add_field(name=PREFIX+"verify <order_id>", value="Adds customer role to an user", inline=False)
    if has_permissions(ctx):
        embed.add_field(name=PREFIX+"checkorder <order_id>", value="Prints all information about an order", inline=False)
        embed.add_field(name=PREFIX+"replace <order_id> <amount>", value="Replace account from shoppy stock", inline=False)
    await ctx.send(embed=embed)

@client.command(name="verify")
async def verify(ctx, order_id):
    user = ctx.message.author
    order_information = get_order_information(order_id)
    if "status" in order_information and order_information["status"] is False:
        embed = discord.Embed(title="Order not found",
                              description="This order was not found",
                              color=discord.Color.red())
        await ctx.send(embed=embed)
        await ctx.message.delete()
        return
    order_information = order_information["data"]["order"]
    if order_information["status"] != 1:
        embed = discord.Embed(title="Order not confirmed",
                              description="This order is not confirmed yet. Please try again later",
                              color=discord.Color.orange())
        await ctx.send(embed=embed)
        await ctx.message.delete()
        return
    await user.add_roles(discord.utils.get(ctx.message.guild.roles, id=CUSTOMER_ROLE))
    embed = discord.Embed(title="Success", description="You should have received the customer role now!",
                          color=discord.Color.green())
    await ctx.send(embed=embed)
    await ctx.message.delete()

@client.command(name="checkorder")
async def checkorder(ctx, order_id):
    if not has_permissions(ctx):
        embed = discord.Embed(title="No permission",
                              description="You don't have the permissions to execute this command",
                              color=discord.Color.red())
        await ctx.send(embed=embed)
        return
    order_information = get_order_information(order_id)
    if "status" in order_information and order_information["status"] == 404:
        embed = discord.Embed(title="Order not found",
                              description="This order was not found",
                              color=discord.Color.red())
        await ctx.send(embed=embed)
        return
    order_information = order_information["data"]["order"]
    embed = discord.Embed(title="Order information", description="Order ID: "+order_information["uniqid"], color=discord.Color.purple())
    embed.add_field(name="Email", value=order_information["customer_email"], inline=False)
    embed.add_field(name="Product Name", value=order_information["product_title"], inline=False)
    embed.add_field(name="Price", value=str(order_information["total_display"])+str(order_information["currency"]), inline=False)
    embed.add_field(name="Created at", value=order_information["created_at"], inline=False)
    embed.add_field(name="Gateway", value=order_information["gateway"], inline=False)
    embed.add_field(name="Quantity", value=order_information["quantity"], inline=False)
    if order_information["status"] == 1:
        status = "Completed"
    elif order_information["status"] == 2:
        status = "Cancelled"
    elif order_information["status"] == 3:
        status = "Waiting for confirmation"
    elif order_information["status"] == 4:
        status = "Partial Payment"
    else:
        status = "Pending"
    embed.add_field(name="Status", value=status, inline=False)
    if order_information["crypto_address"]:
        embed.add_field(name="Crypto Address", value=order_information["crypto_address"], inline=False)
    await ctx.send(embed=embed)
    embed = discord.Embed(title="Delivered Goods", description="Order ID: "+order_information["uniqid"], color=discord.Color.purple())
    count = 0
    for account in order_information["serials"]:
        if count % 25 == 0 and count / 25 != 0:
            await ctx.send(embed=embed)
            embed = discord.Embed(title="Delivered Goods", description="Page " + str(round(count / 25) + 1),
                                  color=discord.Color.blue())
        embed.add_field(name="`" + str(count) + "`", value=str(account), inline=False)
        count = count + 1
    await ctx.send(embed=embed)

@client.command(name="stock")
async def stock(ctx):
    embed = discord.Embed(title="Stock", color=discord.Color.purple())
    count = 0
    for product in get_products():
        if count % 25 == 0 and count / 25 != 0:
            await ctx.send(embed=embed)
            embed = discord.Embed(title="Stock", description="Page " + str(round(count / 25) + 1),
                                  color=discord.Color.green())
        if product["stock"] == -1:
            stock = "Service"
        else:
            stock = str(product["stock"])
        embed.add_field(name=product["title"], value=stock, inline=False)
    await ctx.send(embed=embed)

@client.command(name="replace")
async def replace(ctx, order_id, amount : int):
    if not has_permissions(ctx):
        embed = discord.Embed(title="No permission",
                              description="You don't have the permissions to execute this command",
                              color=discord.Color.red())
        await ctx.send(embed=embed)
        return
    order_information = get_order_information(order_id)
    if "status" in order_information and order_information["status"] == 404:
        embed = discord.Embed(title="Order not found",
                              description="This order was not found",
                              color=discord.Color.red())
        await ctx.send(embed=embed)
        return
    order_information = order_information["data"]["order"]
    product_info = order_information["product"]
    replacement =[]
    stock = product_info["serials"]
    new_stock = []
    count = 0
    for i in range(len(stock)):
        if count < amount:
            replacement.append(stock[i])
        else:
            new_stock.append(stock[i])
        count = count+1
    data = {
        "title": product_info["title"],
        "price": product_info["price"],
        "type": product_info["type"],
        "currency": product_info["currency"],
        "serials": new_stock
    }
    up_header = {
        'Authorization': 'Bearer '+API_KEY,
        'Accept': 'application/json',
        'Content-Type': 'application/json',
        'User-Agent': 'Sellix-Bot'
    }
    r = requests.put("https://dev.sellix.io/v1/products/"+product_info["uniqid"], json=data, headers=up_header,
                      verify=False)
    embed = discord.Embed(title="Replaced Order", description="Amount: "+str(amount), color=discord.Color.green())
    embed_c = 0
    for account in replacement:
        if embed_c % 25 == 0 and embed_c / 25 != 0:
            await ctx.send(embed=embed)
            embed = discord.Embed(title="Delivered Goods", description="Page " + str(round(embed_c / 25) + 1),
                                  color=discord.Color.blue())
        embed.add_field(name="Replaced Account", value=str(account), inline=False)
        embed_c = embed_c + 1
    await ctx.send(embed=embed)

@client.event
async def on_ready():
    printBanner()
    print("=> Command Prefix is " + PREFIX)
    print('=> Logged in as {0.user}'.format(client))
    game = discord.Game(name=PREFIX+"help")
    await client.change_presence(status=discord.Status.online, activity=game)
    set_default()
    update.start()

# Helper Functions
def printBanner():
    print("-------------------------------------------")
    print("SELLIX BOT")
    print("-------------------------------------------")
    print("=> Started Sellix Bot by Nergon#4972")

def set_default():
    global stock_list
    for product in get_products():
        stock_list[product["uniqid"]] = int(product["stock"])

def has_permissions(ctx):
    for role_id in ROLES:
        role = discord.utils.get(ctx.guild.roles, id=role_id)
        if role in ctx.author.roles:
            return True
    return False

def get_order_information(order_id):
    r = requests.get(url="https://dev.sellix.io/v1/orders/"+order_id, headers=header, verify=False)
    return json.loads(r.text)

def get_products():
    r = requests.get(url="https://dev.sellix.io/v1/products", headers=header, verify=False)
    return json.loads(r.text)["data"]["products"]

client.run(TOKEN)

Damn this is an epic release




#32691013 ⭐ ​​​​​[ HOY ] == YOUTUBER VIDEO TEMPLATES ⭐

Posted by sKage on 24 February 2021 - 05:06 PM in Graphic Resources

Do you have YouTube channel? This After Effects YouTube Subscribe Reminder template is required for you. Your visitors will not forget to subscribe and with a notified reminder, they will know about the new outgoing videos by you. It`s will increase traffic for you.

This YouTube Promotion method save your time and YouTube Channel promo gonna be easiest. You can concentrate your attention on advertising more. Corporate design of this item gives you many ways to use this AE template for achieving your goals in traffic battle.

  •     30 overlays, 5 youtube end card and 70 lower thirds available
  •     Very easy to use
  •     No plugins required
  •     Full HD resolutions
  •     After Effects CS5, CS5.5, CS6, CC, CC2015 &#38; CC2017, CC2018, CC2020
  •     Well organized project
  •     Sounds is included

Perfect for: youtube elements, youtube overlays, youtube subscribe like and bell reminder, youtube like, youtube intro, outro, end cards, end card, subscribers, follow, subscribed, viewers, template, youtube end screen, template, opener, ending, end menu, into, id, intro game, open, package, promotion, pack, ad, animation, add, advert, show, subscriber, design package, download, for companies, game, gamer, gaming, logo, like, lower third, latest videos, video, views, banner, button, branding, broadcast, network, marketing, vlogger, blogger, youtube subscribe buttons

 

Link Website :https://elements.env...outuber-VYHCEVD

Appreciate this leak, thanks!




#32690970 Latest After Effects Templates/Scripts FREE -- VideoHive And More

Posted by sKage on 24 February 2021 - 05:03 PM in Tutorials, Guides, Ebooks, etc.

 

Third Post Here Bois !! , so i was using this site to get latest expensive AE templates like motion graphics/motion design/ promo's/ transitions / Scripts And much much more!!

 

All i ask is a Like/+REP/Nice Comment .....

 

And please use this only to learn, support the original creators, they deserve it :)

 

 

 

 

Old but needed this asap, thanks




#32687308 Help with verifying my PayPal transaction

Posted by sKage on 24 February 2021 - 11:46 AM in Social Engineering

Not sure if this is what you're talking about but just splice a video to the edited version??

Would be hard for op if he doesn't know how to edit, either way I'm sure PayPal isn't that stupid.. 

 

Add me on Discord if you still require this, could get it done for you




#32678179 NOT WORKING ANYMORE

Posted by sKage on 23 February 2021 - 09:02 PM in Tutorials, Guides, Ebooks, etc.

 

Be sweet and reply with something cute

Show some love & don't just leech it

LEECHERS GET REPORTED & BANNED

 

Expecting to be trolled but lets see




#32678077 [HQ] 2-step method, custom emails

Posted by sKage on 23 February 2021 - 08:55 PM in Tutorials, Guides, Ebooks, etc.

Doesn't require much work other than you choosing your name & signing up, the provided email domains are quite cool too..

 

Hidden Content
You'll be able to see the hidden content once you reply to this topic or upgrade your account.

 

Make sure to leave some love, any one leeching will be reported...




#32677651 [PRIVATE] WANNA START SELLING FOR $1.000 WEEKLY? 3000 EBAY ACCOUNTS

Posted by sKage on 23 February 2021 - 08:23 PM in Accounts

 

Be sweet and reply with something cute

Show some love & don't just leech it

LEECHERS GET REPORTED & BANNED

 

Damn, seems like an awesome share.. Thanks!

 

Edit: Tried a few, didn't quite work, good luck to anyone else who tries them 




#32677636 [HQ] 250 aged Discord accounts with unique tags!

Posted by sKage on 23 February 2021 - 08:22 PM in Accounts

Worked really well, thank you. 

Glad to hear that!




#32677548 x88 Erbert & Gerberts | Giftcards w/ Balance

Posted by sKage on 23 February 2021 - 08:16 PM in Accounts

 

you leech = banned

 

First time hearing about them, appreciate you sharing this!




#32677525 [HQ] 250 aged Discord accounts with unique tags!

Posted by sKage on 23 February 2021 - 08:14 PM in Accounts

Accounts are dated back to at least 15/01/2020 - 21/09/2020, every account comes with a unique tag without the need for nitro..
 

Hidden Content
You'll be able to see the hidden content once you reply to this topic or upgrade your account.


I don't care what you do with the accounts but make sure not to leech otherwise I won't drop more, if you would like to purchase or request a certain tag, add me on Discord: Kage#7788, they're extremely cheap!

Leech = clown