Skip to content

Instantly share code, notes, and snippets.

View seqrity's full-sized avatar
👁️‍🗨️

Seqrity seqrity

👁️‍🗨️
View GitHub Profile
@seqrity
seqrity / CVE-2023-21939.md
Created August 12, 2024 23:37 — forked from win3zz/CVE-2023-21939.md
CVE-2023-21939 - Code Exec - Proof of Concept

CVE-2023-21939 - Code Exec - Proof of Concept

Vulnerability Summary: Vulnerability in the Oracle Java SE, Oracle GraalVM Enterprise Edition product of Oracle Java SE (component: Swing). Supported versions that are affected are Oracle Java SE: 8u361, 8u361-perf, 11.0.18, 17.0.6, 20; Oracle GraalVM Enterprise Edition: 20.3.9, 21.3.5 and 22.3.1. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise Oracle Java SE, Oracle GraalVM Enterprise Edition. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Oracle Java SE, Oracle GraalVM Enterprise Edition accessible data. Note: This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets, that load and run untrusted code (e.g., code that comes from the internet) and rely on the Java sandbox for security. This vulnerability can also be exploited by using APIs in the specifie

@seqrity
seqrity / ffuf_urls
Created September 19, 2022 18:35
A simple script for fuzzing URL list by ffuf
#!/bin/bash
mkdir -p out
for line in $(cat urls.txt)
do
DOMAIN=$(echo $line | tr : _ | tr -d //)
ffuf -u $line/FUZZ -w dir_wl.txt -D -e php,aspx,jsp,html,js,txt,bak,zip,json,conf,log,git -t 100 -mc 200 -r -o out/$DOMAIN
done
@seqrity
seqrity / wordlist_from_js.sh
Last active March 5, 2023 06:35
Make wordlist from js files
#! /bin/bash
## This script fetch js files from a domain name and make a wordlist by words in js files
## Credit: https://gist.github.com/aufzayed/6cabed910c081cc2f2186cd27b80f687
##### Install requirements #####
##### Before running this script you should install Go #####
## Install subjs (https://github.com/lc/subjs)
GO111MODULE=on go get -u -v github.com/lc/subjs