通常 | |
---|---|
ローマ字(非斜体) | |
イタリック | |
白抜き | |
ウムラウト | |
ギリシャ文字 | |
花文字 | |
筆記体 |
"*": | |
"exception-reporting": | |
userId: "***" | |
"release-notes": | |
viewedVersion: "0.95.0" | |
welcome: | |
showOnStartup: false | |
metrics: | |
userId: "***" | |
editor: |
h = 1 | |
txt = "" | |
["chun","goma"].forEach (name, l)-> | |
[1,2,3,4,5].forEach (dist, i)-> | |
[0, 45, -45, 90].forEach (deg, k)-> | |
["MY","MC","X","YB","CB"].forEach (pos, j)-> | |
txt+=([h++, name, dist, deg, pos].join(",")+",\n") | |
console.log txt |
Scheme 過去◇現在◇未来 前編 | |
bit/April 1996/Vol. 28, No.4 p4~9 | |
Guy L. Steele Jr. | |
訳 井田昌之 | |
---------------------------------------- | |
はじめに ――― 訳者より |
#!/usr/bin/env python | |
# A simple demonstration of using cairo to shape windows. | |
# Natan 'whatah' Zohar | |
import gtk | |
import math | |
class ShapedGUI: | |
def __init__(self): | |
self.window = gtk.Window() | |
self.window.show() # We show here so the window gets a border on it by the WM |
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
原題:Dynamo: Amazon’s Highly Available Key-value Store
原文: Amazon's Dynamo - All Things Distributed (PDF Version)
This article is translated by @ono_matope. Please contact me if any problem.
2017年11月に開催された「サイボウズ バグハンター合宿」への参加を機に、サイボウズの脆弱性報奨金制度に挑戦した。2017年度に認定されたcybozu.com共通管理でのSSRFの詳細をサイボウズと合意の上で開示する。
サイボウズの報奨金制度では、クラウドサービスの本番環境での脆弱性調査が禁止されている。調査希望者には cybozu-dev.com
上で動作する検証環境が提供される。以降の調査は全て検証環境で実施している。
サイボウズが企業向けに提供するOfficeやGaroon、kintoneなどのクラウドサービスは、共通のドメイン cybozu.com
上で動作する。各サービスのアカウントやセキュリティ設定などはサービスごとに管理せず、「cybozu.com共通管理」で一元管理する仕様となっている。利用企業の管理者はcybozu.com共通管理から社員のアカウントを発行し、権限などを設定できる。
- Start Date: 2017-08-17
- RFC: http://rust-lang.github.io/rfcs/2113-dyn-trait-syntax.html
- PR: rust-lang/rfcs#2113
- Issue: rust-lang/rust#44662
// Chrome Canary M74 | |
// chrome://flags で Experimental Web Platform features を有効にすれば使えるようになる | |
// https://developers.google.com/web/updates/2019/01/rtcquictransport-api | |
// https://github.com/shampson/RTCQuicTransport-Origin-Trial-Documentation | |
const iceTransport1 = new RTCIceTransport; | |
const iceTransport2 = new RTCIceTransport; | |
const quicTransport1 = new RTCQuicTransport(iceTransport1); |