Skip to content

Instantly share code, notes, and snippets.

View JustHumanz's full-sized avatar
🐧
Hey there i am using github

Aldin Setiawan JustHumanz

🐧
Hey there i am using github
View GitHub Profile
@JustHumanz
JustHumanz / kano.sh
Last active November 28, 2022 14:35
kano ascii
RED='\033[0;31m'
NC='\033[0m'
printf " ------------\n"
printf " ----- -----\n"
printf " --- ---\n"
printf " --- - - ---\n"
printf " -- -- -- --\n"
printf " -- ---- -m m- ---- --\n"
printf " -- mmmmmm- -m- -m- -mmmmmm --\n"
printf " - -mmmmmmm--m- -m--mmmmmmm- -\n"
apiVersion: postgres-operator.crunchydata.com/v1beta1
kind: PostgresCluster
metadata:
name: hippo
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
postgresVersion: 13
instances:
- name: instance1
dataVolumeClaimSpec:
@JustHumanz
JustHumanz / cloud_metadata.txt
Created November 7, 2021 22:49 — forked from BuffaloWill/cloud_metadata.txt
Cloud Metadata Dictionary useful for SSRF Testing
## IPv6 Tests
http://[::ffff:169.254.169.254]
http://[0:0:0:0:0:ffff:169.254.169.254]
## AWS
# Amazon Web Services (No Header Required)
# from http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html#instancedata-data-categories
http://169.254.169.254/latest/meta-data/iam/security-credentials/dummy
http://169.254.169.254/latest/user-data
http://169.254.169.254/latest/user-data/iam/security-credentials/[ROLE NAME]
*良識の範囲で使う。例えば、関連する市場も同時に表示するとか
追記:市場は終了…https://blog.nicovideo.jp/seiga/2019/12/post-1285.html
# 静画API
静画, コメント, タグ, 市場
マンガ, コメント, タグ, 市場(旧テーマ?お題)
自分のNGリスト取得
マイリスト取得?不明
ランキング
@JustHumanz
JustHumanz / Benshin.py
Last active March 18, 2021 14:12
Benshin impact bruteforce
"""
#How to use
Create password worldlist and rename it to pass.txt
python benshin.py --email {Target email}
if you want use Proxy you can add --proxy,like this
python benshin.py --email csacasc@gmail.com --proxy http://localhost:1337
DO AT YOUR OWN RISK
@JustHumanz
JustHumanz / nginx-403-forbidden-error-hosting-in-user-home-directory.md
Created February 25, 2021 04:59 — forked from jhjguxin/nginx-403-forbidden-error-hosting-in-user-home-directory.md
nginx 403 forbidden error when server static file under user home directory
@JustHumanz
JustHumanz / main.py
Last active January 8, 2021 08:23
Nhentai checker
import requests,xmltodict,re,schedule,time
from discord_webhook import DiscordWebhook, DiscordEmbed
URL = "https://rsshub.app/nhentai/search/parody%3Afate-grand-order"
def Find(string):
regex = r"(?i)\b((?:https?://|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'\".,<>?«»“”‘’]))"
url = re.findall(regex,string)
return [x[0] for x in url]
@JustHumanz
JustHumanz / Common Log Format
Last active December 10, 2020 15:40
traefik access log example
time="2020-12-10T14:45:15Z" level=info msg="Configuration loaded from flags."
172.24.0.1 - - [10/Dec/2020:14:45:28 +0000] "GET /sqli/example1.php?name=root HTTP/1.1" 200 654 "-" "-" 4616 "lab_pentest@docker" "http://172.24.0.2:80" 2ms
172.24.0.1 - - [10/Dec/2020:14:45:36 +0000] "GET /sqli/example1.php?name=root HTTP/1.1" 200 654 "-" "-" 4617 "lab_pentest@docker" "http://172.24.0.2:80" 3ms
172.24.0.1 - - [10/Dec/2020:14:45:36 +0000] "GET /sqli/example1.php?name=root&yrWB=6515%20AND%201%3D1%20UNION%20ALL%20SELECT%201%2CNULL%2C%27%3Cscript%3Ealert%28%22XSS%22%29%3C%2Fscript%3E%27%2Ctable_name%20FROM%20information_schema.tables%20WHERE%202%3E1--%2F%2A%2A%2F%3B%20EXEC%20xp_cmdshell%28%27cat%20..%2F..%2F..%2Fetc%2Fpasswd%27%29%23 HTTP/1.1" 200 654 "-" "-" 4618 "lab_pentest@docker" "http://172.24.0.2:80" 2ms
172.24.0.1 - - [10/Dec/2020:14:45:36 +0000] "GET /sqli/example1.php?name=root HTTP/1.1" 200 654 "-" "-" 4619 "lab_pentest@docker" "http://172.24.0.2:80" 2ms
172.24.0.1 - - [10/Dec/2020:14:45:36 +0000] "GET /sqli
@JustHumanz
JustHumanz / scrape.js
Created March 5, 2020 07:11 — forked from davglass/scrape.js
Pull images from twitter based on a hashtag and save them locally.
#!/usr/bin/env node
/*
This is a total hack, just needed to grab all the photos from twitter
so that we could import them into our Flickr group..
*/
const fs = require('fs');
const config = require('./config.json');
const Twitter = require('twitter');
const parse = require('querystring').parse;
const client = new Twitter({
@JustHumanz
JustHumanz / mux.py
Created January 7, 2020 13:29 — forked from lc-at/mux.py
pymux: run multiple services in one port (connection multiplexer)
import select
import socket
import socketserver
__author__ = 'loncat <me@lcat.dev>'
services = [
{
'name': 'ssh',
'address': ('127.0.0.1', 22),