Skip to content

Instantly share code, notes, and snippets.

View lexavey's full-sized avatar
⚠️
This account is no longer maintained

Lexa Vey lexavey

⚠️
This account is no longer maintained
  • Free
  • Zimbabwe
View GitHub Profile
@lexavey
lexavey / indosat.txt
Created September 16, 2022 04:44
Subdomain Operator
https://adfs2.indosatooredoo.com
http://adfs2.indosatooredoo.com
http://admin.incloud.indosatooredoo.com
https://admin.incloud.indosatooredoo.com
http://ads.indosatooredoo.com
https://ads.indosatooredoo.com
https://amqp.incloud.indosatooredoo.com
http://amqp.incloud.indosatooredoo.com
https://api-careers.indosatooredoo.com
http://api-careers.indosatooredoo.com
@lexavey
lexavey / check.py
Last active September 16, 2022 04:53
Python Check HTTP Status
import requests,ssl,re
import warnings
from multiprocessing.dummy import Pool #multi thread
warnings.filterwarnings("ignore", category=DeprecationWarning)
@lexavey
lexavey / pip.txt
Last active September 25, 2022 06:59
generate requirements.txt python
For python3: (I have both python 2 and 3 on my machine, where python2 is the default)
# install
pip3 install pipreqs
# Run in current directory
python3 -m pipreqs.pipreqs .
python2:
pip install pipreqs
https://archive.org/download/crimeflare/cloudflare_0.txt
https://archive.org/download/crimeflare/cloudflare_1.txt
https://archive.org/download/crimeflare/cloudflare_2.txt
https://archive.org/download/crimeflare/cloudflare_3.txt
https://archive.org/download/crimeflare/cloudflare_4.txt
https://archive.org/download/crimeflare/cloudflare_5.txt
https://archive.org/download/crimeflare/cloudflare_6.txt
https://archive.org/download/crimeflare/cloudflare_7.txt
https://archive.org/download/crimeflare/cloudflare_8.txt
https://archive.org/download/crimeflare/cloudflare_9.txt
directory="./"
save_dir="./SAVED"
##Scan and merge
find "$directory" -type f -name "*.tmp" -print0 | while read -d $'\0' file
do
named="SortYearMonthDate"
filename=$(basename "$file")
year=$(echo "$filename"|cut -d "-" -f 1)
month=$(echo "$filename"|cut -d "-" -f 2)
@lexavey
lexavey / scan.sh
Created September 26, 2022 08:41
Check HTTP Status
down_par(){
while ! command -v ./parallel &> /dev/null
do
# printf "\rDownloading Parallel"
wget -q http://git.savannah.gnu.org/cgit/parallel.git/plain/src/parallel -O parallel
chmod 755 parallel
printf "will cite" | ./parallel --citation &> /dev/null
done
}
fast_search(){
@lexavey
lexavey / termux
Created September 30, 2022 14:43 — forked from rewida17/termux
Run termux env via eg adb shell
#!/system/xbin/bash
#Based on https://github.com/termux/termux-app/issues/77
export PREFIX='/data/data/com.termux/files/usr'
export HOME='/data/data/com.termux/files/home'
export LD_LIBRARY_PATH='/data/data/com.termux/files/usr/lib'
export PATH="/data/data/com.termux/files/usr/bin:/data/data/com.termux/files/usr/bin/applets:$PATH"
export LANG='en_US.UTF-8'
export SHELL='/data/data/com.termux/files/usr/bin/bash'
export BIN='/data/data/com.termux/files/usr/bin'
export TERM=vt220
@lexavey
lexavey / quiz.js
Created October 16, 2022 14:37
ngecheat xixixi
var obj = Object.entries(document.getElementsByTagName('iframe')[0].contentWindow.H5PIntegration.contents)
var obj = obj[0][1]['jsonContent']
parsejson = JSON.parse(obj)
for (var k in parsejson['questions']) {
console.log("=====================================================================")
console.log("SOAL : " + parsejson['questions'][k]['params']['question'])
for (var a in parsejson['questions'][k]['params']['answers']) {
if (parsejson['questions'][k]['params']['answers'][a]['correct']) {
console.log("JAWABAN : " + parsejson['questions'][k]['params']['answers'][a]['text'])
}
@lexavey
lexavey / install.sh
Created October 18, 2022 04:09
Install latest cURL in linux
## First, download newest curl package from here https://curl.haxx.se/download.html
apt remove curl
apt autoremove
apt-get install gcc make -y
wget https://curl.se/download/curl-7.85.0.tar.gz
tar xzvf curl-7.85.0.tar.gz
cd curl-7.85.0
./configure
## if you facing error, try configure with openssl
@lexavey
lexavey / c9.sh
Last active November 14, 2022 10:01
Install and configure Cloud9IDE in Ubuntu Server
## update and install all depencies
sudo apt-get update && sudo apt-get -y install curl git build-essential && sudo dpkg --configure -a
## if something error happen, try upgrade (sudo apt upgrade)
## Install Python2.7
sudo apt install python2.7 -y
## add c9 users and skip password
adduser --disabled-password --gecos "" c9user