https://www.youtube.com/playlist?list=PLKK11Ligqitg9MOX3-0tFT1Rmh3uJp7kA
IDA Plugins | Preferred | Neutral | Unreviewed |
---|
Environment Variable | Path |
---|---|
%ALLUSERSPROFILE% |
C:\Documents and Settings\All Users |
%APPDATA% |
C:\Documents and Settings{username}\Application Data |
%COMMONPROGRAMFILES% |
C:\Program Files\Common Files |
%COMMONPROGRAMFILES(x86)% |
C:\Program Files (x86)\Common Files |
This file contains hidden or 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 | |
import json | |
import os, os.path | |
DEFAULT_PROFILE_NAME = "default.2m2" | |
SESSION_PATH = "Library/Application Support/Firefox/Profiles/%s/sessionstore.js" | |
# TODO consider generalizing the session store to open (different users, different profiles) | |
def session_path(): | |
return os.path.join(os.environ['HOME'],SESSION_PATH % DEFAULT_PROFILE_NAME) |
This file contains hidden or 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
# AWS EC2 | |
# Remove Apache and PHP old version | |
# Install Apache 2.4, Mod_SSL and PHP 5.6 | |
# | |
sudo service httpd stop | |
sudo yum erase httpd httpd-tools apr apr-util | |
sudo yum remove php-* | |
sudo yum install php56 | |
sudo yum install php56-xml php56-xmlrpc php56-soap php56-gd php56-mbstring | |
sudo yum install php56-mysqlnd |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of