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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
<?xml version="1.0"?> | |
<methodCall><methodName>system.multicall</methodName><params> | |
<param><value><array><data> | |
<value><struct> | |
<member><name>methodName</name><value><string>wp.getCategories</string></value></member> | |
<member><name>params</name><value><array><data> | |
<value><string>admin</string></value> | |
<value><string>password</string></value> | |
</data></array></value></member> | |
</struct></value> |
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
NAME="Payload" | |
# Setup | |
mkdir build | |
cd build | |
echo "Main-Class: $NAME" > payload.txt | |
jar cmf payload.txt payload.jar | |
# Icon | |
curl --remote-name https://developer.apple.com/library/mac/documentation/UserExperience/Conceptual/OSXHIGuidelines/Art/QuickTimePlayerX_2x.png |
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 http://img1.ndsstatic.com/wallpapers/1e22e5d5fd4d733b6601f17da1928ba3_large.jpeg -O /tmp/bg.jpeg | |
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/tmp/bg.jpeg"' |
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
LED SETUP | |
DRIVER_LABEL='BashBunny' | |
GET SWITCH_POSITION | |
MAC_HAPPY ATTACKMODE HID STORAGE | |
LED ATTACK | |
Q DELAY 1000 |
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
:root { | |
/* Modify these to change your theme colors: */ | |
--primary: #61AFEF; | |
--text: #ABB2BF; | |
--background: #282C34; | |
--background-elevated: #3B4048; | |
/* These should be less important: */ | |
--background-hover: lighten(#3B4048, 10%); | |
--background-light: #AAA; |
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 requests | |
import json | |
import random | |
import string | |
import sys | |
import re | |
session = requests.Session() | |
session.headers.update({'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:59.0)'}) |
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 | |
headers=$(curl -s -I -L "https://"$1) | |
echo "$headers" | |
declare -a checks=( | |
'Strict-Transport-Security' | |
'X-Frame-Options' | |
'X-XSS-Protection' | |
'X-Content-Type-Options' |
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
const HCCrawler = require('headless-chrome-crawler'); | |
const url = require('url'); | |
const args = process.argv.slice(2); | |
var requests = []; | |
if(args[0] === undefined || args[1] === undefined){ | |
console.log('node crawler.js <url> <depth>'); | |
process.exit(); | |
} |
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
# Install gr-gsm | |
sudo apt-get update && \ | |
sudo apt-get install -y \ | |
cmake \ | |
autoconf \ | |
libtool \ | |
pkg-config \ | |
build-essential \ | |
python-docutils \ | |
libcppunit-dev \ |
OlderNewer