Skip to content

Instantly share code, notes, and snippets.

@githubfoam
githubfoam / pentest cheat sheet
Last active March 9, 2025 08:21
pentest cheat sheet
----------------------------------------------------------------------------------------------------
OWASP Top Ten
https://owasp.org/www-project-top-ten/
The CWE Top 25
https://www.sans.org/top25-software-errors/
2022 CWE Top 25 Most Dangerous Software Weaknesses
https://cwe.mitre.org/top25/archive/2022/2022_cwe_top25.html
@voluntas
voluntas / death_march.md
Last active May 1, 2025 20:44
デスマーチが起きる理由 - 3つの指標

デスマーチが起きる理由 - 3つの指標

著者: 青い鴉(ぶるくろ)さん @bluecrow2

これは結城浩さんの運用されていた YukiWiki に当時 Coffee 様 (青い鴉(ぶるくろ)さん)がかかれていた文章です。 ただ 2018 年 3 月 7 日に YukiWiki が運用停止したため消えてしまいました。その記事のバックアップです。

今は 404 ですが、もともとの記事の URL は http://www.hyuki.com/yukiwiki/wiki.cgi?%A5%C7%A5%B9%A5%DE%A1%BC%A5%C1%A4%AC%B5%AF%A4%AD%A4%EB%CD%FD%CD%B3 になります。

昔、自分がとても感銘を受けた文章なので、このまま読めなくなるのはとてももったいないと思い、バックアップとして公開しています。

@FrankSpierings
FrankSpierings / instructions.md
Last active June 15, 2024 09:27
Command line scripts for CTF's

Command line scripts for CTF's

Linux

Improve shell

  • Improve the prompt:
bash -i
@masayokoo
masayokoo / SendSlackWIthPRLabeled.js
Created March 26, 2018 10:49
プルリクエストのラベル変更時にSlack通知するGoogleAppsScriptサンプル
function doPost(e) {
var url = 'https://hooks.slack.com/services/***************'; //slack webhook url
var channel = '***************'; //投稿先チャンネル名
var userName = 'github'; //BOTの名前
var json = e.postData.getDataAsString();
var payload = JSON.parse(json);
if (isSendAction(payload)) {
sendSlack(url, userName, channel, sendText(payload))
}
}
@eatonphil
eatonphil / cl-docker.asd
Last active December 21, 2022 19:49
cl-docker
(defsystem :cl-docker
:depends-on (:cl-ppcre)
:serial t
:components ((:file "package")
(:file "docker")))
@nakagami
nakagami / DjangoCongress2018.rst
Last active June 2, 2023 06:22
DjangoCongressJP 2018 の発表資料(2018-05-19)

データーベースバックエンドを読む、そして書く(Reading database backend, and writing it)

About this document

These are materials for DjangoCongress JP 2018 (May 19, 2018).

;;; bi-grep.el --- elisp grep -*- lexical-binding: t; -*-
;; Copyright (C) 2017, 2018 fubuki
;; Author: fubuki@*****.org
;; Keywords: tools
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
@athos
athos / deps.edn
Last active June 2, 2024 08:57
Try on your terminal `clojure -Sdeps '{:deps {hello-clojure/hello-clojure {:git/url "https://gist.github.com/athos/b68b15b08efedffaf14d8c020b125202" :git/sha "099bdf7d565b2c35c1df601abf58514cc5276237"}}}' -M -m hello-clojure`
{:paths ["."]
:deps {clansi/clansi {:mvn/version "1.0.0"}}}
@voluntas
voluntas / shiguredo_loadtest_tool_oribe_log.rst
Last active April 3, 2023 02:59
時雨堂 シナリオ負荷試験ツール Oribe 開発ログ