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/sh | |
# Uncomment this is you want some more verbose output to see what is happening | |
#set -x | |
## Variables | |
# Change this directory name if you want to place these somewhere else | |
_projectdir=~/projects | |
_gitrepo=https://github.com/mkubecek/vmware-host-modules.git | |
if [ $(grep -q "workstation.product.version" /etc/vmware/config;echo $?) -eq 0 ];then |
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 | |
# | |
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
# | |
# | |
WP_OWNER=nginx # <-- wordpress owner ( for default : nginx ) | |
WP_GROUP=nginx # <-- wordpress group ( for default : nginx ) | |
WP_ROOT= /../././ # <-- wordpress root directory | |
WS_GROUP=nginx # <-- webserver group ( for default : nginx ) |
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
console.log("[*] SSL Pinning Bypasses"); | |
console.log(`[*] Your frida version: ${Frida.version}`); | |
console.log(`[*] Your script runtime: ${Script.runtime}`); | |
/** | |
* by incogbyte | |
* Common functions | |
* thx apkunpacker, NVISOsecurity, TheDauntless | |
* Remember that sslpinning can be custom, and sometimes u need to reversing using ghidra,IDA or something like that. | |
* !!! THIS SCRIPT IS NOT A SILVER BULLET !! |
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
import os | |
import shutil | |
import sqlite3 | |
import sys | |
from datetime import datetime, timedelta | |
import argparse | |
import warnings | |
parser = argparse.ArgumentParser(description="This script allows you to query for urls in a 'History' file of the Chrome browser", | |
formatter_class=argparse.ArgumentDefaultsHelpFormatter) |