This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-> apktool disassembling , modifying the apk files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
pwn'ing websites with .git repositories available https://github.com/internetwache/GitTools
simple script to extract all web resources by means of .SVN folder exposed over network. https://github.com/anantshri/svn-extractor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.ahem.email | |
https://www.mailinator.com | |
https://www.throwawaymail.com | |
https://temp-mail.org | |
http://www.yopmail.com/en/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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++ )); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder