Skip to content

Instantly share code, notes, and snippets.

View ShashankKumarSaxena's full-sized avatar
🎯
Stuck in shells ~#

Shashank Saxena ShashankKumarSaxena

🎯
Stuck in shells ~#
View GitHub Profile
@ShashankKumarSaxena
ShashankKumarSaxena / invoke-shellcode.ps1
Created April 27, 2024 10:05 — forked from xpn/invoke-shellcode.ps1
Calls invoke-shellcode.ps1 upon load with a reverse meterpreter shell, and connects to meterpreter.local on port 443
function Invoke-Shellcode
{
<#
.SYNOPSIS
Inject shellcode into the process ID of your choosing or within the context of the running PowerShell process.
PowerSploit Function: Invoke-Shellcode
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
@ShashankKumarSaxena
ShashankKumarSaxena / Miत्रों Privacy Policy.md
Created April 7, 2022 06:20
Miत्रों Privacy Policy

Miत्रों Privacy Policy

By using Miत्रों you agree with its privacy policy.

1. What data do we store?

  1. guild_id: We store guild_id for bot funtionality and features.
  2. user_id: We store user_id to use it to maintain user based records.

2. Where does you store your data?

We store your data on our VPS (Virtual Private Server) on PostgreSQL to store all the bot's data.

@ShashankKumarSaxena
ShashankKumarSaxena / Miत्रोंToS.md
Created April 7, 2022 06:16
Miत्रों Terms of Service

Accepting These Terms

Thanks for using Miत्रों! These Terms of Service ("Terms", "ToS") are a legal agreement between Miत्रों Bot ("we", "us", the "Company") and you ("you" or "your"). By inviting, using, or distributing Miत्रों, any source code, any binary associated with Miत्रों or its parts, or our website, collectively referred to as "Miत्रों" or the "Service" you agree if you are the age of majority in your jurisdiction or over, that you have read, understood, and accept to be bound by the Terms, and if you are below the age of majority in your jurisdiction, that your legal guardian has reviewed and agrees to these Terms.

At any time do we reserve the right to update these Terms with reasons including, but not limiting to adhering to new legal requirements, or improving your experience using Miत्रों. If the aforementioned changes affect your usage of Miत्रों or your legal rights, we will notify you no less than seven days before the changes take effect. Unless we state otherwise, your continued use o

@ShashankKumarSaxena
ShashankKumarSaxena / Pokedream-privacy-policy.md
Last active March 11, 2022 08:58
Pokedream Privacy Policy

Pokedream Privacy Policy

By using Pokedream you agree with its privacy policy.

1. What data do we store?

  1. guild_id: We store guild_id for bot funtionality and features.
  2. user_id: We store user_id to use it to maintain user based records.

2. Where does you store your data?

We store your data on our VPS (Virtual Private Server) on PostgreSQL to store all the bot's data.

@ShashankKumarSaxena
ShashankKumarSaxena / moderation.py
Last active January 13, 2021 08:20 — forked from jpanahon/moderation.py
An advanced moderation cog for the rewrite branch of discord.py
import discord
from discord.ext import commands
# This prevents staff members from being punished
class Sinner(commands.Converter):
async def convert(self, ctx, argument):
argument = await commands.MemberConverter().convert(ctx, argument) # gets a member object
permission = argument.guild_permissions.manage_messages # can change into any permission
if not permission: # checks if user has the permission
return argument # returns user object