Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
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
export DEBIAN_FRONTEND=noninteractive | |
# update repository | |
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
echo 'deb https://apt.dockerproject.org/repo ubuntu-trusty main' > /etc/apt/sources.list.d/docker.list | |
apt-get update | |
apt-get upgrade -y | |
apt-get autoremove --purge -y | |
apt-get purge -y lxc-docker |
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
using namespace System.Collections.Generic | |
# Encapsulate an arbitrary command | |
class PaneCommand { | |
[string]$Command | |
PaneCommand() { | |
$this.Command = ""; | |
} |
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
---------------------------------------------- | |
#TOR CONFIGURATION: | |
# transparent tor: | |
#TransPort 9040 | |
#TransListenAddress 10.0.0.1 | |
#DNSPort 53 | |
#DNSListenAddress 10.0.0.1 | |
----------------------------------------------- |
iptables -A OUTPUT -p icmp -j REJECT
iptables -t nat -A OUTPUT ! -o lo -p tcp -m owner --uid-owner $USER -m tcp -j REDIRECT --to-ports 9040
iptables -t nat -A OUTPUT ! -o lo -p udp -m owner --uid-owner $USER -m udp --dport 53 -j REDIRECT --to-ports 53
iptables -t filter -A OUTPUT -p tcp -m owner --uid-owner $USER -m tcp --dport 9040 -j ACCEPT
iptables -t filter -A OUTPUT -p udp -m owner --uid-owner $USER -m udp --dport 53 -j ACCEPT
iptables -t filter -A OUTPUT ! -o lo -m owner --uid-owner $USER -j DROP
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
# Deploy Windows Server 2008 or higher in vCenter | |
#### USER DEFINED VARIABLES ############################################################################################ | |
$Domain = "" #AD Domain to join | |
$vCenterInstance = "" #vCenter to deploy VM | |
$Cluster = "" #vCenter cluster to deploy VM | |
$VMTemplate = "" #vCenter template to deploy VM | |
$CustomSpec = "" #vCenter customization to use for VM | |
$Location = "" #Folderlocation in vCenter for VM | |
$DataStore = "" #Datastore in vCenter to use for VM |
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
Security Onion | |
Aug 2014: | |
... my purpose for installing this was to: | |
- learn more about security stuff | |
- steal the packet captures (pcap) provided so I can replay them using tcpreplay for snort testing, | |
as it's not so sexy to just test using ICMP ping data or local rules that match anything | |
see: | |
http://blog.securityonion.net/ |
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
echo "Connecting to 192.168.1.100" | |
$Server="192.168.1.100" | |
$User="Administrator" | |
$Password="AdminPassword" | |
cmdkey /generic:TERMSRV/$Server /user:$User /pass:$Password | |
mstsc /v:$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
{ | |
"_id": "generic_theme", | |
"name": "Rocket.Chat Theme", | |
"description": "An overview of the theming JSON for Rocket.Chat.", | |
"variables": { | |
"main": { | |
"error": "#CC243A", | |
"error-light": "#A6303F", | |
"alert": "#E8BE19", | |
"alert-light": "#CEAB20", |
NewerOlder