Reset-ComputerMachinePassword [-Credential ] [-Server ]
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
wget -A pdf -m -p -E -k -K -np http://site/path/ | |
-nd flag will download to a single directory | |
https://www.gnu.org/software/wget/manual/wget.html |
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
defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app | |
defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app |
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
cat ~/.ssh/id_rsa.pub | ssh [email protected] "umask 077; mkdir -p .ssh ; cat >> .ssh/authorized_keys" |
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
# Updating from an Internal Software Update Server | |
# ------------------------------------------------ | |
# Default Settings: | |
# blank | |
# Software updates are downloaded from one of the following software update | |
# servers hosted by Apple: | |
# swscan.apple.com:80 | |
# swquery.apple.com:80 | |
# swcdn.apple.com:80 | |
# Suggested Settings: |
- open /etc/master.password
- generate password hash Example perl -e "print crypt($password,$salt);"
- change the hash for the desired user
- success \o/
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 python | |
# Mysshkey | |
# Version 0.0.3 | |
# Bill Scheel <[email protected]> | |
# January 1, 2007 | |
# Released under the GPL License- http://www.fsf.org/licensing/licenses/gpl.txt | |
# | |
import sys, string, glob, os, re, exceptions, traceback, pxssh, pexpect, getpass | |
# System Functions Do Not Touch |
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
# | |
### Calomel.org Squid squid.conf | |
# | |
########### squid.conf ########### | |
# | |
## interface, port and proxy type | |
#http_port 10.10.10.1:8080 transparent | |
http_port 10.10.10.1:8080 | |
## general options |
First commit any outstanding code changes, and then, run this command:
git rm -r --cached
This removes everything from theindex, then just run:
git add
Commit it:
- Android SDK
- sqlite3
- drozer - "Comprehensive security and attack framework for Android."
- apktool - "A tool for reverse engineering Android apk files"
- dex2jar - "Tools to work with android .dex and java .class files"
- bytecode viewer - A Java reverse engineering suite
OlderNewer