Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

import React, { useState, useEffect } from 'react' | |
import styled from 'styled-components' | |
import { useCanvas } from 'utils/hooks' | |
import debounce from 'lodash/debounce' | |
export default function Glow() { | |
const [ref, setRef] = useState<HTMLCanvasElement | null>(null) | |
const [boxes, setBoxes] = useState<Box[]>([]) | |
const [ctx, width, height] = useCanvas(ref) | |
const moving = useMouseMoving() |
/* | |
Copy this into the console of any web page that is interactive and doesn't | |
do hard reloads. You will hear your DOM changes as different pitches of | |
audio. | |
I have found this interesting for debugging, but also fun to hear web pages | |
render like UIs do in movies. | |
*/ | |
const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
# in /etc/systemd/system | |
[Unit] | |
Description=Bluetooth Agent | |
[Service] | |
ExecStart=/usr/bin/bt-agent -c NoInputNoOutput | |
Type=simple | |
[Install] | |
WantedBy=multi-user.target |
THE LOW-DOWN ON LOADALL: | |
EXCERPTS FROM THE BOOK | |
THE HYPER-SPACE NAVIGATOR'S GUIDE | |
by | |
Terrance E. Hodgins | |
copyright (C) 1990 by Terrance E. Hodgins, | |
All rights reserved. |
FLICKS TO WATCH | |
--------------- | |
* = possibly seen a long time ago, but completely forgotten about | |
10 Cloverfield Lane | |
Adaptation | |
Americathon | |
Amélie | |
Blues Brothers | |
Brain Candy - Kids in the Hall * |
Also see the original Pieter Noordhuis's guide
You need:
# use ImageMagick convert | |
# the order is important. the density argument applies to input.pdf and resize and rotate to output.pdf | |
convert -density 90 input.pdf -rotate 0.5 -attenuate 0.2 +noise Multiplicative -colorspace Gray output.pdf |
GitHub repositories can disclose all sorts of potentially valuable information for bug bounty hunters. The targets do not always have to be open source for there to be issues. Organization members and their open source projects can sometimes accidentally expose information that could be used against the target company. in this article I will give you a brief overview that should help you get started targeting GitHub repositories for vulnerabilities and for general recon.
You can just do your research on github.com, but I would suggest cloning all the target's repositories so that you can run your tests locally. I would highly recommend @mazen160's GitHubCloner. Just run the script and you should be good to go.
$ python githubcloner.py --org organization -o /tmp/output
SECURITY BULLETIN AND UPDATES HERE: https://technet.microsoft.com/en-us/library/security/ms17-010.aspx