# Configuration | |
MAKEFLAGS += -j8 | |
DOT_OPTIONS:=-Nfontname=arial -Efontname=arial -Gfontname=arial | |
MMD_OPTIONS:=-w 2000 -b transparent --cssFile ./mermaid_png.css --configFile ./mermaid_config.json | |
# Get all diagram files | |
MERMAID_FILES:=$(shell find . -name "*.mmd" -type f -not -path '*/build/*') | |
DOT_FILES:=$(shell find . -name "*.dot" -type f -not -path '*/build/*') | |
# Files that should be generated |
Twitter ID | Screen name | Followers | Removal observed | Before | After | |
---|---|---|---|---|---|---|
17461978 | SHAQ | 15612791 | 2022-02-26T22:24:52Z | SHAQ.ETH | SHAQ.SOL | |
21910850 | jakeowen | 2119904 | 2022-02-26T15:45:18Z | jakeowen.eth | Jake Owen | |
7846 | ijustine | 1811449 | 2022-03-09T14:43:37Z | iJustine.eth | iJustineUltra | |
1666038950 | BoredElonMusk | 1752290 | 2022-02-17T08:05:47Z | bored.eth | Bored | |
381051960 | ethRuby | 1267133 | 2022-03-19T08:08:11Z | CryptoSolis.eth | Ruby | |
1282418324228337665 | wsbmod | 832406 | 2022-02-24T06:52:07Z | wsbmod.eth | wsbmod | |
20882981 | EclecticMethod | 495235 | 2022-02-18T04:39:30Z | eclecticm.eth | Eclectic Method | |
811350 | alexisohanian | 479340 | 2022-02-08T06:31:55Z | AlexisOhanian.eth 7️⃣7️⃣6️⃣ | Alexis Ohanian 7️⃣7️⃣6️⃣ | |
22784458 | Fwiz | 410813 | 2022-03-22T08:54:42Z | Ryan Wyatt - fwiz.eth 💜 | Ryan Wyatt - @ GDC |
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
- Download
setup.sh
and replaceSTEAM_KEY
with your key and update any versions you want. - Run
setup.sh
. - Replace
mods.json
with one provided here. - Create service file by copying file here to
/etc/systemd/system/screeps-world.service
. - Enable and run service (
systemctl enable screeps-world && systemctl start screeps-world
). - Log into the cli (
su screeps && cd ~/world && ./node_modules/screeps/bin/screeps.js cli
). - Reset memory (
system.resetAllData()
) and restart (systemctl restart screeps-world
.
# IMPORTANT! | |
# This gist has been transformed into a github repo | |
# You can find the most recent version there: | |
# https://github.com/Neo23x0/auditd | |
# ___ ___ __ __ | |
# / | __ ______/ (_) /_____/ / | |
# / /| |/ / / / __ / / __/ __ / | |
# / ___ / /_/ / /_/ / / /_/ /_/ / | |
# /_/ |_\__,_/\__,_/_/\__/\__,_/ |
In order of first appearance in The Morning Paper.
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
/*********************************************/ | |
/********** Moved to Screepers repo **********/ | |
/** https://github.com/screepers/RoomVisual **/ | |
/*********************************************/ | |
const colors = { | |
gray: '#555555', | |
light: '#AAAAAA', | |
road: '#666', // >:D | |
energy: '#FFE87B', |
/** | |
* To start using Traveler, require it in main.js: | |
* Example: var Traveler = require('Traveler.js'); | |
* | |
* Check the footer of this file for suggestions on how to access it at various scopes | |
* | |
*/ | |
"use strict"; | |
const REPORT_CPU_THRESHOLD = 50; | |
const DEFAULT_MAXOPS = 20000; |