Skip to content

Instantly share code, notes, and snippets.

View daffainfo's full-sized avatar
🌙
Learning

Muhammad Daffa daffainfo

🌙
Learning
View GitHub Profile
@daffainfo
daffainfo / all.txt
Created August 19, 2022 03:11 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@daffainfo
daffainfo / pixiv.sh
Created October 5, 2021 16:11
Pixiv image downloader
#!/bin/bash
ID=13612963
for i in `curl https://www.pixiv.net/ajax/user/$ID/profile/all --silent | sed 's/manga.*//' | grep -o -E "[0-9]{8}"`;
do for j in `curl https://www.pixiv.net/ajax/illust/${i}/pages --silent | jq -r '.body[0].urls.original'`;
do wget --header="Referer: https://pixiv.net" ${j};
done;
done