Skip to content

Instantly share code, notes, and snippets.

View gitnepal's full-sized avatar
:shipit:
always depressed in 0.0.0.0

Alphu gitnepal

:shipit:
always depressed in 0.0.0.0
  • medium.com/@admin.
  • Paradox 0.0.0.0
  • X @___0x00
View GitHub Profile
@gitnepal
gitnepal / passive-dns.md
Last active March 16, 2021 15:25
passive-dns collection sites
@gitnepal
gitnepal / tools
Created June 25, 2020 10:12
tools installed on linux
-> apktool disassembling , modifying the apk files
@gitnepal
gitnepal / ffmpeg-cheatsheet.txt
Last active April 22, 2020 08:02
ffmpeg- cheat
A list of mostly all of the ffmpeg commands that can be used in daily use for conversion, creating images, editing videos .
Compress a video
ffmpeg -i aabbcc.mov -vcodec libx265 -crf 24 output.mp4
Resize a video
-s: switch to resize a video.
ffmpeg -i input.mp4 -s 480x320 -c:a copy output.mp4
@gitnepal
gitnepal / tools.md
Created April 24, 2019 09:30
tools collection
@gitnepal
gitnepal / tempmail
Created April 22, 2019 11:21
temp email sites
https://www.ahem.email
https://www.mailinator.com
https://www.throwawaymail.com
https://temp-mail.org
http://www.yopmail.com/en/
@gitnepal
gitnepal / crack.md
Last active February 10, 2022 14:00
cracks

vmware fusion pro 11 / 11.0.2 working

7HYY8-Z8WWY-F1MAN-ECKNY-LUXYX
7GKYE-V2YPG-U1P5N-9YF58-2QERV
NVKPX-X69L7-F1PUW-2PP7Z-YFNAZ
UVUWZ-VDNPX-M1P71-6FN9J-XYNPZ
LZLXG-Z8CUE-51PCA-G4QJV-PPN9V
ZNKY8-98VPN-J1HC2-70YXZ-YK5RT
VNVQA-ZUEVZ-Y1YGX-CWPXZ-PYQEV
@gitnepal
gitnepal / referer.php
Last active March 29, 2019 07:37
php-custom-referrer.php | bypassing csrf protections
<?PHP
$desired_referer = "http://rootnep.al";
$site_z = "http://www.whatismyreferer.com/";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_REFERER, $desired_referer);
curl_setopt ($ch, CURLOPT_URL, $site_z);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec ($ch);
@gitnepal
gitnepal / http_codes_twitter.sh
Last active January 16, 2019 10:20
Bash script used to scan and distinguish dumped and brute sub domains | DEMO TWITTER
#!/bin/bash
for foo in $(cat twitterdomain) #demolist: https://hastebin.com/ahelalunan.css
do
http_code=$(curl $foo -w %'{http_code}' -o /dev/null -s)
if [[ $http_code -eq 000 ]];
then
echo -e "$http_code Subdomain not working $foo \n" | tee -a notworking.log
else
echo -e "$http_code Check it $foo \n" | tee -a working.log
fi
@gitnepal
gitnepal / asciigen.sh
Created December 23, 2018 10:06
Encoding Strings to charcode | Bash scripts
#!/bin/bash
if [ -z "$1" ]; then
echo "Enter Text"
exit 1
fi
#Run script as
#./asciigen.sh texthere | awk {'print $6'} | tr "\n" " "
#Usage if you want numbers only
foo=$1
for (( i=0; i<${#foo}; i++ ));
@gitnepal
gitnepal / desktop.sh
Created December 13, 2018 07:07
Switching Desktop Monitors Screens
#!/usr/bin/env bash
xrandr --auto --output HDMI-1-1 --mode 1920x1080 --left-of eDP-1-1
# run xrandr first see your monitor names and resolution, change above codes as your dependencies